-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcontrol.css
120 lines (103 loc) · 1.8 KB
/
control.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
111
112
113
114
115
116
117
118
119
120
body {
padding:8px;
background-color: #3a393a;
font-family: sans-serif;
font-size: 9pt;
color: #e1e0e1;
}
.controls-container {
display: flex;
flex-flow: row wrap;
}
.floating {
padding: 4px;
margin: 2px
}
.control-group {
display: inline-block;
min-width: 148px;
max-width: 300px;
float: left;
}
button {
font-size: 9pt;
border: none;
background-color: #4c4c4c;
color: #e1e0e1;
padding: 4px 12px;
font-family: sans-serif;
border-radius: 4px;
margin: 2px auto;
display: inline-block;
width: 100%;
}
input[type="number"] {
border: none;
background-color: #1f1e1f;
color: #e1e0e1;
padding: 4px;;
font-family: sans-serif;
font-size: 9pt;
border-radius: 4px;
margin: 2px auto;
}
input[type="checkbox"] {
display: table-cell;
color: #e1e0e1;
font-family: sans-serif;
font-size: 9pt;
}
select {
border: none;
background-color: #4c4c4c;
color: #e1e0e1;
padding: 4px;;
font-family: sans-serif;
font-size: 9pt;
border-radius: 4px;
margin: 2px auto;
}
.custom-width * {
display: inline-block;
}
.custom-width button {
width: 67%;
}
.custom-width button + input {
width: 28%;
}
button:hover:not(.active-button) {
background-color: #7a797a;
}
select:hover {
background-color: #585758;
}
button:active, select:indeterminate, .active-button {
background-color: #1f1e1f;
}
.controls-container {
float:left;
}
#slide-text b {
color: #DCEDC8;
}
h1 {
font-size: 14pt;
margin: 0 0 4px 0;
}
legend {
cursor: pointer;
}
legend:before {
content: '\2796'; /* minus sign */
}
.active-collapsible:before {
content: '\2795'; /* plus sign */
}
hr {
width: 100%;
display: block;
}
label.disabled {
color: #7a797a;
}