Projet

Général

Profil

0001-auch-add-initial-draft-28349.patch

Emmanuel Cazenave, 26 novembre 2018 15:50

Télécharger (2,12 ko)

Voir les différences:

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
static/auch/_custom.scss
1
#header #top #logo a {
2
	color: $primary-color;
3
}
4

  
5
div.gru-nav > ul {
6
	border-bottom-style: solid;
7
	border-bottom-width: 0.1rem;
8
}
9

  
10
div.gru-nav > ul > li a {
11
	font-weight: normal;
12
}
13

  
14
div.gru-nav li.selected > a {
15
	@if $nav-item-selected-mode == bottom-border {
16
		border-bottom: 0px;
17
		color: $nav-item-selected-color;
18
	}
19
}
static/auch/_vars.scss
1
$primary-color: #B3B18C;
2
$font-family: Arial, sans-serif;
3
$light-black: #37302C;
4

  
5
$button-background: $primary-color;
6
$button-hover-background: darken($primary-color, 20%);
7
$link-color: $light-black;
8
$nav-active-color: $primary-color;
9
$nav-item-hover-mode: bottom-border;
10
$nav-item-selected-mode: bottom-border;
11
$nav-menu-color: $primary-color;
static/auch/config.json
1
{
2
  "label": "Auch",
3
  "variables": {
4
    "no_extra_js": true,
5
    "theme_color": "#B3B18C"
6
  }
7
}
static/auch/style.scss
1
@charset "UTF-8";
2

  
3
@import 'vars';
4
@import '../includes/publik';
5
@import 'custom';
0
-