blob: e1d7af59644ed29e9a645e439e47f01c3f979f33 (
plain)
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
|
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background: white;
overflow: hidden;
box-sizing: border-box;
text-rendering: optimizeLegibility;
font-family: 'Roboto', sans-serif;
font-size: 36px;
font-weight: 900;
}
#scene {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
svg {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
|