-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
73 lines (66 loc) · 1.83 KB
/
Copy pathindex.css
File metadata and controls
73 lines (66 loc) · 1.83 KB
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
*{
padding: 0;
margin: 0;
line-height: 1;
box-sizing: border-box;
}
:root{
--system:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
@font-face {
font-family: 'F1';
src: url('src/fonts/Formula1-Regular.woff2') format('woff2'),
url('src/fonts/Formula1-Regular.woff') format('woff'),
url('src/fonts/Formula1-Regular.ttf') format('ttf');
font-display: swap;
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'F1-Bold';
src: url('src/fonts/Formula1-Bold.woff2') format('woff2'),
url('src/fonts/Formula1-Bold.woff') format('woff'),
url('src/fonts/Formula1-Bold.ttf') format('ttf');
font-display: swap;
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'F1-Wide';
src: url('src/fonts/Formula1-Wide.woff2') format('woff2'),
url('src/fonts/Formula1-Wide.woff') format('woff'),
url('src/fonts/Formula1-Wide.ttf') format('ttf');
font-display: swap;
font-weight: bolder;
font-style: normal;
}
@font-face {
font-family: 'Titillium-web';
src: url('src/fonts/TitilliumWeb-Regular.woff2') format('woff2'),
url('src/fonts/TitilliumWeb-Regular.woff') format('woff'),
url('src/fonts/TitilliumWeb-Regular.ttf') format('ttf');
font-display: swap;
font-weight: normal;
font-style: normal;
}
body{
min-height: 100dvh;
width: 100%;
background-color: #15151e;
font-family: var(--system);
color: #ddd;
position: relative;
display: flex;
flex-direction: column;
-webkit-tap-highlight-color: transparent;
}
#app{
height: 100%;
width: 100%;
flex-grow: 1;
position: relative;
--nav-height:75px;
display: flex;
flex-direction: column;
padding-top: var(--nav-height);
}