Files
forkio/src/scss/_buttons.scss
Bartlomiej Pluta (PGS Software) 4087a53940 Introduce BEM naming
2018-03-19 14:40:27 +01:00

28 lines
539 B
SCSS

.rounded-button {
padding: 7px 35px;
background-color: $primary;
font-family: Montserrat, sans-serif;
color: white;
border: none;
border-radius: 30px;
transition: $hover-duration;
}
.rounded-button:hover {
background-color: $primary-light;
transition: $hover-duration;
text-decoration: none;
color: white;
cursor: pointer;
}
.rounded-button--strong {
font-weight: bold;
text-transform: capitalize;
}
.rounded-button--very-strong {
@extend .rounded-button--strong;
font-size: 21px;
padding: 15px 60px;
}