-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (70 loc) · 1.12 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
body {
background: #444;
color: #ddd;
font-family: 'Droid Sans', 'Roboto', 'Open Sans', sans-serif;
font-weight: 500;
}
.functional-unit {
margin: 1em;
border: 1px solid #222;
border-radius: 1em;
padding: 1em;
overflow: hidden;
display: inline-table;
border-spacing: 0 1em;
}
.control {
display: table-row;
margin: 1em 0;
}
.control>* {
display: table-cell;
vertical-align: top;
text-align: left;
}
.control>label:first-child {
flex: 0 0 250px;
font-weight: bold;
border-top: 1px solid #666;
border-bottom: 1px solid #666;
border-left: 1px solid #666;
padding: 0.25em;
padding-right: 1em;
}
input, select {
background: #666;
color: white;
border: 1px solid #222;
border-top-right-radius: 0.5em;
border-bottom-right-radius: 0.5em;
padding: 0.5em;
}
input[disabled] {
font-style: italic;
}
.screen {
position: relative;
}
.screen>.corner-ne {
position: absolute;
right: 0;
top: 0;
}
.screen>.corner-se {
position: absolute;
right: 0;
bottom: 0;
}
.screen>.corner-nw {
position: absolute;
left: 0;
top: 0;
}
.screen>.corner-sw {
position: absolute;
left: 0;
bottom: 0;
}
canvas {
border: 1px solid #222;
}