mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 22:46:22 +00:00
56e4684ef1
closes #14967
28 lines
378 B
SCSS
28 lines
378 B
SCSS
$black: black;
|
|
$white: white;
|
|
$cyan: #13fefe;
|
|
|
|
:root {
|
|
--foreground: #{$white};
|
|
--background: #{$black};
|
|
--color: #{$cyan};
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|