mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-01-10 08:35:32 +00:00
15 lines
372 B
SCSS
15 lines
372 B
SCSS
|
.btn {
|
||
|
padding: 0.5rem 1rem;
|
||
|
border-radius: 0.25rem;
|
||
|
|
||
|
border: 1px solid rgba($white100, 0.3);
|
||
|
background-color: rgba($white100, 0);
|
||
|
color: $white100;
|
||
|
|
||
|
transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
|
||
|
|
||
|
&:active {
|
||
|
border-color: rgba($white100, 1);
|
||
|
color: $white100;
|
||
|
}
|
||
|
}
|