-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmain.css
90 lines (78 loc) · 986 Bytes
/
main.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
body,
html
{
margin: 0;
padding: 0;
}
body
{
width: 700px;
margin: 0 auto;
}
#hypercube-canvas
{
display: block;
margin: 20px auto;
border: 1px solid #CCC;
}
#instructions,
#hypercube-options,
#errata
{
font: italic 14px "Times New Roman",serif;
color: #777;
border-collapse: collapse;
margin: 10px;
padding: 0;
}
#instructions
{
float: left
}
#instructions td
{
margin: 0;
padding: 1px 3px;
}
#instructions td:first-child
{
text-align: right;
border-right: 1px solid #CCC;
}
#instructions .key
{
background-color: #CCC;
border: 1px solid #AAA;
padding: 0 3px;
font-style: normal;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-khtml-border-radius: 5px;
border-radius: 5px;
}
#hypercube-options
{
float: right;
}
#hypercube-options td
{
border: none;
padding: 3px;
margin: 0;
}
#hypercube-options label
{
margin: 0;
padding: 0;
}
#errata
{
padding: 10px;
clear: both;
color: #920;
}
#errata .sig
{
margin-top: 1em;
float: right;
}