2024-11-27 02:08:59 +02:00
|
|
|
@use "sass:map"
|
|
|
|
|
|
|
|
|
|
// Import the chosen theme (dark or light)
|
|
|
|
|
// Or 'themes/light'
|
2024-11-29 10:29:02 +02:00
|
|
|
@use 'themes/dark' as *
|
2024-11-27 02:08:59 +02:00
|
|
|
|
|
|
|
|
// Shared Table Style Variables
|
|
|
|
|
$table-padding: 10px
|
|
|
|
|
$code-border-radius: 5px
|
|
|
|
|
$list-padding-left: 20px
|
|
|
|
|
|
|
|
|
|
// Link Style Mixins
|
|
|
|
|
@mixin link-primary
|
|
|
|
|
color: $link-color-primary
|
|
|
|
|
text-decoration: none
|
|
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
|
color: darken($link-color-primary, 10%)
|
|
|
|
|
text-decoration: underline
|
|
|
|
|
|
|
|
|
|
@mixin link-secondary
|
|
|
|
|
color: $link-color-secondary
|
|
|
|
|
text-decoration: underline
|
|
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
|
color: lighten($link-color-secondary, 10%)
|
|
|
|
|
|
|
|
|
|
@mixin link-inverse
|
|
|
|
|
color: $inverse-link-color
|
|
|
|
|
background-color: $link-color-primary
|
|
|
|
|
padding: 2px 4px
|
|
|
|
|
text-decoration: none
|
|
|
|
|
border-radius: 3px
|
|
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
|
background-color: darken($link-color-primary, 10%)
|
|
|
|
|
color: $inverse-link-hover-color
|
|
|
|
|
|