-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
executable file
·169 lines (169 loc) · 3.14 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
@font-face {
font-family: 'Roboto';
font-weight: 300;
src: local('Roboto Light'), local('Roboto-Light'), url(font/Roboto-Light.woff2) format('woff2'), url(font/Roboto-Light.ttf) format('truetype');
unicode-range: U+0030—003A;
}
@font-face {
font-family: 'Roboto';
font-weight: 100;
src: local('Roboto Thin'), local('Roboto-Thin'), url(font/Roboto-Thin.woff2) format('woff2'), url(font/Roboto-Thin.ttf) format('truetype');
unicode-range: U+0030—003A;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Roboto', 'Open Sans', sans-serif;
-moz-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-weight: 300;
color: #333;
background: #444;
overflow-x: hidden;
}
a {
color: inherit;
}
a:hover {
text-decoration: none;
}
.button {
display: inline-block;
color: white;
border: none;
padding: 10px 15px;
font-size: 1.1em;
text-decoration: none;
border-radius: 4px;
background: #295cb3;
}
article .button,
header.small .button {
margin-top: 20px;
float: right;
}
header {
width: 100vw;
height: 60vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
color: white;
}
h2 {
font-size: 4em;
font-weight: 200;
}
h3 {
font-size: 1.1em;
font-weight: 300;
margin-bottom: 20px;
}
.video-ext-container {
height: 0;
position: relative;
z-index: -10;
}
.video-container {
top: -50%;
left: -50%;
width: 200vw;
height: 200vh;
overflow: hidden;
}
video {
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
min-width: 50%;
min-height: 50%;
position: relative;
filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
-webkit-filter: blur(10px);
filter: blur(10px);
}
header.small {
text-align: left;
position: fixed;
display: block;
height: 20vh;
padding: 15px 50px;
top: 0;
vertical-align: center;
z-index: 10;
background: #f7f7f7;
color: #333;
}
header.small > * {
display: inline-block;
vertical-align: middle;
margin: 5px;
transition: .4s;
}
header.small img {
height: 4em;
}
header.small h2 {
font-size: 2em;
}
header.small h3 {
font-size: 0;
}
header.small table {
height: 6em;
}
header.small div {
margin-top: 20px;
}
article {
padding: 2vh 5vw;
line-height: 1.25;
z-index: 0;
background: #f7f7f7;
}
section {
padding: 20px 0;
}
h4 {
font-size: 1.5em;
margin-bottom: 5px;
max-width: 75vw;
}
footer {
padding: 50px;
background: #f7f7f7;
}
@media (max-width: 600px) {
.video-ext-container,
.video-container,
video {
display: none;
}
body {
background: #f7f7f7;
}
header {
height: auto;
color: #333;
}
header img {
display: none;
}
h2 {
font-size: 3em;
margin: 20px 0;
}
h3 {
display: none;
}
p {
line-height: 1.5;
}
}