Projet

Général

Profil

0001-wip-essonne.patch

Valentin Deniaud, 26 mai 2020 15:01

Télécharger (16,8 ko)

Voir les différences:

Subject: [PATCH] wip essonne

 static/essonne-cd91/_custom.scss    |  57 ++++++++++++++++++++++++++++
 static/essonne-cd91/_vars.scss      |  31 +++++++++++++++
 static/essonne-cd91/config.json     |   8 ++++
 static/essonne-cd91/img/favicon.png | Bin 0 -> 2405 bytes
 static/essonne-cd91/img/logo.png    | Bin 0 -> 7971 bytes
 static/essonne-cd91/style.scss      |   5 +++
 6 files changed, 101 insertions(+)
 create mode 100644 static/essonne-cd91/_custom.scss
 create mode 100644 static/essonne-cd91/_vars.scss
 create mode 100644 static/essonne-cd91/config.json
 create mode 100644 static/essonne-cd91/img/favicon.png
 create mode 100644 static/essonne-cd91/img/logo.png
 create mode 100644 static/essonne-cd91/style.scss
static/essonne-cd91/_custom.scss
1
div#header-wrapper {
2
    div#header h1 {
3
        padding-top: 15px;
4
        a {
5
            display:inline-block;
6
            background: url(img/logo.png) top center no-repeat;
7
            height: 115px;
8
            width: 100%;
9
			text-indent: -1000px;
10
			overflow: hidden;
11
            @media screen and ($max-mobile-viewport) {
12
                background-size: 120px;
13
                height: 144px;
14
            }
15
        }
16
    }
17
}
18

  
19
div#nav {
20
    font-size: 13px;
21
    font-weight: 700;
22
	text-align: center;
23
	padding-top: 1px;
24
    border-bottom: 4px solid #dbdbdb;
25
    li {
26
        position: relative;
27
    }
28
    li::before, li:last-child::after {
29
        content: '';
30
        width: 1px;
31
        height: 24px;
32
        position: absolute;
33
        top: 50%;
34
        left: 0px;
35
        margin-top: -12px;
36
        background: #e4e4e4;
37

  
38
    }
39
	& > ul {
40
		a {
41
			text-transform: uppercase;
42
		}
43
	}
44
	@media screen and ($max-mobile-viewport) {
45
		text-align: left;
46
	}
47
}
48

  
49
div#main-content-wrapper, div#nav, div#header {
50
    border-left: 2px solid #e4e4e4;
51
    border-right: 2px solid #e4e4e4;
52
    height: 100%;
53
}
54

  
55
div#footer-wrapper {
56
    margin-top: 0;
57
}
static/essonne-cd91/_vars.scss
1
$primary-color: #0098b8;
2

  
3
$border-radius: 0;
4
$width: 1170px;
5
$link-color: $primary-color;
6

  
7
$font-size: 15px;
8
$font-family: Roboto, sans-serif;
9

  
10
$nav-background: white;
11
$nav-color: #63636c;
12
$nav-active-color: $primary-color;
13

  
14
$button-background: $nav-background;
15
$nav-button-background: white;
16
$nav-button-color: #686971;
17

  
18
$responsive-menu: left-to-right;
19

  
20
$title-color: $primary-color;
21
$title-font-size: 36px;
22
$title-weight: 400;
23

  
24
$button-color: white;
25
$button-background: $primary-color;
26

  
27
$cell-border: 1px solid transparent;
28
$cell-entry-hover-effect: left-to-right;
29

  
30
$footer-background: $primary-color;
31
$footer-color: white;
static/essonne-cd91/config.json
1
{
2
  "label": "Essonne",
3
  "variables": {
4
    "favicon": "essonne/img/favicon.png",
5
    "theme_color": "#0098b8",
6
    "logo_link_url": "http://www.essonne.fr/"
7
  }
8
}
static/essonne-cd91/style.scss
1
@charset "UTF-8";
2

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