From a64d6db918eeffeaed36194d0050b51ce0965812 Mon Sep 17 00:00:00 2001 From: Emmanuel Cazenave Date: Mon, 26 Nov 2018 15:47:53 +0100 Subject: [PATCH] auch: add initial draft (#28349) --- static/auch/_custom.scss | 19 +++++++++++++++++++ static/auch/_vars.scss | 11 +++++++++++ static/auch/config.json | 7 +++++++ static/auch/style.scss | 5 +++++ 4 files changed, 42 insertions(+) create mode 100644 static/auch/_custom.scss create mode 100644 static/auch/_vars.scss create mode 100644 static/auch/config.json create mode 100644 static/auch/style.scss diff --git a/static/auch/_custom.scss b/static/auch/_custom.scss new file mode 100644 index 00000000..5ffba8ed --- /dev/null +++ b/static/auch/_custom.scss @@ -0,0 +1,19 @@ +#header #top #logo a { + color: $primary-color; +} + +div.gru-nav > ul { + border-bottom-style: solid; + border-bottom-width: 0.1rem; +} + +div.gru-nav > ul > li a { + font-weight: normal; +} + +div.gru-nav li.selected > a { + @if $nav-item-selected-mode == bottom-border { + border-bottom: 0px; + color: $nav-item-selected-color; + } +} diff --git a/static/auch/_vars.scss b/static/auch/_vars.scss new file mode 100644 index 00000000..4544d9e4 --- /dev/null +++ b/static/auch/_vars.scss @@ -0,0 +1,11 @@ +$primary-color: #B3B18C; +$font-family: Arial, sans-serif; +$light-black: #37302C; + +$button-background: $primary-color; +$button-hover-background: darken($primary-color, 20%); +$link-color: $light-black; +$nav-active-color: $primary-color; +$nav-item-hover-mode: bottom-border; +$nav-item-selected-mode: bottom-border; +$nav-menu-color: $primary-color; diff --git a/static/auch/config.json b/static/auch/config.json new file mode 100644 index 00000000..faad9080 --- /dev/null +++ b/static/auch/config.json @@ -0,0 +1,7 @@ +{ + "label": "Auch", + "variables": { + "no_extra_js": true, + "theme_color": "#B3B18C" + } +} diff --git a/static/auch/style.scss b/static/auch/style.scss new file mode 100644 index 00000000..1fd447de --- /dev/null +++ b/static/auch/style.scss @@ -0,0 +1,5 @@ +@charset "UTF-8"; + +@import 'vars'; +@import '../includes/publik'; +@import 'custom'; -- 2.19.1