From 033f17cb5c84efcdf5f2d655dd5a2c6e1c8b45ff 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 | 29 +++++++++++++++++++++++++++++ static/auch/_vars.scss | 15 +++++++++++++++ static/auch/config.json | 7 +++++++ static/auch/style.scss | 5 +++++ 4 files changed, 56 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..64bf0b1b --- /dev/null +++ b/static/auch/_custom.scss @@ -0,0 +1,29 @@ +%title { + @extend %title; + color: $grey; + font-weight: bold; + text-transform: uppercase; + &::before { + border-left: 1.3em solid; + content: ''; + margin-right: 0.5em; + } +} + +#header #top #logo a { + color: $primary-color; +} + +div.gru-nav > ul { + border-bottom-style: solid; + border-bottom-width: 1px; +} + +div.gru-nav > ul > li a { + font-weight: normal; +} + +div.gru-nav li.selected > a { + 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..bbf7ab6e --- /dev/null +++ b/static/auch/_vars.scss @@ -0,0 +1,15 @@ +$primary-color: #B3B18C; +$font-family: Arial, sans-serif; +$grey: #737373; +$light-black: #37302C; + +$button-background: $primary-color; +$button-hover-background: darken($primary-color, 20%); +$cell-border: none; +$cell-title-cover-border: false; +$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; +$title-font-family: "Trebuchet MS", serif; 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