- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
Latest commit
31 lines (27 loc) · 659 Bytes
/
Copy pathindex.css
File metadata and controls
31 lines (27 loc) · 659 Bytes
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
* {
margin:0;
padding:0;
box-sizing: border-box;
}
html,body {
width:100%;
height:100%;
overflow: hidden; /* Prevent scrollbars */
}
canvas {
display: block; /* Remove any inline spacing */
}
/* Loading Pixelify Sans Bold font */
@font-face {
font-family:'Pixelify Sans Bold';
src:url('assets/fonts/PixelifySans-Bold.ttf') format('truetype');
font-weight: bold;
font-style: normal;
}
/* Loading Pixelify Sans Regular font */
@font-face {
font-family:'Pixelify Sans Regular';
src:url('assets/fonts/PixelifySans-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}