-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
120 lines (93 loc) · 1.84 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
109
110
111
112
113
114
115
116
117
118
119
120
body {
margin: 0px;
background: #2C2B3D;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
line-height: 28px;
font-weight: normal;
color: #C2C2C2C2;
min-height: 100vh;
}
.page {
width: 1092px;
margin: 0px auto;
padding-top: 71px;
}
nav{
width: 1083px;
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 101px;
font-family: 'JetBrains Mono', monospace;
font-weight: 500;
font-size: 14px;
line-height: 28px;
}
ul{
display: flex;
list-style: none;
gap: 64px;
align-items: center;
margin: 0px;
}
ul li a{
color: #fff;
text-decoration: none;
}
h1{
font-family: 'JetBrains Mono', monospace;
font-size: 36px;
line-height: 40px;
width: 614px;
font-weight: bold;
color: #ffffff;
margin-bottom: 59px;
}
h1 span {
color: #00bfa6;
}
p {
text-align: center;
width: 604px;
}
p span {
color: #00bfa6;
font-weight: bold;
}
main {
display: flex;
align-items: center;
justify-content: space-between;
width: 1092px;
margin-bottom: 157px;
}
footer{
font-family: 'JetBrains Mono', monospace;
font-size: 14px;
line-height: 28px;
font-weight: 500;
color: #ffffff;
position: fixed;
bottom: 23px;
left: 0;
right: 0;
margin: auto;
text-align: center;
border-top: 1px solid #00BFA6;
width: 568px;
padding-top: 27px;
}
footer a{
font-family: 'JetBrains Mono', monospace;
font-size: 14px;
line-height: 28px;
font-weight: 500;
color: #ffffff;
text-decoration: none;
}
#padlock {
position: fixed;
bottom: 23px;
left: 23px;
}