-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
90 lines (73 loc) · 1.17 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
body {
margin: 0;
font-family: 'Open Sans', sans-serif;
max-height: 100vh;
background: #2c2b3d;
color: #C2C2C2;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
width: 1083px;
margin: 71px auto 101px;
}
ul {
display: flex;
list-style: none;
gap: 64px;
}
a {
text-decoration: none;
color: white;
}
#page {
display: flex;
justify-content: center;
align-items: flex-start;
gap: 77px;
margin-bottom: 157px;
}
section {
width: 624px;
text-align: center;
font-size: 16px;
line-height: 28px;
}
h1 {
color: white;
font-family: 'JetBrains Mono', sans-serif;
text-align: justify;
font-size: 36px;
line-height: 40px;
margin-top: 15px;
}
span {
color: #00BFA6;
font-weight: bold;
}
.line {
width: 568px;
height: 0;
border: #00BFA6 solid 1px;
margin-bottom: 27px;
}
.line:hover {
border-color: #01ffdd;
}
footer {
font-family: 'JetBrains Mono', sans-serif;
font-weight: medium;
display: flex;
flex-direction: column;
align-items: center;
font-size: 14px;
line-height: 28px;
margin-bottom: 23px;
color: white;
}
#cadeado {
position: fixed;
left: 20px;
bottom: 20px;
}