forked from Enderer/sixteensegment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
106 lines (92 loc) · 1.33 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
body
{
background-color: #101010;
color: #bbb;
font-size: medium;
font-family: Calibri, sans-serif;
margin: 0;
padding: 0;
}
#wrapper
{
width: 60em;
margin: 2em auto;
vertical-align: top;
}
#output
{
width: 60%;
float:left;
}
#container
{
font-size: 95px;
width: 6em;
height: 1.6em;
}
canvas
{
background-color: #000;
}
fieldset
{
-webkit-border-radius: .3em;
-moz-border-radius: .3em;
border-radius: .3em;
margin: 0 0 .6em 0;
padding: .5em 1em;
border: 2px solid #000;
background: #282828;
}
fieldset legend
{
color: #777;
font-style: italic;
}
#controls
{
width: 35%;
display: inline-block;
margin: 0;
float: right;
}
#controls input
{
display: block;
float: left;
width: 9.5em;
margin: .1em 0;
padding: .05em .1em;
color: #444;
font-family: Calibri, sans-serif;
}
#controls input[type=color]
{
width: 5em;
}
#controls input[type=checkbox]
{
width: 1em;
margin-top: .4em;
}
#controls input[type=range] { }
#controls input[type=number]
{
width: 4em;
padding: .1em .2em;
margin: .3em 0;
}
label
{
float: left;
width: 9em;
display: block;
clear: left;
color: #ddd;
}
#code
{
font-family: Consolas, "Courier New", monospace;
font-size: .8em;
color: #888;
}