-
Notifications
You must be signed in to change notification settings - Fork 0
/
conlecterm.css
215 lines (177 loc) · 4.11 KB
/
conlecterm.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/*
** conlecterm.css
*/
@import url("tabs.css");
/* widget CSS */
#conlecterm header {
outline-width: 0px;
margin: 0px;
padding: 0px;
min-width: 0px;
min-height: 0px;
border-width: 0px;
border-style: none;
border-color: red;
font-family: "Droid Sans", "Noto Sans", sans-serif;
}
/* controls the minimum size/border of the tab */
#conlecterm header tab > box,
#conlecterm header tab > label,
#conlecterm header tab > widget > box {
outline-width: 0px;
padding: 1px;
margin: 0px;
min-width: 100px;
min-height: 20px;
border-width: 0px 0px 1px 0px;
border-style: solid;
border-color: grey20;
/*transition: border-color .2s linear;*/
}
/* controls button padding and table border */
#conlecterm button {
margin: 0px;
padding: 0px;
border-width: 1px;
border-style: solid;
border-color: grey60;
font-family: "Droid Sans", "Noto Sans", sans-serif;
}
/* background when insufficient tabs to fill bar */
#conlecterm header > tabs {
outline-width: 0px;
margin: 0px;
padding: 0px;
border-width: 0px;
border-style: none;
border-color: red;
background-image: none;
background-color: wheat3;
}
/* arrow background */
#conlecterm header > tabs > arrow,
#conlecterm header > tabs > arrow:disabled,
#conlecterm header > tabs > arrow:focus {
outline-width: 0px;
margin: 0px;
padding: 0px;
min-height: 14px;
border-width: 0px;
border-style: none;
border-color: red;
background-color: grey60;
color: black;
}
#conlecterm header > tabs > arrow:active {
background-color: grey80;
color: black;
}
#conlecterm header > tabs > arrow:hover,
#conlecterm header > tabs > arrow:active:hover {
background-color: grey90;
color: black;
}
/* fixed position tabs */
#conlecterm header > tabs > tab {
outline-width: 0px;
min-height: 0px;
margin: 0px;
padding: 0px;
font-size: 13pt;
font-weight: bold;
color: darkblue;
background-color: LightSteelBlue2;
}
#conlecterm header > tabs > tab:hover {
background-color: pink;
}
#conlecterm header > tabs > tab:checked {
background-color: peachpuff;
}
#conlecterm header > tabs > tab:checked:hover {
background-color: hotpink;
}
/* moveable tabs */
#conlecterm header > tabs > tab.reorderable-page {
color: black;
background-color: LightSteelBlue;
}
#conlecterm header > tabs > tab.reorderable-page:hover {
background-color: pink;
}
#conlecterm header > tabs > tab.reorderable-page:checked {
background-color: plum;
}
#conlecterm header > tabs > tab.reorderable-page:checked:hover {
background-color: hotpink;
}
#conlecterm header > tabs > tab label.running {
font-weight: bold;
font-style: italic;
font-size: 13pt;
text-decoration: underline wavy;
background: rgba(255,240,255,0.3);
}
/* buttons for Start and Remove Tab */
#conlecterm stack > box {
background-image: none;
background-color: mistyrose;
}
#conlecterm stack .start_button {
background-color: darkgreen;
font-size: 90pt;
font-weight: bold;
color: darkseagreen;
border-color: black;
}
#conlecterm button:hover .start_button {
color: lightgreen;
background-color: green4;
border-color: black;
}
#conlecterm button:hover:active .start_button {
color: darkgreen;
background-color: green3;
border-color: black;
}
#conlecterm stack .remove_tab_button {
background-color: darkred;
font-size: 24pt;
font-weight: bold;
color: gray30;
border-width: 0px;
border-color: black;
}
#conlecterm button:hover .remove_tab_button {
color: gray60;
background-color: red3;
border-color: black;
}
#conlecterm button:hover:active .remove_tab_button {
color: black;
background-color: red;
border-color: black;
}
/* all items in the +NEW page */
#conlecterm stack {
background-image: none;
background-color: LightYellow3;
}
#conlecterm .item_button {
font-size: 18pt;
font-weight: bold;
background-color: LightYellow3;
border-style: none;
border-color: red;
border-width: 0px;
}
#conlecterm button:hover .item_button {
text-decoration: underline wavy;
background-color: MistyRose;
color: black;
border-color: black;
}
#conlecterm button:hover:active .item_button {
background-color: steelblue;
border-color: black;
}