mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 15:36:22 +00:00
34 lines
418 B
SCSS
34 lines
418 B
SCSS
$black: black;
|
|
$white: white;
|
|
$cyan: #13fefe;
|
|
|
|
:root {
|
|
--foreground: #{$white};
|
|
--background: #{$black};
|
|
--color: #{$cyan};
|
|
}
|
|
|
|
.btn {
|
|
background-color: $white;
|
|
}
|
|
|
|
.btn-secondary {
|
|
background-color: $white;
|
|
color: $black;
|
|
border: none;
|
|
|
|
&:hover {
|
|
color: $black;
|
|
background-color: $cyan;
|
|
}
|
|
|
|
&:active {
|
|
background-color: $cyan;
|
|
}
|
|
|
|
&:focus {
|
|
box-shadow: 0 0 0 0.2rem $cyan;
|
|
}
|
|
}
|
|
|
|
|