Files
web2.0-frontend/src/components/Button/Button.scss
T
2020-02-22 15:18:36 +02:00

43 lines
723 B
SCSS

@import "../../assets/scss/globals";
.button {
-webkit-appearance: none;
border-radius: none;
padding: 0.8rem 2rem;
margin: 0.5rem;
font-size: 13px;
background: none;
text-transform: uppercase;
@media screen and (max-width: 800px - 1px) {
font-size: 13px;
}
&.hero {
background-color: color(dark-blue);
color: color(blue1);
font-weight: 800;
letter-spacing: 1.5px;
border: 1px solid color(light-turquoise);
}
&.filled {
justify-content: center;
background-color: color(blue1);
color: color(white1);
font-weight: 800;
letter-spacing: 1.5px;
border: none;
}
&:hover {
cursor: pointer;
}
&:active,
&:focus {
outline: none;
}
}