aboutsummaryrefslogtreecommitdiff
path: root/_sass/_variables.scss
diff options
context:
space:
mode:
authorValentin Popov <valentineus@gmail.com>2018-04-03 03:37:34 +0300
committerValentin Popov <valentineus@gmail.com>2018-04-03 03:37:34 +0300
commit927577f9f71e103be58196f8031a9fcd9e178ce9 (patch)
tree8213f7905c226e730714f4340aa749765d625f10 /_sass/_variables.scss
parente579c803deb1ed1879d3db5de54730e325fd58af (diff)
downloadpopov.link-927577f9f71e103be58196f8031a9fcd9e178ce9.tar.xz
popov.link-927577f9f71e103be58196f8031a9fcd9e178ce9.zip
SASS templates have been removed
Diffstat (limited to '_sass/_variables.scss')
-rw-r--r--_sass/_variables.scss29
1 files changed, 0 insertions, 29 deletions
diff --git a/_sass/_variables.scss b/_sass/_variables.scss
deleted file mode 100644
index 288ade9..0000000
--- a/_sass/_variables.scss
+++ /dev/null
@@ -1,29 +0,0 @@
-// Colors
-$default-color: #555;
-$default-shade: #353535;
-$default-tint: #aaa;
-$grey-1: #979797;
-$grey-2: #e5e5e5;
-$grey-3: #f9f9f9;
-$white: #fff;
-$blue: #4a9ae1;
-$shadow-color: rgba(0, 0, 0, .2);
-$code-color: #bf616a;
-
-// Fonts
-$serif-primary: 'Libre Baskerville', 'Times New Roman', Times, serif;
-$serif-secondary: Palatino, 'Palatino LT STD', 'Palatino Linotype', 'Book Antiqua', 'Georgia', serif;
-$sans-serif: 'Helvetica Neue', 'Segoe UI', Helvetica, Arial, sans-serif;
-$monospaced: Menlo, Monaco, monospace;
-
-@mixin box-sizing($type: border-box) {
- -webkit-box-sizing: $type;
- -moz-box-sizing: $type;
- box-sizing: $type;
-}
-
-@mixin transition($args...) {
- -webkit-transition: $args;
- -moz-transition: $args;
- transition: $args;
-}