-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcanvas.css
More file actions
58 lines (46 loc) · 694 Bytes
/
canvas.css
File metadata and controls
58 lines (46 loc) · 694 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
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
body {
margin:0;
padding:0;
}
canvas, #snippet-list .title {
-khtml-user-select:none;
-moz-user-select:none;
}
.centered {
text-align: center;
}
#store-canvas {
border:1px solid silver;
}
#cache-canvas {
border:1px solid black;
}
.console {
font-family: monospace;
}
#snippet-list {
padding: 1em;
}
#snippet-list .title {
font-weight: bold;
background-color: #eef;
color: blue;
}
#snippet-list .title:hover {
text-decoration: underline;
cursor: pointer;
}
#run-button, #animate-button {
font-size: 2em;
}
#instructions {
font-size: 1.5em;
}
.step-num {
font-size: 2em;
font-weight: bold;
}
.step-desc {
font-size: 2em;
font-weight: bold;
}