-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyle.css
112 lines (92 loc) · 1.87 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
@font-face{
font-family:Slussen;
src:url(/fonts/Slussen-Compressed-Black.woff2) format("woff2");
font-display:swap;
font-weight:900;
font-stretch:compressed;
}
@font-face{
font-family:Slussen;
src:url(/fonts/Slussen-Expanded-Black.woff2) format("woff2");
font-display:swap;
font-weight:900;
font-stretch:expanded;
}
@font-face{
font-family:Slussen;
src:url(/fonts/Slussen-Regular.woff2) format("woff2");
font-display:swap;
font-weight:400
}
@font-face{
font-family:Slussen;
src:url(/fonts/Slussen-Bold.woff2) format("woff2");
font-display:swap;
font-weight:700;
}
html {
scroll-behavior: initial;
overflow: hidden;
}
html, body {
width: 100%;
min-height: 100%;
}
body {
font-family: Slussen;
font-size: 16px;
font-weight: 400;
background: #000;
color: #fff;
}
h2 {
font-size: 60px;
font-weight: 900;
line-height: 85%;
border-left: 3px solid #ff98a2;
padding: 25px;
margin: 0
}
h2 span { display: block; }
h3 {font-size: 20px;font-stretch: expanded;color: #ff98a2;line-height: 100%;}
h2,h3,h4 {text-transform: uppercase;}
.container {
width: 95%;
margin: auto;
}
section {padding: 50px 0;}
.col {
width: 50%;
}
#vertical {height: 200vh;width: 100vw;}
.vertical__content {
display: flex;
justify-content: center;
align-items: flex-start;
}
.vertical__content .col_left {height: 100%;}
.vertical__content .col.col_right {
width: 40%;
}
.vertical__item:not(:last-child) {
margin-bottom: 240px;
}
#horizontal {
padding: 100px 0;
}
.horizontal__content {
display: flex;
}
.horizontal__item {
border: 1px solid #efefef;
padding: 200px 150px;
}
.horizontal__item:not(:last-child) {
margin-right: 50px;
}
.horizontal__num {
font-size: 80px;
font-weight: 900;
font-stretch: condensed;
color: #ff98a2;
}