-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
75 lines (75 loc) · 1.01 KB
/
stylesheet.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
*
{
font-family: 'Courier New';
color: #eeeeee;
}
p
{
margin: 0px;
}
div.noSelect
{
-webkit-user-select: none; /* Chrome all / Safari all */
-moz-user-select: none; /* Firefox all */
-ms-user-select: none; /* IE 10+ */
margin-top: 10px;
margin-left: 10px;
}
div.ui-box
{
margin-bottom: 20px;
padding: 5px;
border: 1px dashed white;
}
div
{
display: inline-block;
vertical-align: top;
}
body
{
background-color: #333333;
}
select
{
background-color: #888888;
color: #
}
input
{
background-color: #888888;
}
input[type = color]
{
margin: 2px;
}
input.preview
{
margin: 3px;
border: 2px solid black;
}
input.preview:hover
{
margin: 3px;
border: 2px solid blue;
}
input.preview-selected
{
margin: 1px;
border: 4px solid blue;
}
button
{
background-color: #555555;
margin: 2px;
}
button.color
{
margin: 2px;
border: 1px solid black;
}
button.color-selected
{
margin: 1px;
border: 2px solid blue;
}