-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
55 lines (47 loc) · 797 Bytes
/
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
:root {
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 24px;
font-weight: 400;
color-scheme: light dark;
color: #eee;
background-color: #0e0e0e;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
display: flex;
place-items: center;
}
#app {
width: 100%;
height: 100vh;
overflow: auto;
margin: 0;
padding: 0;
text-align: center;
}
canvas {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
outline: none;
}
.sec {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
h1 {
font-size: 6vw;
}
h2 {
font-size: 4vw;
}