-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontrol.css
More file actions
136 lines (120 loc) · 2.16 KB
/
control.css
File metadata and controls
136 lines (120 loc) · 2.16 KB
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
body {
margin: 0;
width: 100vw;
font-size: 0;
}
.control-holder {
width: 33.3333vw;
height: 100vh;
display: inline-block;
position: absolute;
font-size: 16px;
font-family: "Courier New";
}
.control-holder > h1 {
font-size: 2em;
margin-left: 1.1em;
}
#command-queue-live {
background-color: #FFDDCC;
}
#command-queue-staging {
background-color: #FFEECC;
margin-left: 33.3333vw;
}
#command-palette {
background-color: #FFFFCC;
margin-left: 66.6666vw;
}
.queue-holder {
font-size: 0.8em;
}
#queue {
list-style-type: none;
}
#queue .section {
font-size: 1.2em;
font-weight: bold;
color: #000;
display: inline-block;
min-width: 150px;
}
#queue .name {
font-size: 1.1em;
color: #222;
display: inline-block;
min-width: 125px;
}
#queue i,
#queue b {
color: #444;
}
#all-resume {
position: absolute;
bottom: 20px;
right: 130px;
background-color: green;
border-radius: 6px;
border: darkgreen 1px solid;
width: 90px;
height: 40px;
line-height: 40px;
text-align: center;
font-weight: bold;
font-size: 1.3em;
}
#all-resume:hover {
background-color: lightgreen;
cursor: pointer;
}
#all-stop {
position: absolute;
bottom: 20px;
right: 20px;
background-color: red;
border-radius: 6px;
border: darkred 1px solid;
width: 90px;
height: 40px;
line-height: 40px;
text-align: center;
font-weight: bold;
font-size: 1.3em;
}
#all-stop:hover {
background-color: lightcoral;
cursor: pointer;
}
/* Tab System */
.tab {
overflow: hidden;
/*border: 1px solid #ccc;*/
background-color: #e6ffcc;
}
.tab button {
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
transition: 0.3s;
font-size: 1.2em;
}
button::-moz-focus-inner {
border: 0;
}
.tab button:hover {
background-color: #daffb3;
}
.tab button.active {
background-color: #cdff99;
}
.tabcontent {
display: none;
padding: 6px 12px;
overflow-y:scroll;
height: 83vh;
/*border: 1px solid #ccc;
border-top: none;*/
}