style: prepare mixins for border and border-radius

This commit is contained in:
Kazhnuz 2018-10-14 16:54:45 +02:00
parent 04e5ea01f2
commit c79c110cb6
1 changed files with 7 additions and 0 deletions

View File

@ -6,6 +6,13 @@ $inset-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.2);
$inset-shadow-inverted: inset 0px 2px 0px rgba(0, 0, 0, 0.2);
$inset-relief: inset 0px 2px 0px rgba(255, 255, 255, 0.1);
$border-radius: 3px;
$border-size: 1px;
@mixin borders() {
border: $border-size solid rgba(0, 0, 0, 0.3)
}
#wrapper {
background: #64b5f6 url('../img/background.png') center bottom repeat-x;
}