forked from nmeyering/voronoi-faces
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (77 loc) · 907 Bytes
/
style.css
File metadata and controls
89 lines (77 loc) · 907 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
84
85
86
87
88
89
html, body
{
height: 100%;
}
body
{
padding: 0;
margin: 0;
background-color: #444;
font-family: "serif";
}
#content
{
margin-left: auto;
margin-right: auto;
height: 100%;
width: 100%;
}
#content > *
{
display: inline-block;
vertical-align: top;
box-shadow: 5px 5px 25px #222;
}
#canvas
{
border: 0px;
margin: 1em;
}
#picture
{
display: none;
}
#settings
{
float: left;
overflow-y: auto;
height: 100%;
max-width: 40em;
background-color: #222;
font-size: 12pt;
color: #aaa;
border-radius: 5px;
}
#settings > *
{
margin-left: 1em;
}
#settings > ol > li
{
margin: 1em;
}
.divider
{
margin-left: 1em;
margin-right: 1em;
background: #fff;
height: 0px;
border: 3px solid #ccc;
border-radius: 5px;
}
.help
{
border-radius: 5px;
margin-left: 1em;
margin-right: 1em;
}
.error
{
color: #fff;
background-color: #f00;
}
.info
{
color: #000;
background-color: #82ff82;
}