File tree Expand file tree Collapse file tree 2 files changed +44
-5
lines changed Expand file tree Collapse file tree 2 files changed +44
-5
lines changed Original file line number Diff line number Diff line change 351
351
font-size : 1.1rem ;
352
352
transition : all 0.3s ease;
353
353
box-shadow : 0 4px 15px rgba (0 , 0 , 0 , 0.1 );
354
+ border : 2px solid var (--ifm-color-primary );
354
355
}
355
356
356
357
.actionButton : hover {
359
360
text-decoration : none;
360
361
transform : translateY (-3px );
361
362
box-shadow : 0 8px 25px rgba (0 , 0 , 0 , 0.2 );
363
+ border-color : var (--ifm-color-primary-dark );
364
+ }
365
+
366
+ /* Dark mode enhancement */
367
+ [data-theme = 'dark' ] .actionButton {
368
+ background : var (--ifm-color-primary );
369
+ color : var (--ifm-color-gray-100 );
370
+ border : 2px solid var (--ifm-color-primary-light );
371
+ box-shadow : 0 4px 15px rgba (0 , 0 , 0 , 0.3 );
372
+ }
373
+
374
+ [data-theme = 'dark' ] .actionButton : hover {
375
+ background : var (--ifm-color-primary-light );
376
+ color : white;
377
+ border-color : var (--ifm-color-primary-lighter );
378
+ box-shadow : 0 8px 25px rgba (0 , 0 , 0 , 0.4 );
362
379
}
363
380
364
381
/* Responsive Design */
Original file line number Diff line number Diff line change 316
316
}
317
317
318
318
.actionButton {
319
- display : inline-block;
319
+ display : inline-flex;
320
+ align-items : center;
321
+ gap : 0.75rem ;
322
+ padding : 1rem 2rem ;
320
323
background : var (--ifm-color-primary );
321
324
color : white;
322
- padding : 0.75rem 1.5rem ;
323
- border-radius : 8px ;
324
325
text-decoration : none;
325
- font-weight : 600 ;
326
+ border-radius : 12px ;
327
+ font-weight : 700 ;
328
+ font-size : 1.1rem ;
326
329
transition : all 0.3s ease;
330
+ box-shadow : 0 4px 15px rgba (0 , 0 , 0 , 0.1 );
331
+ border : 2px solid var (--ifm-color-primary );
327
332
}
328
333
329
334
.actionButton : hover {
330
335
background : var (--ifm-color-primary-dark );
331
336
color : white;
332
337
text-decoration : none;
333
- transform : translateY (-2px );
338
+ transform : translateY (-3px );
339
+ box-shadow : 0 8px 25px rgba (0 , 0 , 0 , 0.2 );
340
+ border-color : var (--ifm-color-primary-dark );
341
+ }
342
+
343
+ /* Dark mode enhancement */
344
+ [data-theme = 'dark' ] .actionButton {
345
+ background : var (--ifm-color-primary );
346
+ color : var (--ifm-color-gray-100 );
347
+ border : 2px solid var (--ifm-color-primary-light );
348
+ box-shadow : 0 4px 15px rgba (0 , 0 , 0 , 0.3 );
349
+ }
350
+
351
+ [data-theme = 'dark' ] .actionButton : hover {
352
+ background : var (--ifm-color-primary-light );
353
+ color : white;
354
+ border-color : var (--ifm-color-primary-lighter );
355
+ box-shadow : 0 8px 25px rgba (0 , 0 , 0 , 0.4 );
334
356
}
335
357
336
358
/* Responsive design */
You can’t perform that action at this time.
0 commit comments