import from la bonne adresse and first refactoring for ouidade.com

This commit is contained in:
Bachir Soussi Chiadmi
2017-06-19 11:25:19 +02:00
commit 344dae1543
2240 changed files with 288691 additions and 0 deletions
@@ -0,0 +1,2 @@
// Buttons
@import "buttons";
@@ -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%);
}
}