-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.css
More file actions
83 lines (59 loc) · 918 Bytes
/
layout.css
File metadata and controls
83 lines (59 loc) · 918 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
body {
background-color: rgb(0,0,0);
color: rgb(255,255,255);
}
h1, h2, h3 {
color: rgb(255,150,0);
text-decoration:underline
}
h4 {
color: rgb(140,140,140);
}
table {
margin-left: auto;
margin-right: auto;
}
td {
width: 50%;
}
li {
width: 50%;
margin-left: auto;
margin-right: auto;
text-align: left;
}
#actionsTD {
color: rgb(140,140,140);
font-weight: bold;
text-align: right;
}
#controlsTD {
text-align: left;
padding-left: 10px;
}
#containerDiv {
border: 3px dashed rgba(0, 0, 0, 1);
background-color: rgba(150, 150, 150, 0.3);
width: 75%;
height: 100%;
overflow: auto;
margin-left: auto;
margin-right: auto;
}
#canvasDiv {
width: 100%;
height: inherit;
margin-top: 10px;
text-align: center;
}
#infoDiv {
width: inherit;
height: inherit;
margin-left: auto;
margin-right: auto;
text-align: center;
margin-bottom: 10px;
}
canvas {
display: inline;
}