52 lines
No EOL
744 B
SCSS
52 lines
No EOL
744 B
SCSS
@import 'template.scss';
|
|
|
|
.button {
|
|
font-family: inherit;
|
|
color: $white;
|
|
border-radius: $border-radius;
|
|
text-align: center;
|
|
border: 0;
|
|
font-weight: bold;
|
|
transition: all 0.2s;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
margin: 0;
|
|
display: inline-block;
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
|
|
.base {
|
|
background-color: $shade1;
|
|
}
|
|
|
|
.base:hover {
|
|
background-color: $base-color;
|
|
}
|
|
|
|
.shade {
|
|
background-color: $shade2;
|
|
color: $base-color;
|
|
}
|
|
|
|
.shade:hover {
|
|
background-color: $shade3;
|
|
color: $shade1;
|
|
}
|
|
|
|
.contrast {
|
|
background-color: $contrast-color
|
|
}
|
|
|
|
.contrast:hover {
|
|
background-color: $contrast-shade1
|
|
}
|
|
|
|
.lg {
|
|
font-size: 18px;
|
|
padding: 20px 40px;
|
|
}
|
|
|
|
.md {
|
|
font-size: 14px;
|
|
padding: 10px 35px;
|
|
} |