-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
100 lines (83 loc) · 1.25 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
* {
margin: 0;
box-sizing: border-box;
}
body {
height: 100vh;
font-family: 'Open Sans', sans-serif;
background-color: #2F2E41;
display: flex;
justify-content: center;
align-items: center;
}
.page {
width: 1280px;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 101px;
}
nav ul {
margin: 0;
padding: 0;
list-style: none;
font-family: 'JetBrains Mono', monospace;
display: flex;
gap: 64px;
}
nav ul li a {
text-decoration: none;
font-size: 14px;
line-height: 28px;
}
span,
nav ul li a:hover {
color: #00BFA6;
}
main {
display: flex;
justify-content: space-between;
gap: 82px;
margin-bottom: 157px;
}
h1,
a,
p {
color: #FFFFFF;
}
h1 {
font-family: 'JetBrains Mono', monospace;
font-size: 36px;
text-align: center;
margin-bottom: 59px;
}
section p+p {
margin-top: 40px;
}
section p {
width: 604px;
color: #C2C2C2;
font-size: 16px;
line-height: 28px;
font-weight: 400px;
text-align: center;
}
section p span {
font-weight: 700;
}
footer {
text-align: center;
font-family: 'JetBrains Mono', monospace;
}
.line {
width: 568px;
margin: 0 auto 27px;
border: solid 1px #00BFA6;
}
#lock {
position: fixed;
left: 28px;
bottom: 20px;
}