-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
38 lines (37 loc) · 859 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
/* Comic Neue in various styles: */
@font-face {
font-family: 'font0';
src: url('fonts/ComicNeue-Angular_Oblique.otf');
font-style: italic;
}
@font-face {
font-family: 'font0';
src: url('fonts/ComicNeue-Angular_Bold.otf');
font-weight: bold;
}
@font-face {
font-family: 'font0';
src: url('fonts/ComicNeue-Angular_Regular.otf');
font-style: normal;
font-weight: normal;
}
/* Canvases and styles for once game has loaded: */
html, body {
margin: 0;
padding: 0;
user-select: none;
cursor: pointer;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-tap-highlight-color: transparent;
background-color: rgb(153, 217, 233); /* Same blue as in clouds background */
width: 100%;
height: 100%;
}
#Main {
position: fixed;
top: 0;
left: 0;
}
canvas {
position: absolute;
}