62 lines
1.0 KiB
SCSS
62 lines
1.0 KiB
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;
|
|
}
|
|
|
|
&.bordered {
|
|
font-size: 12px;
|
|
font-weight: 800;
|
|
color: color(blue1);
|
|
border: 1px solid color(blue1);
|
|
}
|
|
|
|
&.filter {
|
|
text-transform: none;
|
|
color: color(grey1);
|
|
font-weight: 300;
|
|
border: 2px solid color(grey1);
|
|
|
|
&.selected {
|
|
background-color: color(grey1);
|
|
color: color(white1);
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
&:active,
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
}
|