website/assets/sass/button.scss

27 lines
569 B
SCSS
Raw Normal View History

2023-03-31 22:14:22 +00:00
.button {
display: inline-block;
cursor: pointer;
2023-03-31 22:14:22 +00:00
background-color: $accent;
color: white;
padding: 1rem 2.5rem;
font-weight: lighter;
text-transform: uppercase;
user-select: none;
2023-03-31 22:14:22 +00:00
min-width: 10rem;
font-size: 1.2rem;
border: 0;
border-radius: 2px;
transition: all 0.2s ease-in-out;
border: 1px solid transparent;
&:hover {
opacity: 0.8;
background-color: lighten($accent, 14%);
color: black;
border: 1px solid rgba(0.5, 0.5, 0.5, 0.3);
border-style: inset;
}
2023-03-31 22:14:22 +00:00
}