hubl/src/styles/variables.scss

21 lines
340 B
SCSS
Raw Normal View History

2018-09-28 19:20:15 +00:00
$color-white: #fff;
2018-09-29 00:22:00 +00:00
$color-black: #36383b;
$color-grey: #898f95;
$color-grey-light: #f0f3f6;
2018-09-28 19:20:15 +00:00
2018-09-29 00:22:00 +00:00
$color-yellow: #ffb700;
$color-yellow-light: #ffd759;
2018-09-28 19:20:15 +00:00
2018-09-29 00:22:00 +00:00
%button {
border-radius: 100em;
2018-09-28 19:20:15 +00:00
}
2018-09-29 00:22:00 +00:00
%button-yellow {
2018-09-28 19:20:15 +00:00
@extend %button;
background-color: $color-yellow;
color: $color-white;
2018-09-29 00:22:00 +00:00
}
%shadow{
box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.05);
2018-09-28 19:20:15 +00:00
}