-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
70 lines (60 loc) · 1.27 KB
/
index.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
@font-face {
font-family: 'ClaCon2';
src: url('./font/clacon2.ttf')
}
@font-face {
font-family: "Pixelated MS Sans Serif";
src: url("./font/ms_sans_serif.woff") format("woff");
src: url("./font/ms_sans_serif.woff2") format("woff2");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Amazon Ember';
src: url('./font/AmazonEmber_Rg.ttf');
font-style: normal;
}
@font-face {
font-family: 'Amazon Ember';
src: url('./font/AmazonEmber_RgIt.ttf');
font-style: italic;
font-weight: normal;
}
@font-face {
font-family: 'Amazon Ember';
src: url('./font/AmazonEmber_Bd.ttf');
font-style: normal;
font-weight: bold;
}
@font-face {
font-family: 'Amazon Ember';
src: url('./font/AmazonEmber_BdIt.ttf');
font-style: italic;
font-weight: bold;
}
@font-face {
font-family: 'Optimus Princeps';
src: url('./font/OptimusPrinceps.ttf');
font-style: normal;
font-weight: normal;
}
@font-face {
font-family: 'cs_regular';
src: url('./font/cs_regular.ttf');
}
html {
overflow: hidden;
user-select: none;
}
.flex-center-row {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.flex-center-col {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}