From c79c110cb6221c91dbb594c5aacb920fa29771ff Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Sun, 14 Oct 2018 16:54:45 +0200 Subject: [PATCH] style: prepare mixins for border and border-radius --- scss/style.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scss/style.scss b/scss/style.scss index ce44954..2ec6649 100644 --- a/scss/style.scss +++ b/scss/style.scss @@ -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; }