-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
98 lines (98 loc) · 1.31 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
*
{
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
{
border: 1px solid grey;
border-radius: 3px;
margin: 10px;
padding: 5px;
background-color: #444444;
}
div.ui-block
{
margin: 10px;
}
div
{
display: inline-block;
vertical-align: top;
}
body
{
background-color: #222222;
}
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;
}
table
{
table-layout: fixed;
width: 100%;
}
td
{
border: 1px solid #999999;
border-radius: 3px;
background-color: #333333;
}
td.title
{
font-weight: bold;
text-align: center;
font-size: 1vw;
}