5
5
html , body {
6
6
padding : 0 ;
7
7
margin : 0 ;
8
- width : 100% ; /* Adjusted to 100% */
8
+ width : 100% ;
9
9
height : 100% ;
10
10
}
11
11
12
12
.icon {
13
- -webkit-user-select : none;
14
13
user-select : none;
15
14
display : inline-block;
16
15
}
17
16
18
17
.icon-online {
19
- content : -webkit-image-set ( url (assets/default_100_percent/100-error-online.png) 1x , url (assets/default_200_percent/200-error-online.png) 2x ); /* Updated online icon */
18
+ content : -webkit-image-set (
19
+ url (assets/default_100_percent/100-error-online.png) 1x ,
20
+ url (assets/default_200_percent/200-error-online.png) 2x
21
+ );
20
22
position : relative;
21
23
}
22
24
@@ -28,35 +30,35 @@ html, body {
28
30
29
31
.offline .interstitial-wrapper {
30
32
color : # 6b3b3b ;
31
- font-size : 1.2em ; /* Adjusted font size */
33
+ font-size : 1.2em ;
32
34
line-height : 1.5 ;
33
35
margin : 0 auto;
34
- max-width : 800px ; /* Increased max-width */
35
- padding-top : 100px ; /* Adjusted padding */
36
- width : 90% ; /* Adjusted width */
36
+ max-width : 800px ;
37
+ padding-top : 100px ;
38
+ width : 90% ;
37
39
}
38
40
39
41
.offline .runner-container {
40
- height : 120px ; /* Adjusted height */
42
+ height : 120px ;
41
43
max-width : 800px ;
42
44
overflow : hidden;
43
45
position : absolute;
44
- top : 30px ; /* Adjusted top position */
45
- width : 40px ; /* Adjusted width */
46
+ top : 30px ;
47
+ width : 40px ;
46
48
}
47
49
48
50
.offline .runner-canvas {
49
51
height : 120px ;
50
52
max-width : 800px ;
51
- opacity : 0.9 ; /* Adjusted opacity */
53
+ opacity : 0.9 ;
52
54
overflow : hidden;
53
55
position : absolute;
54
56
top : 0 ;
55
57
z-index : 2 ;
56
58
}
57
59
58
60
.offline .controller {
59
- background : rgba (247 , 247 , 247 , .2 ); /* Adjusted background opacity */
61
+ background : rgba (247 , 247 , 247 , 0 .2 );
60
62
height : 100vh ;
61
63
left : 0 ;
62
64
position : absolute;
@@ -66,21 +68,21 @@ html, body {
66
68
}
67
69
68
70
# offline-resources {
69
- display : block; /* Set to block for visibility */
71
+ display : block;
70
72
}
71
73
72
74
@media (max-width : 480px ) {
73
75
.suggested-left > # control-buttons , .suggested-right > # control-buttons {
74
- float : left; /* Adjusted float property */
76
+ float : left;
75
77
}
78
+
76
79
.snackbar {
77
- position : fixed; /* Adjusted position */
80
+ position : fixed;
78
81
left : 0 ;
79
- bottom : 10px ; /* Adjusted bottom position */
82
+ bottom : 10px ;
80
83
width : 100% ;
81
- border-radius : 5px ; /* Added border-radius */
84
+ border-radius : 5px ;
82
85
}
83
86
}
84
87
85
88
/* Add more media queries and modifications as needed */
86
-
0 commit comments