7
7
line-height : 1.5 ;
8
8
width : 550px ;
9
9
height : 600px ;
10
+ display : flex;
11
+ flex-direction : column;
10
12
}
11
13
body # popup {
12
14
padding : 5px ;
@@ -56,11 +58,12 @@ button img {
56
58
height : 30px ;
57
59
width : 30px ;
58
60
filter : none;
59
- margin : 0 ;
60
- }
61
- # button-container button img {
62
- object-fit : contain !important ;
61
+ margin : 0 ;
62
+ padding : 0 ;
63
+ object-fit : contain !important ;
64
+ object-position : center;
63
65
}
66
+
64
67
button .ok {
65
68
background-color : # 0A84FF ;
66
69
color : # FFFFFF ;
@@ -232,6 +235,13 @@ button.ok:hover {
232
235
margin-bottom : 3px ;
233
236
border-bottom : 1px solid # D7D7DB
234
237
}
238
+
239
+ # tabContent {
240
+ flex-grow : 1 ;
241
+ display : flex;
242
+ flex-direction : column;
243
+ }
244
+
235
245
.tabLink {
236
246
padding : 3px auto;
237
247
background-color : # f1f1f1 ;
@@ -258,6 +268,55 @@ img#logo {
258
268
filter : none
259
269
}
260
270
271
+ .about-logo {
272
+ display : block;
273
+ margin : 20px auto;
274
+ width : 128px ;
275
+ height : 128px ;
276
+ }
277
+
278
+ # aboutContent {
279
+ margin : 100px auto;
280
+ display : flex;
281
+ flex-direction : column;
282
+ justify-content : center;
283
+ align-items : center;
284
+ height : 330px ;
285
+ width : 330px ;
286
+ text-align : center;
287
+ border : 1px solid # aaa ;
288
+ border-radius : 16px ;
289
+ background : linear-gradient (45deg , # f0f0f0, # e0e0e0 );
290
+ background-size : 400% 400% ;
291
+ animation : gradientAnimation 10s ease infinite;
292
+ }
293
+
294
+ # aboutContent h2 , # aboutContent h3 {
295
+ margin : 10px 0 ;
296
+ }
297
+
298
+ # aboutContent a {
299
+ color : # 0A84FF ;
300
+ text-decoration : none;
301
+ }
302
+
303
+ # aboutContent a : hover {
304
+ text-decoration : underline;
305
+ }
306
+
307
+ @keyframes gradientAnimation {
308
+ 0% {
309
+ background-position : 0% 50% ;
310
+ }
311
+ 50% {
312
+ background-position : 100% 50% ;
313
+ }
314
+ 100% {
315
+ background-position : 0% 50% ;
316
+ }
317
+ }
318
+
319
+
261
320
@media (prefers-color-scheme : dark) {
262
321
body {
263
322
background-color : # 1C1C1E ;
@@ -328,5 +387,20 @@ img#logo {
328
387
button img {
329
388
filter : invert (100% );
330
389
}
390
+ # aboutContent a {
391
+ color : # 007AFF ;
392
+ }
393
+
394
+ # options-form label {
395
+ display : block;
396
+ margin-bottom : 8px ;
397
+ color : # F2F2F7 ;
398
+ font-size : 13px ;
399
+ font-weight : bold;
400
+ }
401
+ # aboutContent {
402
+ background : linear-gradient (45deg , # 2c2c2e, # 1c1c1e );
403
+ border : 1px solid # 333 ;
404
+ }
331
405
332
406
}
0 commit comments