-
Notifications
You must be signed in to change notification settings - Fork 10
/
dust.css
60 lines (51 loc) · 1.14 KB
/
dust.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
body {
margin: 10px;
padding: 3px;
background: #0C0C18 ;
font-family: monospace;
font-size:normal;
color:#cccccc;
}
/* Display error mesasges in bright red */
#error-display {
color: #ff0000;
}
div[data-formula] {
display: table;
}
a {
color: #3333ee;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.example-label {
vertical-align: center;
}
div[data-formula] canvas {
float: left;
margin-right: 10px;
}
.stop-scrolling {
height: 100%;
overflow: hidden;
}
ocean-display {
transform-origin: 0% 0%;
-ms-transform-origin: 0% 0%;
-webkit-transform-origin: 0% 0%;
-o-transform-origin: 0% 0%;
-moz-transform-origin: 0% 0%;
transform: scale(5, 5);
-ms-transform: scale(5, 5);
-webkit-transform: scale(5, 5);
-o-transform: scale(5, 5);
-moz-transform: scale(5, 5);
image-rendering: crisp-edges;
image-rendering: -moz-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering:-webkit-pixelated;
image-rendering: optimize-contrast;
-ms-interpolation-mode: nearest-neighbor;
}