org-media-sass/_variables.sass

39 lines
788 B
Sass
Raw Normal View History

2024-11-27 02:08:59 +02:00
@use "sass:map"
// Import the chosen theme (dark or light)
// Or 'themes/light'
@import 'themes/dark'
// 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