-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
81 lines (74 loc) · 1.3 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
:root {
--color-main:#3F3D56;
--color-second:#EE24FF;
--color-text:#828282;
--color-border:#ECEFF2;
--font-title: 'Dosis', sans-serif;
--font-text: 'Open Sans', sans-serif;
}
body {
text-align: center;
}
#main {
width: 626px;
margin: 64px auto;
}
h1 {
color: var(--color-main);
font-family: var(--font-title);
font-size: 32px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
h1 span {
color: var(--color-second);
font-weight: bold;
}
p {
margin: 16px auto 32px;
color: var(--color-text);
font-family: var(--font-text);
font-size: 15px;
font-style: normal;
font-weight: 400px;
line-height: 22px;
width: 540px;
}
p span {
font-weight: bold;
}
strong {
color: var(--color-main);
}
#main p + p {
margin-bottom: 64px;
}
.line {
margin: 0 auto 16px;
width: 391px;
border: 1px solid var(--color-border);
}
.footer a + a{
margin-left: 42px;
}
.footer {
margin-bottom: 40px;
}
.footer a {
font-family: var(--font-text);
text-decoration: none;
color: var(--color-main);
font-size: 15px;
font-style: normal;
font-weight: 700;
}
a:hover{
border-bottom: 1px solid var(--color-main);
}
#wave {
position: fixed;
width: 100%;
left: 0;
bottom: 0;
}