@@ -176,7 +176,7 @@ body.classic .top-menu > .menu-options > .score-wrap-box > .space {
176
176
}
177
177
178
178
body .classic .top-menu > .menu-options > .commands {
179
- margin-top : 40 px ;
179
+ margin-top : 20 px ;
180
180
}
181
181
182
182
body .classic .top-menu > .title {
@@ -203,11 +203,54 @@ body.classic button.close:hover > svg {
203
203
}
204
204
205
205
body .classic button .button {
206
- background-color : rgba (0 , 0 , 0 , 0 );
206
+ background-color : yellow;
207
+ border : 2px solid black;
208
+ border-bottom : none;
209
+ border-radius : 0 ;
210
+ }
211
+
212
+ body .classic button .button : last-child {
213
+ border-bottom : 2px solid black;
214
+ }
215
+
216
+ body .classic button .button > * {
217
+ color : black;
207
218
}
208
219
209
220
body .classic button .button : hover {
210
- color : var (--hovered-color );
221
+ background-color : rgb (171 , 171 , 0 );
222
+ color : white;
223
+ }
224
+
225
+ /* Specific Buttons */
226
+
227
+ body .classic button .button .share-button ,
228
+ body .classic button .button .clipboard-button {
229
+ padding : 0.5em 0.5em 0.5em 0.5em ;
230
+ margin : 0.5em 0em 0.5em 0em ;
231
+ background-color : var (--green );
232
+ border : 2px solid black;
233
+ }
234
+
235
+ body .classic button .button .share-button > * ,
236
+ body .classic button .button .clipboard-button > * {
237
+ color : black;
238
+ font-weight : bold;
239
+ }
240
+
241
+ body .classic button .button .share-button : hover ,
242
+ body .classic button .button .clipboard-button : hover {
243
+ background-color : rgb (0 , 82 , 0 );
244
+ }
245
+
246
+ body .classic button .button .new-game {
247
+ padding : 1em 0.5em 1em 0.5em ;
248
+ margin : 0.5em 0em 0.5em 0em ;
249
+ }
250
+
251
+ body .classic button .button .new-game > * {
252
+ color : black;
253
+ font-weight : bold;
211
254
}
212
255
213
256
/* NTS: Hover color still appears and won't go away after tapping elsewhere on iOS.
@@ -290,3 +333,23 @@ body.classic .dialog.game-over {
290
333
body .classic .dialog .win {
291
334
background-color : lime;
292
335
}
336
+
337
+ /* Settings Knob Modifications for Classic theme */
338
+
339
+ body .classic .knob {
340
+ position : relative;
341
+
342
+ width : 32px ;
343
+ height : 32px ;
344
+ border-radius : 0 ;
345
+
346
+ background-image : url ("/images/Checkbox_unchecked.png" );
347
+ }
348
+
349
+ body .classic .knob .enabled {
350
+ background-image : url ("/images/Checkbox_checked.png" );
351
+ }
352
+
353
+ body .classic .knob > .knob-inside {
354
+ display : none;
355
+ }
0 commit comments