Projet

Général

Profil

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

Emmanuel Cazenave, 28 novembre 2018 15:33

Télécharger (14,5 ko)

Voir les différences:

Subject: [PATCH] auch: add initial draft (#28349)

 static/auch/_custom.scss |  38 ++++++++++++++++++++++++++++++++++++++
 static/auch/_vars.scss   |  15 +++++++++++++++
 static/auch/config.json  |   7 +++++++
 static/auch/img/logo.png | Bin 0 -> 9741 bytes
 static/auch/style.scss   |   5 +++++
 5 files changed, 65 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/img/logo.png
 create mode 100644 static/auch/style.scss
static/auch/_custom.scss
1
%title {
2
	@extend %title;
3
	color: $grey;
4
	font-weight: bold;
5
	text-transform: uppercase;
6
	&::before {
7
		border-left: 1.3em solid;
8
		content: '';
9
		margin-right: 0.5em;
10
	}
11
}
12

  
13
#header #top #logo a {
14
	color: $primary-color;
15
}
16

  
17
div.gru-nav > ul {
18
	border-bottom-style: solid;
19
	border-bottom-width: 1px;
20
}
21

  
22
div.gru-nav > ul > li a {
23
	font-weight: normal;
24
}
25

  
26
div.gru-nav li.selected > a {
27
	border-bottom: 0px;
28
	color: $nav-item-selected-color;
29
}
30

  
31
h1#logo a {
32
	background: url(img/logo.png) no-repeat left bottom;
33
	background-size: contain;
34
	display: block;
35
	height: 162px;
36
	margin-top: 1rem;
37
	text-indent: -9999px;
38
}
static/auch/_vars.scss
1
$primary-color: #B3B18C;
2
$font-family: Arial, sans-serif;
3
$grey: #737373;
4
$light-black: #37302C;
5

  
6
$button-background: $primary-color;
7
$button-hover-background: darken($primary-color, 20%);
8
$cell-border: none;
9
$cell-title-cover-border: false;
10
$link-color: $light-black;
11
$nav-active-color: $primary-color;
12
$nav-item-hover-mode: bottom-border;
13
$nav-item-selected-mode: bottom-border;
14
$nav-menu-color: $primary-color;
15
$title-font-family: "Trebuchet MS", serif;
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
-