-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (75 loc) · 1.38 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');
body {
font-family: 'Poppins', sans-serif;
font-size: 1.2rem;
font-weight: 400;
}
.container{
margin-top: 5%;
text-align: center;
}
.heading{
font-size: 30px;
font-weight: 200;
}
.subheading{
font-size: 30px;
font-weight: 600;
}
.tagline{
font-size: 14px;
font-weight: 200;
}
/* cards */
.cards {
display: flex;
margin-left: 10%;
margin-right: 10%;
}
.card-text {
width: 75%;
color: hsl(229, 6%, 66%);
}
.card1{
flex-direction: column;
justify-content: center;
}
.card-body1{
border-top: 3px solid hsl(0, 78%, 62%);
padding: 8%;
border-radius: 2%;
background-color: whitesmoke;
margin-right: 10%;
}
.card-body2{
border-top: 3px solid hsl(180,62%,55%);
padding: 8%;
border-radius: 2%;
background-color: whitesmoke;
margin-right: 10%;
}
.card-body3{
border-top: 3px solid hsl(34, 97%, 64%);
padding: 8%;
border-radius: 2%;
background-color: whitesmoke;
margin-right: 10%;
}
.card-body4{
border-top: 3px solid hsl(212, 86%, 64%);
padding: 8%;
border-radius: 2%;
background-color: whitesmoke;
margin-right: 10%;
}
@media (max-width: 375px) {
body{
padding: 5%;
}
.cards1{
flex-direction: column;
}
.card-text{
width: 100%;
}
}