diff options
author | Valentin Popov <info@valentineus.link> | 2018-12-06 21:04:48 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2018-12-06 21:14:22 +0300 |
commit | 4f25c2dd263cdf6efbff19307a33a2e40061a47d (patch) | |
tree | e1d7ed807c821de4de69e938514757943db49ade /_scss/base | |
parent | c0dbc50ede7205101703d7101c9f1e6a54bfef64 (diff) | |
download | popov.link-4f25c2dd263cdf6efbff19307a33a2e40061a47d.tar.xz popov.link-4f25c2dd263cdf6efbff19307a33a2e40061a47d.zip |
feat(css): Global update of the site theme
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to '_scss/base')
-rw-r--r-- | _scss/base/_bootstrap.scss | 3 | ||||
-rw-r--r-- | _scss/base/_main.scss | 2 | ||||
-rw-r--r-- | _scss/base/_normalize.scss | 1 | ||||
-rw-r--r-- | _scss/base/_sakura.scss | 10 |
4 files changed, 11 insertions, 5 deletions
diff --git a/_scss/base/_bootstrap.scss b/_scss/base/_bootstrap.scss deleted file mode 100644 index e608e9f..0000000 --- a/_scss/base/_bootstrap.scss +++ /dev/null @@ -1,3 +0,0 @@ -@import 'bootswatch/cosmo/_variables.scss'; -@import 'bootstrap/assets/stylesheets/bootstrap'; -@import 'bootswatch/cosmo/_bootswatch.scss'; diff --git a/_scss/base/_main.scss b/_scss/base/_main.scss index d84c289..810b2d4 100644 --- a/_scss/base/_main.scss +++ b/_scss/base/_main.scss @@ -1,3 +1 @@ @import 'components/core'; -@import 'components/github'; -@import 'components/image'; diff --git a/_scss/base/_normalize.scss b/_scss/base/_normalize.scss new file mode 100644 index 0000000..b96534d --- /dev/null +++ b/_scss/base/_normalize.scss @@ -0,0 +1 @@ +@import 'normalize/main'; diff --git a/_scss/base/_sakura.scss b/_scss/base/_sakura.scss new file mode 100644 index 0000000..5a6edcb --- /dev/null +++ b/_scss/base/_sakura.scss @@ -0,0 +1,10 @@ +$color-bg-alt: #c7e3be; +$color-bg: #f9f9f9; +$color-blossom: #338618; +$color-fade: #5e5e5e; +$color-text: #4a4a4a; +$font-family-sans-serif: Verdana, Geneva, sans-serif; +$font-family-serif: serif; +$font-size-base: 1.8rem; + +@import 'sakura/main'; |