-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
62 lines (61 loc) · 1.64 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
@font-face {
font-family: 'Azonix';
src: url('fonts/Azonix/AzonixRegular.eot');
src: url('fonts/Azonix/AzonixRegular.eot?#iefix') format('embedded-opentype'),
url('fonts/Azonix/AzonixRegular.woff2') format('woff2'),
url('fonts/Azonix/AzonixRegular.woff') format('woff'),
url('fonts/Azonix/AzonixRegular.ttf') format('truetype'),
url('fonts/Azonix/AzonixRegular.svg#AzonixRegular') format('svg');
font-weight: normal;
font-style: normal;
font-display: auto;
}
@font-face {
font-family: 'voax';
src: url('fonts/voax/voaxRegular.eot');
src: url('fonts/voax/voaxRegular.eot?#iefix') format('embedded-opentype'),
url('fonts/voax/voaxRegular.woff2') format('woff2'),
url('fonts/voax/voaxRegular.woff') format('woff'),
url('fonts/voax/voaxRegular.ttf') format('truetype'),
url('fonts/voax/voaxRegular.svg#voaxRegular') format('svg');
font-weight: normal;
font-style: normal;
font-display: auto;
}
html,
body {
position: relative;
height: 100%;
width: 100%;
margin: 0;
background: #262626;
color: #fec629;
}
.content {
position: absolute;
display: block;
width: calc(100% - 50px);
max-width: 450px;
padding: 25px;
margin: 0;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
}
h1 {
text-align: center;
font-size: 96px;
font-family: 'voax';
font-weight: normal;
font-style: normal;
margin: 0 0 25px;
text-transform: lowercase;
}
h2 {
text-align: center;
font-size: 28px;
font-family: 'Azonix';
font-weight: normal;
font-style: normal;
margin: 0;
}