From 283b4b91b74997c2fe5b1b7c0af61a02f93181a1 Mon Sep 17 00:00:00 2001 From: "jacek.lebioda" <jacek.lebioda@uni.lu> Date: Tue, 2 Jul 2019 11:27:57 +0200 Subject: [PATCH] Reset of browser's CSS, corrected links' colors --- _sass/elixir/_base.scss | 15 ++++++++++++ _sass/elixir/_layout.scss | 2 +- _sass/reset.scss | 48 +++++++++++++++++++++++++++++++++++++++ assets/main.scss | 3 ++- elixir-theme.gemspec | 2 +- 5 files changed, 67 insertions(+), 3 deletions(-) create mode 100644 _sass/reset.scss diff --git a/_sass/elixir/_base.scss b/_sass/elixir/_base.scss index 9630640..475b06b 100644 --- a/_sass/elixir/_base.scss +++ b/_sass/elixir/_base.scss @@ -1,4 +1,5 @@ $COLOR_LINK_ELIXIR: #f47d21; +$COLOR_TEXT: #222; $COLOR_BACKGROUND_HEADER: #023452; $FONT_DEFAULT: 'Lato', Verdana, Helvetica, sans-serif; @@ -13,4 +14,18 @@ body { font-family: $FONT_DEFAULT; font-variant-ligatures: none; font-size: 16px; + margin: 0px; +} + +a { + color: $COLOR_BACKGROUND_HEADER; + transition: color 0.25s; +} + +a:hover { + color: $COLOR_LINK_ELIXIR; +} + +p { + color: $COLOR_TEXT; } diff --git a/_sass/elixir/_layout.scss b/_sass/elixir/_layout.scss index 82f76d7..f587a67 100644 --- a/_sass/elixir/_layout.scss +++ b/_sass/elixir/_layout.scss @@ -31,7 +31,7 @@ padding: 5px 16px; margin-left: 0; color: #fefefe; - transition: color 0.25s; + transition: color 0.25s, background 0.25s; text-transform: uppercase; font-size: 0.875rem; text-decoration: none; diff --git a/_sass/reset.scss b/_sass/reset.scss new file mode 100644 index 0000000..ed11813 --- /dev/null +++ b/_sass/reset.scss @@ -0,0 +1,48 @@ +/* http://meyerweb.com/eric/tools/css/reset/ + v2.0 | 20110126 + License: none (public domain) +*/ + +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, +dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td, +article, aside, canvas, details, embed, +figure, figcaption, footer, header, hgroup, +menu, nav, output, ruby, section, summary, +time, mark, audio, video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; +} +/* HTML5 display-role reset for older browsers */ +article, aside, details, figcaption, figure, +footer, header, hgroup, menu, nav, section { + display: block; +} +body { + line-height: 1; +} +ol, ul { + list-style: none; +} +blockquote, q { + quotes: none; +} +blockquote:before, blockquote:after, +q:before, q:after { + content: ''; + content: none; +} +table { + border-collapse: collapse; + border-spacing: 0; +} diff --git a/assets/main.scss b/assets/main.scss index 1253706..75bb1b9 100644 --- a/assets/main.scss +++ b/assets/main.scss @@ -2,4 +2,5 @@ # This line is required so that Jekyll generates this file --- -@import "elixir"; \ No newline at end of file +@import "reset"; +@import "elixir"; diff --git a/elixir-theme.gemspec b/elixir-theme.gemspec index dcd65cb..60c8ebe 100644 --- a/elixir-theme.gemspec +++ b/elixir-theme.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |spec| spec.name = "elixir-theme" - spec.version = "0.1.18" + spec.version = "0.1.19" spec.authors = ["jacek.lebioda"] spec.email = ["jacek.lebioda@uni.lu"] -- GitLab