-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
77 lines (65 loc) · 1.14 KB
/
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
@import url('https://fonts.googleapis.com/css?family=Press+Start+2P');
html {
background-color: #000;
color: #ccc;
font-family: 'Press Start 2P', cursive;
}
.page {
margin: 1em auto;
text-align: center;
max-width: 512px;
}
aside {
clear: both;
text-align: left;
padding: .4em;
}
h1, h2 {
color: #29adff;
}
a {
color: inherit;
}
#canvasContainer {
background-color: #000;
width: 100%;
}
canvas#canvas {
display: block;
margin: 0 auto;
width: 100%;
max-width: 100vmin;
}
.pico8_el {
float: left;
width:17%;
display:inline-block;
margin: 1px;
padding: 8px 4px;
text-align: center;
color:#fff;
background-color:#777;
font-family : verdana;
font-size: 9pt;
cursor: pointer;
cursor: hand;
}
.pico8_el a{
text-decoration: none;
color:#fff;
}
.pico8_el:hover{
background-color:#aaa;
}
.pico8_el:link{
background-color:#aaa;
}
canvas{
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: pixelated;
-ms-interpolation-mode: nearest-neighbor;
border: 0px
}