-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
108 lines (89 loc) · 1.57 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
ul {
list-style: none;
}
:root {
font-size: 62.5%; /* 10px */
}
/* REM = Root EM */
body {
font-family: 'Epilogue', sans-serif;
background: #ECE9FD;
padding: 6.0rem 2.3rem 6.6rem;
font-size: 1.6rem;
}
main {
max-width: 33.0rem;
margin: 0 auto;
}
h1 {
font-weight: 800;
font-size: 4.0rem;
line-height: 4.8rem;
color: #090039;
margin-bottom: 1.5rem;
}
main p:first-child {
color: #7158EF;
letter-spacing: 3px;
text-transform: uppercase;
line-height: 3.2rem;
margin-bottom: 1.7rem;
}
h1 + p {
color: rgba(10, 0, 57, 0.64);
line-height: 3.2rem;
margin-bottom: 3.2rem;
}
a {
color: #090039;
text-decoration: none;
}
a:hover {
font-weight: bold;
}
ul {
margin-top: 7.2rem;
}
ul li {
font-weight: 700;
font-size: 2.4rem;
line-height: 3.2rem;
color: #090039;
max-width: 25.7rem;
display: flex;
gap: 3.8rem;
}
ul li + li {
margin-top: 3.2rem;
}
ul li span {
font-weight: 800;
font-size: 7.2rem;
line-height: 8.0rem;
letter-spacing: -2px;
color: #090039;
}
/* media queries */
@media (min-width: 700px) {
body {
padding: 8rem;
}
main {
max-width: 1020px;
display: flex;
gap: 10rem;
}
main > div {
max-width: 484px;
}
ul li {
gap: 5.3rem;
max-width: 450px;
align-items: center;
}
}