epau antimatter modular

This commit is contained in:
2021-03-09 17:53:34 +01:00
parent c9360be571
commit a0d7de2621
235 changed files with 12398 additions and 36 deletions
@@ -0,0 +1,24 @@
%button {
display: inline-block;
padding: 7px 20px;
&.button-small {
padding: 3px 10px;
font-size: $core-font-size - 0.1rem;
}
}
@mixin button-color($color) {
background: $white;
color: $color;
border: 1px solid $color;
border-radius: 3px;
&:hover {
background: $color;
color: $white;
}
&:active {
box-shadow: 0 1px 0 darken($color, 12%);
}
}