grav-theme-libretic/scss/template/modules/_buttons.scss
Olivier Navas 17bb11854e - Several modifications of template files for Libretic's web site
- Addition of prerequisites files for scss modifications
- Update of Fontawesome font
- Update of NovecentoSans font for latin characters
- Integration of Pacifico font in the theme instead of dynamically downloading from some google web site
- Removal of some unuseful font files
2022-05-14 19:43:00 +02:00

26 lines
456 B
SCSS

%button {
display: inline-block;
padding: 7px 20px;
margin-left: 5px;
margin-right: 5px;
margin-bottom: 10px;
&.button-small {
padding: 3px 10px;
font-size: $core-font-size - 0.1rem;
}
}
@mixin button-color($color) {
background: $color;
color: $white;
border: 1px solid $color;
&:hover {
background: $white;
color: $color;
}
&:active {
box-shadow: 0 1px 0 darken($color, 12%);
}
}