-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathstyle.css
46 lines (39 loc) · 923 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
*{
box-sizing: border-box;
margin: 0px;
padding: 0px;
}
html, body{
height: 100%;
}
body{
text-align: center;
background-color: #000000;
overflow-y: hidden;
}
#slice{
display: none;
}
#canvas{
background-color: #000088;
display: none;
}
#cut{
background-color: #000088;
height: 80%;
margin-top: 3%;
image-rendering: optimizeSpeed; /* Older versions of FF */
image-rendering: -moz-crisp-edges; /* FF 6.0+ */
image-rendering: -webkit-optimize-contrast; /* Safari */
image-rendering: -o-crisp-edges; /* OS X & Windows Opera (12.02+) */
image-rendering: pixelated; /* Awesome future-browsers */
-ms-interpolation-mode: nearest-neighbor; /* IE */
}
#stats{
position: absolute;
top: 10px;
left: 10px;
color: #00FF00;
font-family: monospace;
text-align: left;
}