-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
89 lines (76 loc) · 1.19 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
body {
margin: 0;
font-family: "JetBrains Mono", monospace;
background: #2f2e41;
min-height: 100vh;
}
p {
color: #c2c2c2;
font-family: "Open Sans", sans-serif;
font-size: 16px;
line-height: 28px;
text-align: center;
margin-top: 59px;
}
h1 {
color: #fff;
font-size: 36px;
line-height: 40px;
text-align: center;
}
.page {
width: 1092px;
margin: 0 auto;
padding-top: 71px;
}
span {
color: #00bfa6;
font-weight: bold;
}
nav {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 101px;
}
ul {
display: flex;
padding: 0;
margin: 0;
gap: 64px;
}
nav ul li {
list-style: none;
align-items: center;
}
a {
color: #fff;
text-decoration: none;
opacity: 1;
}
a:hover {
opacity: 0.5;
}
main {
display: flex;
align-items: center;
justify-content: space-between;
}
footer {
color: #fff;
font-size: 14px;
line-height: 28px;
margin: 157px 0 23px;
text-align: center;
}
.line {
width: 568px;
height: 0;
margin: 0 auto 27px;
border: solid 1px #00bfa6;
}
#padlock {
position: fixed;
left: 20px;
bottom: 20px;
}