-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.css
110 lines (110 loc) · 3.3 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
107
108
109
110
#maincanvas {
cursor:crosshair;
}
body {
-webkit-user-select: none; /* webkit (safari, chrome) browsers */
-moz-user-select: none; /* mozilla browsers */
-khtml-user-select: none; /* webkit (konqueror) browsers */
-ms-user-select: none; /* IE10+ */
}
select {
background-color:black;
color:white;
text-indent:5px;
}
canvas {
position:relative;
}
body {
background-color:black;
color: gray;
margin-top: 0;
padding-top: 0;
border-top: 0;
}
ul {
list-style-type: none;
overflow:hidden; overflow-y:scroll;
}
input {
background-color: black;
color:white;
text-align: center;
font-size: 100%;
}
input#linkInput {
background-color: black;
color:white;
text-align: center;
font-size: 100%;
}
input#winText {
width:90%;
}
li {
font-size: 150%;
text-align: center;
width:100%;
}
a {
color:white;
}
a.layerItem{
color: white;
background-color: black;
text-decoration: none;
width:100%;
display:block;
}
a.layerItem.selectedItem{
color: black;
background-color: white;
}
img.selected {
border: 2px solid red;
}
li.selected {
cursor:auto;
color:white;
}
a{
white-space:nowrap;
}
div.selected {
height:16px;
width:30px;
border: 2px solid red;
}
div.unselected {
height:16px;
width:30px;
border: 2px solid black;
}
span.selected {
height:16px;
width:30px;
border: 2px solid red;
}
span.unselected {
height:16px;
width:30px;
border: 2px solid black;
}
img.radius {
border: 1px solid black;
}
img.selected {
border: 1px solid red;
}
select {
width:100%;
-webkit-appearance: none;
-moz-appearance: none;
}
select::-ms-expand {
display: none;
}
canvas#dropdownthumb {
border:2px solid gray;
background-color:black;
}