add theme for castries

This commit is contained in:
Frédéric Péters 2019-06-18 08:41:02 +02:00
parent 4b74f434c8
commit 2b88ba7a3c
6 changed files with 86 additions and 0 deletions

View File

@ -0,0 +1,59 @@
body {
background: #fafafa url(img/fond.jpg) top center no-repeat;
background-attachment: fixed;
background-size: cover;
padding: 50px 0 20px 0;
@media screen and (max-width: $mobile-limit) {
padding: 0;
}
}
div#page {
background: white;
max-width: $width;
margin: 0 auto;
box-shadow: 0 0px 2px rgba(0, 0, 0, 0.27);
border-radius: 2 * $border-radius;
header, nav, #main-content-wrapper {
box-sizing: border-box;
padding: 0 20px;
@media screen and (max-width: $mobile-limit) {
padding: 0;
}
}
}
#header {
h1 {
padding-top: 20px;
a {
display: block;
background: url(img/logo_ville.png) top left no-repeat;
height: 80px;
text-indent: -1000px;
overflow: hidden;
}
@media screen and (max-width: $mobile-limit) {
padding-left: 0;
a {
width: 100%;
}
}
}
}
footer {
div.textcell a {
color: white;
}
}
#footer-wrapper {
border-radius: 0 0 2 * $border-radius 2 * $border-radius;
}
@media screen and (max-width: $mobile-limit) {
.gru-nav-wrapper {
margin-top: -40px;
}
}

View File

@ -0,0 +1,16 @@
$primary-color: #3129b3;
$font-color: #3F3F3F;
$font-size: 16px;
$font-family: "Times New Roman", serif;
$width: 1000px;
$border-radius: 5px;
$nav-background: #9cbc12;
$nav-color: white;
$nav-active-color: darken($nav-background, 10%);
$button-background: #9cbc12;
$title-background: darken($nav-background, 10%);
$title-color: white;
$footer-background: #575757;
$footer-color: white;

View File

@ -0,0 +1,6 @@
{
"label": "Castries",
"variables": {
"theme_color": "#3129b3"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -0,0 +1,5 @@
@charset "UTF-8";
@import 'vars';
@import '../includes/publik';
@import 'custom';