-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
117 lines (99 loc) · 1.34 KB
/
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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
html, body {
background: black;
margin: 0;
padding: 0;
font-family: "Arial", sans-serif;
color: white;
}
#canvas {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
#input, #input li {
list-style: 0;
margin: 0;
}
#bottom_container {
position: fixed;
left: 0;
right: 330px;
bottom: 0;
text-align: center;
}
#input {
margin: auto;
padding: 0 0 10px 0;
display: inline-block;
}
#input li {
display: inline-block;
padding: 10px;
font-size: 180%;
}
#input .done {
color: #666;
}
/*#title {
margin: 0;
padding: 0;
position: fixed;
top: 20px;
left: 0;
right: 0;
text-align: center;
font-size: 150%;
display: block;
}*/
aside {
position: fixed;
top: 0;
right: 0;
bottom: 0;
padding: 0;
margin: 0;
width: 330px;
background: #111;
}
aside h1, aside h2 {
margin: 10px 0 10px 15px;
}
dl dt, dl dd {
display: inline-block;
}
dl dt {
padding: 5px 5px 5px 15px;
}
dl dd {
margin: 0 0 0 10px;
}
table {
width: 90%;
margin: 5px 5px 5px 15px;
}
table, table tr, table td, table th {
border: 1px solid #666;
}
table td {
text-align: center;
}
input[type=text] {
background: #333;
border: 1px solid #666;
color: white;
padding: 4px 10px;
margin: 2px;
border-radius: 5px;
}
.input_state input {
max-width: 30px;
}
#error {
background: #e00;
padding: 10px;
}
aside > button, aside > i {
margin: 5px 5px 5px 15px;
}