Skip to content
Snippets Groups Projects
Commit 4e6cdc9f authored by jarmil's avatar jarmil
Browse files

Merged with test (branches diverged, rebase would be pain i.t.a.)

parents ecf3df14 3395a2c5
No related branches found
No related tags found
2 merge requests!173Release,!134Weby pro MS
Showing
with 1452 additions and 0 deletions
from django.apps import AppConfig
class GreenDealConfig(AppConfig):
name = "green_deal"
# Generated by Django 3.1.1 on 2020-11-13 08:22
import django.db.models.deletion
import wagtail.core.blocks
import wagtail.core.fields
import wagtailmetadata.models
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
("wagtailimages", "0022_uploadedimage"),
("wagtailcore", "0052_pagelogentry"),
]
operations = [
migrations.CreateModel(
name="GreenDealSubPage",
fields=[
(
"page_ptr",
models.OneToOneField(
auto_created=True,
on_delete=django.db.models.deletion.CASCADE,
parent_link=True,
primary_key=True,
serialize=False,
to="wagtailcore.page",
),
),
(
"content",
wagtail.core.fields.StreamField(
[
(
"text_2_columns",
wagtail.core.blocks.StructBlock(
[
(
"left_text",
wagtail.core.blocks.RichTextBlock(
features=[
"h2",
"h3",
"h4",
"h5",
"bold",
"italic",
"ol",
"ul",
"hr",
"link",
"document-link",
"image",
],
label="levý sloupec",
),
),
(
"right_text",
wagtail.core.blocks.RichTextBlock(
features=[
"h2",
"h3",
"h4",
"h5",
"bold",
"italic",
"ol",
"ul",
"hr",
"link",
"document-link",
"image",
],
label="pravý sloupec",
),
),
]
),
),
(
"FAQ_columns",
wagtail.core.blocks.StructBlock(
[
(
"left_text",
wagtail.core.blocks.RichTextBlock(
features=[
"h2",
"h3",
"h4",
"h5",
"bold",
"italic",
"ol",
"ul",
"hr",
"link",
"document-link",
"image",
],
label="levý sloupec",
),
),
(
"faqs",
wagtail.core.blocks.ListBlock(
wagtail.core.blocks.StructBlock(
[
(
"question",
wagtail.core.blocks.TextBlock(),
),
(
"answer",
wagtail.core.blocks.RichTextBlock(),
),
]
),
label="faq",
),
),
]
),
),
(
"news",
wagtail.core.blocks.ListBlock(
wagtail.core.blocks.StructBlock(
[
("header", wagtail.core.blocks.CharBlock()),
(
"text",
wagtail.core.blocks.RichTextBlock(
features=[
"h2",
"h3",
"h4",
"h5",
"bold",
"italic",
"ol",
"ul",
"hr",
"link",
"document-link",
"image",
]
),
),
]
),
label="aktuality",
),
),
],
blank=True,
verbose_name="obsah stránky",
),
),
(
"search_image",
models.ForeignKey(
blank=True,
null=True,
on_delete=django.db.models.deletion.SET_NULL,
related_name="+",
to="wagtailimages.image",
verbose_name="Search image",
),
),
],
options={
"verbose_name": "Podstránka",
},
bases=(
"wagtailcore.page",
wagtailmetadata.models.MetadataMixin,
models.Model,
),
),
migrations.CreateModel(
name="GreenDealHomePage",
fields=[
(
"page_ptr",
models.OneToOneField(
auto_created=True,
on_delete=django.db.models.deletion.CASCADE,
parent_link=True,
primary_key=True,
serialize=False,
to="wagtailcore.page",
),
),
(
"content",
wagtail.core.fields.StreamField(
[
(
"text_2_columns",
wagtail.core.blocks.StructBlock(
[
(
"left_text",
wagtail.core.blocks.RichTextBlock(
features=[
"h2",
"h3",
"h4",
"h5",
"bold",
"italic",
"ol",
"ul",
"hr",
"link",
"document-link",
"image",
],
label="levý sloupec",
),
),
(
"right_text",
wagtail.core.blocks.RichTextBlock(
features=[
"h2",
"h3",
"h4",
"h5",
"bold",
"italic",
"ol",
"ul",
"hr",
"link",
"document-link",
"image",
],
label="pravý sloupec",
),
),
]
),
),
(
"FAQ_columns",
wagtail.core.blocks.StructBlock(
[
(
"left_text",
wagtail.core.blocks.RichTextBlock(
features=[
"h2",
"h3",
"h4",
"h5",
"bold",
"italic",
"ol",
"ul",
"hr",
"link",
"document-link",
"image",
],
label="levý sloupec",
),
),
(
"faqs",
wagtail.core.blocks.ListBlock(
wagtail.core.blocks.StructBlock(
[
(
"question",
wagtail.core.blocks.TextBlock(),
),
(
"answer",
wagtail.core.blocks.RichTextBlock(),
),
]
),
label="faq",
),
),
]
),
),
(
"news",
wagtail.core.blocks.ListBlock(
wagtail.core.blocks.StructBlock(
[
("header", wagtail.core.blocks.CharBlock()),
(
"text",
wagtail.core.blocks.RichTextBlock(
features=[
"h2",
"h3",
"h4",
"h5",
"bold",
"italic",
"ol",
"ul",
"hr",
"link",
"document-link",
"image",
]
),
),
]
),
label="aktuality",
),
),
],
blank=True,
verbose_name="obsah stránky",
),
),
(
"matomo_id",
models.IntegerField(
blank=True,
null=True,
verbose_name="Matomo ID pro sledování návštěvnosti",
),
),
(
"top_menu",
wagtail.core.fields.StreamField(
[
(
"item",
wagtail.core.blocks.StructBlock(
[
(
"name",
wagtail.core.blocks.CharBlock(
label="název"
),
),
(
"page",
wagtail.core.blocks.PageChooserBlock(
label="stránka",
page_type=[
"green_deal.GreenDealHomePage",
"green_deal.GreenDealSubPage",
],
),
),
]
),
)
],
blank=True,
verbose_name="horní menu",
),
),
(
"search_image",
models.ForeignKey(
blank=True,
null=True,
on_delete=django.db.models.deletion.SET_NULL,
related_name="+",
to="wagtailimages.image",
verbose_name="Search image",
),
),
],
options={
"verbose_name": "Zelená dohoda pro regiony",
},
bases=(
wagtailmetadata.models.MetadataMixin,
"wagtailcore.page",
models.Model,
),
),
]
# Generated by Django 3.1.1 on 2020-12-08 13:35
import datetime
import wagtail.core.blocks
import wagtail.core.fields
import wagtail.images.blocks
from django.db import migrations, models
from django.utils.timezone import utc
class Migration(migrations.Migration):
dependencies = [
("green_deal", "0001_initial"),
]
operations = [
migrations.AlterModelOptions(
name="greendealsubpage",
options={"verbose_name": "Zelená dohoda pro regiony"},
),
migrations.AddField(
model_name="greendealsubpage",
name="matomo_id",
field=models.IntegerField(
blank=True,
null=True,
verbose_name="Matomo ID pro sledování návštěvnosti",
),
),
migrations.AddField(
model_name="greendealsubpage",
name="top_menu",
field=wagtail.core.fields.StreamField(
[
(
"item",
wagtail.core.blocks.StructBlock(
[
("name", wagtail.core.blocks.CharBlock(label="název")),
(
"page",
wagtail.core.blocks.PageChooserBlock(
label="stránka",
page_type=[
"green_deal.GreenDealHomePage",
"green_deal.GreenDealSubPage",
],
),
),
]
),
)
],
blank=True,
verbose_name="horní menu",
),
),
migrations.AlterField(
model_name="greendealhomepage",
name="content",
field=wagtail.core.fields.StreamField(
[
(
"text_2_columns",
wagtail.core.blocks.StructBlock(
[
(
"left_text",
wagtail.core.blocks.RichTextBlock(
features=[
"h2",
"h3",
"h4",
"h5",
"bold",
"italic",
"ol",
"ul",
"hr",
"link",
"document-link",
"image",
],
label="levý sloupec",
),
),
(
"right_text",
wagtail.core.blocks.RichTextBlock(
features=[
"h2",
"h3",
"h4",
"h5",
"bold",
"italic",
"ol",
"ul",
"hr",
"link",
"document-link",
"image",
],
label="pravý sloupec",
),
),
]
),
),
(
"text_1_column",
wagtail.core.blocks.StructBlock(
[
("header", wagtail.core.blocks.CharBlock()),
(
"text",
wagtail.core.blocks.RichTextBlock(
features=[
"h2",
"h3",
"h4",
"h5",
"bold",
"italic",
"ol",
"ul",
"hr",
"link",
"document-link",
"image",
]
),
),
]
),
),
(
"FAQ_columns",
wagtail.core.blocks.StructBlock(
[
(
"left_text",
wagtail.core.blocks.RichTextBlock(
features=[
"h2",
"h3",
"h4",
"h5",
"bold",
"italic",
"ol",
"ul",
"hr",
"link",
"document-link",
"image",
],
label="levý sloupec",
),
),
(
"faqs",
wagtail.core.blocks.ListBlock(
wagtail.core.blocks.StructBlock(
[
(
"question",
wagtail.core.blocks.TextBlock(),
),
(
"answer",
wagtail.core.blocks.RichTextBlock(),
),
]
),
label="faq",
),
),
]
),
),
(
"news",
wagtail.core.blocks.ListBlock(
wagtail.core.blocks.StructBlock(
[
("header", wagtail.core.blocks.CharBlock()),
(
"perex",
wagtail.core.blocks.RichTextBlock(
features=[
"h2",
"h3",
"h4",
"h5",
"bold",
"italic",
"ol",
"ul",
"hr",
"link",
"document-link",
"image",
]
),
),
("img", wagtail.images.blocks.ImageChooserBlock()),
("link", wagtail.core.blocks.URLBlock()),
(
"date",
wagtail.core.blocks.DateBlock(
default=datetime.datetime(
2020,
12,
8,
13,
35,
3,
209883,
tzinfo=utc,
)
),
),
]
),
label="aktuality",
),
),
],
blank=True,
verbose_name="obsah stránky",
),
),
migrations.AlterField(
model_name="greendealsubpage",
name="content",
field=wagtail.core.fields.StreamField(
[
(
"text_2_columns",
wagtail.core.blocks.StructBlock(
[
(
"left_text",
wagtail.core.blocks.RichTextBlock(
features=[
"h2",
"h3",
"h4",
"h5",
"bold",
"italic",
"ol",
"ul",
"hr",
"link",
"document-link",
"image",
],
label="levý sloupec",
),
),
(
"right_text",
wagtail.core.blocks.RichTextBlock(
features=[
"h2",
"h3",
"h4",
"h5",
"bold",
"italic",
"ol",
"ul",
"hr",
"link",
"document-link",
"image",
],
label="pravý sloupec",
),
),
]
),
),
(
"text_1_column",
wagtail.core.blocks.StructBlock(
[
("header", wagtail.core.blocks.CharBlock()),
(
"text",
wagtail.core.blocks.RichTextBlock(
features=[
"h2",
"h3",
"h4",
"h5",
"bold",
"italic",
"ol",
"ul",
"hr",
"link",
"document-link",
"image",
]
),
),
]
),
),
(
"FAQ_columns",
wagtail.core.blocks.StructBlock(
[
(
"left_text",
wagtail.core.blocks.RichTextBlock(
features=[
"h2",
"h3",
"h4",
"h5",
"bold",
"italic",
"ol",
"ul",
"hr",
"link",
"document-link",
"image",
],
label="levý sloupec",
),
),
(
"faqs",
wagtail.core.blocks.ListBlock(
wagtail.core.blocks.StructBlock(
[
(
"question",
wagtail.core.blocks.TextBlock(),
),
(
"answer",
wagtail.core.blocks.RichTextBlock(),
),
]
),
label="faq",
),
),
]
),
),
(
"news",
wagtail.core.blocks.ListBlock(
wagtail.core.blocks.StructBlock(
[
("header", wagtail.core.blocks.CharBlock()),
(
"perex",
wagtail.core.blocks.RichTextBlock(
features=[
"h2",
"h3",
"h4",
"h5",
"bold",
"italic",
"ol",
"ul",
"hr",
"link",
"document-link",
"image",
]
),
),
("img", wagtail.images.blocks.ImageChooserBlock()),
("link", wagtail.core.blocks.URLBlock()),
(
"date",
wagtail.core.blocks.DateBlock(
default=datetime.datetime(
2020,
12,
8,
13,
35,
3,
209883,
tzinfo=utc,
)
),
),
]
),
label="aktuality",
),
),
],
blank=True,
verbose_name="obsah stránky",
),
),
]
from django.db import models
from django.utils import timezone
from django.utils.translation import gettext_lazy
from wagtail.admin.edit_handlers import (
FieldPanel,
HelpPanel,
MultiFieldPanel,
StreamFieldPanel,
)
from wagtail.core import blocks
from wagtail.core.fields import StreamField
from wagtail.core.models import Page
from wagtail.images.blocks import ImageChooserBlock
from wagtail.images.edit_handlers import ImageChooserPanel
from wagtailmetadata.models import MetadataPageMixin
from tuning import help
RICH_TEXT_FEATURES = [
"h2",
"h3",
"h4",
"h5",
"bold",
"italic",
"ol",
"ul",
"hr",
"link",
"document-link",
"image",
]
class MenuItemBlock(blocks.StructBlock):
name = blocks.CharBlock(label="název")
page = blocks.PageChooserBlock(
label="stránka",
page_type=["green_deal.GreenDealHomePage", "green_deal.GreenDealSubPage"],
)
class Meta:
label = "stránka"
class FaqBlock(blocks.StructBlock):
question = blocks.TextBlock()
answer = blocks.RichTextBlock()
class ColumnsTextBlock(blocks.StructBlock):
left_text = blocks.RichTextBlock(label="levý sloupec", features=RICH_TEXT_FEATURES)
right_text = blocks.RichTextBlock(
label="pravý sloupec", features=RICH_TEXT_FEATURES
)
class Meta:
label = "text dva sloupce"
icon = "doc-full"
class ColumnsFaqBlock(blocks.StructBlock):
left_text = blocks.RichTextBlock(label="levý sloupec", features=RICH_TEXT_FEATURES)
faqs = blocks.ListBlock(FaqBlock(), label="faq")
class NewsBlock(blocks.StructBlock):
header = blocks.CharBlock()
perex = blocks.RichTextBlock(features=RICH_TEXT_FEATURES)
img = ImageChooserBlock()
link = blocks.URLBlock()
date = blocks.DateBlock(default=timezone.now())
class StudiesBlock(blocks.StructBlock):
header = blocks.CharBlock()
text = blocks.RichTextBlock(features=RICH_TEXT_FEATURES)
class Meta:
label = "Text 1 sloupec"
icon = "doc-full"
class GreenDealHomePage(MetadataPageMixin, Page):
### FIELDS
content = StreamField(
[
("text_2_columns", ColumnsTextBlock()),
("text_1_column", StudiesBlock()),
("FAQ_columns", ColumnsFaqBlock()),
("news", blocks.ListBlock(NewsBlock(), label="aktuality")),
],
verbose_name="obsah stránky",
blank=True,
)
# settings
matomo_id = models.IntegerField(
"Matomo ID pro sledování návštěvnosti", blank=True, null=True
)
top_menu = StreamField(
[("item", MenuItemBlock())],
verbose_name="horní menu",
blank=True,
)
### PANELS
content_panels = Page.content_panels + [
StreamFieldPanel("content"),
]
promote_panels = [
MultiFieldPanel(
[
FieldPanel("seo_title"),
FieldPanel("search_description"),
ImageChooserPanel("search_image"),
HelpPanel(help.build(help.IMPORTANT_TITLE)),
],
gettext_lazy("Common page configuration"),
),
]
settings_panels = [
FieldPanel("matomo_id"),
StreamFieldPanel("top_menu"),
]
### RELATIONS
subpage_types = [
"green_deal.GreenDealSubPage",
]
### OTHERS
class Meta:
verbose_name = "Zelená dohoda pro regiony"
@property
def root_page(self):
return self
class GreenDealSubPage(Page, MetadataPageMixin):
### FIELDS
content = StreamField(
[
("text_2_columns", ColumnsTextBlock()),
("text_1_column", StudiesBlock()),
("FAQ_columns", ColumnsFaqBlock()),
("news", blocks.ListBlock(NewsBlock(), label="aktuality")),
],
verbose_name="obsah stránky",
blank=True,
)
# settings
matomo_id = models.IntegerField(
"Matomo ID pro sledování návštěvnosti", blank=True, null=True
)
top_menu = StreamField(
[("item", MenuItemBlock())],
verbose_name="horní menu",
blank=True,
)
### PANELS
content_panels = Page.content_panels + [
StreamFieldPanel("content"),
]
promote_panels = [
MultiFieldPanel(
[
FieldPanel("seo_title"),
FieldPanel("search_description"),
ImageChooserPanel("search_image"),
HelpPanel(help.build(help.IMPORTANT_TITLE)),
],
gettext_lazy("Common page configuration"),
),
]
settings_panels = [
FieldPanel("matomo_id"),
StreamFieldPanel("top_menu"),
]
### RELATIONS
subpage_types = [
"green_deal.GreenDealSubPage",
]
### OTHERS
class Meta:
verbose_name = "Zelená dohoda pro regiony"
@property
def root_page(self):
return self
.fxbottom {position: absolute; bottom: -35px; right: 0; width: 85%; max-width: 1600px;}
.fxbottom img {transform: rotate(180deg);}
/*ul.topmenu li::after {content: "\00a0\00a0|\00a0"}*/
.head_menu ul.topmenu {position: relative; margin-top: 0px; right: 0; text-align: right; display: block; text-transform: uppercase;}
.head_menu ul.topmenu li a { font-size: 130%; color: #000; font-weight: normal; text-decoration: none; padding: 0px;}
.head_menu ul.topmenu li a:hover {color: #333; @include textshadow(1px,0px,3px,#aaa);}
.head_menu ul.topmenu .active {color: #777; }
.head_menu ul.topmenu li {display: inline-block; list-style: none; padding: 0; margin: 0; margin-left: 2em;}
#sticky_menu.sticky {
a.home {color: #fff;}
a.home strong {color: #fff;}
a.home img {max-width: 100px;}
h1 {font-size: 250%;}
h1 span {top: 0;}
ul.topmenu li a {color: #fff;}
}
#footer ul.topmenu {}
#header_top a img {@include saturateimg(1); @include trans();}
#header_top a:hover img {@include saturateimg(0)}
.tcont {position: relative; padding: 1em 4%; background-color: rgba(0,0,0,0.08); overflow: hidden;}
.tcont .inner {max-width: $maxwidth; margin: auto;}
.tcont h2 {text-transform: uppercase; font-weight: 200; font-size: 250%; color: #888;}
.uvod_text {position: relative; top: 30px; width: 70%; float: left; text-align: center; padding-bottom: 5em;}
.uvod_text h2 {position: relative; font-size: 250%; padding-bottom: 20px;}
.uvod_text h2 span {position: relative; top: -0.5em; font-weight: 200; font-size: 60%;}
.uvod_text p {font-size: large;}
.uvod_foto {position: relative; width: 48%; float: right;}
.uvod_foto img { }
.prehled {position: relative; float: right; font-size: 120%; padding-top: 40px; }
.prehled h3 {position: relative; }
.harmonogram {width: 40%; float: left;}
.zdroje {width: 60%; float: right;}
.item_arrow {position: relative; top: 5px;}
#homepage.content>.inner { padding-bottom: 0;}
div.p {position: relative; padding-bottom: 1em;}
div.p:nth-child(2n) {width: 56%; padding-left: 4%; float: right; text-align: justify;}
div.p:nth-child(2n-1) {width: 36%; padding-right: 4%; float: left; text-align: justify; clear: both;}
div.p ol li {font-size: 100%;}
div.p img {margin-bottom: 1em;}
div.p h3 {text-align: left;}
.right_banners {position: relative; float: right; margin-left: 2em;}
.right_banners a {margin-bottom: 1em;}
.left_banners {position: relative; float: left; margin-right: 2em;}
.left_banners a {margin-bottom: 1em;}
.akt h3 {font-size: 150%; font-weight: bold;}
.akt {padding-bottom: 2em; }
.img_cont1 {position: relative; display: block; width: 100%; height: 70%; margin-bottom: 1em; max-height: 380px; background: url("../images/table.jpg");
/* Create the parallax scrolling effect */
background-attachment: fixed; background-position: left;
background-repeat: no-repeat;
background-size: auto;
}
.refs {position: relative; padding-top: 1em; margin-bottom: 3em; border-top: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05);}
.gallery {margin-top: 20px; /*width: 680px;*/}
#kdo-jsem .gallery {margin-top: 10px; /*width: 680px;*/}
table.gal {position: relative; float: left; margin: 0px 10px 20px 10px; /*border: 1px solid #6c6c6c;*/}
table.gal a {display: block; position: relative; width: 230px; height: 230px; overflow: hidden;}
table.table {width: 100%; border-spacing: 0; margin-bottom: 2em; border-top: 1px dashed #c4e9f2; border-bottom: 1px dashed #c4e9f2;}
.content table strong {color: #00355f;}
table.table tr:nth-child(even) {
background: #f0fbff;
}
table.table td {padding: 10px 1em;}
table.table tr.border {border-top: 1px dashed #c4e9f2;}
.field {float: left; margin-right: 2em;}
#footer .social {text-align: right;}
#map { float: right; text-align: right;}
#map span {display: block; background: url("../images/border.png") 0 0 repeat; padding: 9px; padding-bottom: 4px; margin-bottom: 5px;}
#kontakt form {width: 510px; float: right;}
#kontakt iframe {float: none;}
img, video, canvas {
max-width: 100%;
}
$breakpoints: (
'x-large': (max-width: 1600px),
'large': (max-width: 1280px),
'medium': (max-width: 1050px),
'small': (max-width: 850px),
'x-small': (max-width: 700px),
'xx-small': (max-width: 500px),
'xxx-small': (max-width: 430px),
'medium-height': (max-height: 850px),
'small-height': (max-height: 720px),
'x-small-height': (max-height: 650px)
);
@mixin media($breakpoint) {
$raw-query: map-get($breakpoints, $breakpoint);
@if $raw-query {
$query: if(
type-of($raw-query) == 'string',
unquote($raw-query),
inspect($raw-query)
);
@media #{$query} {
@content;
}
} @else {
@error 'No value found for `#{$breakpoint}`. '
+ 'Please make sure it is defined in `$breakpoints` map.';
}
}
@mixin largestate {
/*#footer .quarter {width: 30%;}*/
#footer .half {width: 40%;}
#footer .menu {width: 50%}
#footer .mainmenu li {float: none !important; min-height: inherit !important; padding-bottom: 0 !important;}
#footer .mainmenu ul {display: none;}
.googlemap iframe {width: 100% !important;}
}
@mixin mediumstate {
#menu .hide {display:none !important}
#menu .mainmenu,#menu .mainmenu_menu,#qm0{display:none !important}
#responsive_menu {position: fixed; width: 100%; height: 1px; top: 80px; z-index: 50; overflow: hidden;}
#responsive_menu.hide {display: block !important;}
#responsive_menu li {display: block; padding: 0.5em 0.5em;}
}
@mixin smallstate {
.quarter {width: 50%; text-align: center; float: none;}
.third {width: 100%; text-align: center;}
.half {width: 100%;}
#footer hr {max-width: 100%;}
#footer .quarter {width: 100%;}
#footer .half {width: 100%; padding-top: 1em; text-align: center; }
#footer .mainmenu {text-align: center;}
#footer .mainmenu li {padding: inherit;}
}
@mixin xsmallstate {
.quarter {width: 100%; text-align: center;}
//.third {width: 100%; text-align: center;}
//.half {width: 100%;}
.twothird {width: 100%; text-align: center;}
.pagination span {font-size: small;}
}
@include media("x-large"){
#flags .flag, #responsive_flags .flag {}
//#qm0 a {padding: 38px 1.5em;}
//ADDON
#slideshow_text {top: 2em; right: 5%;}
#slideshow_text h2 {font-size: 300%;}
#slideshow_text p {font-size: 140%; }
}
@include media("large"){
@include largestate;
#header {}
.mainmenu li, .mainmenu_menu li {padding-right: 0;}
.mainmenu li a, .mainmenu_menu li a, #qm0 li a {font-size: 100%;}
//h1 {font-size: 250%;}
h2 {padding-bottom: 0;}
//.kontakt {width: 49%;}
#slideshow_text {top: 1em; padding: 1em;}
#slideshow h2 {font-size: 180%;}
#slideshow_text p {font-size: 110%;}
//#qm0 a {padding: 38px 1.2em;}
//ADDON
}
@include media("medium"){
@include mediumstate;
#header {overflow: hidden;}
#responsive_menu.hide {display: block !important;}
#responsive_menu{
//.mainmenu, .mainmenu_menu, #qm0 {position: relative; top: 0px; left: -60%; width: 40%; /*max-height: 130px;*/ padding: 10px 20px; padding-bottom: 30px;
//background-color: rgba(0,0,0,0.8); /*@include boxshadow(10px, -20px, 15px, #888);*/}
.mainmenu, .mainmenu_menu, #qm0 {font-size: 100%; text-align: left;}
//.mainmenu li, .mainmenu_menu li, #qm0 li {display: block; padding: 0.5em 0.5em;}
.mainmenu li a, .mainmenu_menu li a, #qm0 li a {float: none; border-bottom: none; font-weight: 400; padding: 0;}
.mainmenu li a:hover, .mainmenu_menu li a:hover, #qm0 li a:hover {border-bottom: none; color: $acolor;}
.mainmenu li ul {padding-top: 0.5em}
.mainmenu li ul li {padding-left: 1em;}
.mainmenu li ul li a::before {content: url("../images/li.png"); padding-right: 5px;}
.mainmenu li ul li a {text-transform: none;}
button {display: inline-block;}
}
.quarter_center.last {margin-right: 10px;}
#cont {padding-top: 50px;}
#header {position: relative; /*overflow: hidden;*/}
#header .hide {display: none !important;}
.head_menu {position: absolute; max-width: none; top: 85px; right: -110%; width: 100%; padding: 50px 20px 0; background: #0f3234; background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 50%); /*-webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15); -moz-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15); box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);*/}
.head_menu ul.topmenu {position: relative; padding-right: 0; padding-bottom: 3em; margin-top: -25px; border: none; height: auto; font-size: 130%; text-align: right;}
.head_menu ul.topmenu li {display: inline-block; float: none; padding-bottom: 1em;}
.head_menu ul.topmenu li a {float: none; border-bottom: none; color: #fff; font-size: 100%;}
.head_menu ul.topmenu li a:hover {border-bottom: none;}
.head_menu button {display: inline-block;}
#mob_menu_open {display: inline-block; }
#mob_menu_close {display: inline-block; z-index: 100; top: 100px;}
.addhtml {display: none;}
.sticky #mob_menu_open, sticky #mob_menu_close {right: 4%;}
/*.head_menu {top: 114px;}*/
.head_menu ul.topmenu {right: 50px;}
#slideshow_text {}
#slideshow_text h3 {font-size: 120%;}
#slideshow_text a.button {font-size: 100%; padding: 0.8em 1.5em;}
#slideshow_text p {font-size: 100%; line-height: 1.5em;}
//#header .header_left .social {display: none;}
//#responsive_flags {position: relative; display: block; top: 9px; float: right; margin-right: 30px;}
//#menu .social {position: relative; display: block; top: 8px; float: right;}
//#header .header_left {width: 250px; float: right; padding-top: 20px;}
//#header .header_left .gps {width: 100%; min-width: inherit; padding-bottom: 15px; float: none;}
//#header .header_left .phone {width: 100%; min-width: inherit; float: none;}
.fixed1 {}
.fixed1 a.button {display: block; max-width: 150px; top: 1em; margin: auto;}
.fixed1 h2 {font-size: 150%;}
.akt {text-align: left;}
.gallery {text-align: center;}
table.gal {display: inline-block; float: none;}
#kontakt form {display: block; width: 90%; float: none; }
#kontakt iframe {width: 100% !important; margin-top: 20px;}
#footer .logo img {width: 85%;}
#footer .mainmenu {font-size: 110%;}
.box {width: 90%; margin-left: 5%;}
.boxes h2 {font-size: 90%;}
.boxes p {/*font-size: 70%;*/}
//ADDON
#homepage.content>.inner {padding-top: 0; padding-bottom: 0em;}
.uvod_text h2 {font-size: 250%;}
.prehled {float: none;}
.harmonogram {float: none;}
.zdroje {float: none; width: 100%; padding-top: 2em;}
.content>.inner {padding: 2em 0;}
}
@include media("small"){
@include smallstate;
#header {}
#header_top .logo_cont {width: 80px; padding-right: 10px;}
#header_top .soc {top: 0;}
/*body {font-size: medium;}*/
//#top {display: none;}
//#header a.home {max-width: 50%;}
//#header h1 {font-size: 150%;}
//#header .header_left {width: 50%; padding-top: 20px;}
//#header .title {left: 40%;}
#slideshow_text {max-width: 80%;}
#slideshow_text p {font-size: 100%;}
#slideshow_text h2 {font-size: 160%;}
#slideshow_text a.button {display: none;}
.contact_form .inner .twothird {width: 100%;}
//.mainmenu, .mainmenu_menu, #qm0 {width: 60%; font-size: 85%;}
.text_blocks h2 {font-size: 140%;}
.text_blocks p {font-size: 110%;}
.twothird hr.underline {display: none;}
h3 {font-size: 130%;}
#aktuality_uvod .text {text-align: center !important;}
.akt {width: 90%; height: auto;
.akt_text {height: auto;}
.submit_cont {position: relative; margin: 1em 0; bottom: 0;}
}
.fixed1 h3 {top: 50px; font-size: 200%;}
.cat h2 {font-size: 220%; }
#footer {
.logo {display: none;}
.fright {padding-bottom: 0;}
ul {padding-bottom: 2em;}
ul li {display: inline-block;}
.quarter:nth-child(2) {text-align: center;}
.quarter:nth-child(2) ul {direction: ltr;}
.quarter:nth-child(2) ul li {margin-right: 0px;}
.quarter:nth-child(2) h4 {padding-right: 0px;}
.social {text-align: center; float: none; padding-top: 1em;}
.social a img {position: relative; float: none;}
}
//ADDON
.uvod_foto {display: none;}
.uvod_text {width: 100%;}
#homepage.content>.inner {padding-bottom: 4em;}
}
@include media("x-small"){
@include xsmallstate;
/*#slider {display: none;}*/
#header {}
#header .title {}
#header a.home {font-size: 140%;}
#header a.home strong {display: block;}
#menu .logo {display: none;}
#responsive_menu{
.mainmenu, .mainmenu_menu, #qm0 {width: 100%; left: -115%;}
}
.head_menu ul.topmenu li a {font-size: 80%;}
h1 {font-size: 130%; text-align: left;}
/*#header a.home {display: block; width: 100%; max-width: 100%; margin: auto; text-align: center}*/
.portfolio {width: 100%; margin-bottom: 0;}
//#header .header_left {display:none;}
#slideshow_text {top: 0; }
#slideshow_text p {font-size: 90%;}
#slideshow_text h2 {font-size: 130%;}
#slideshow_text a.button {}
#menu .social {display: none;}
#flags {width: 100px;}
#flags .flag, #responsive_flags {margin-right: 0;}
.fixed1 h2 {font-size: 120%;}
/*.akt {width: 90%;}*/
.g-recaptcha > div {width: 100% !important;}
.cats .cat {padding-bottom: 2em;}
.akt h4 {font-size: 110%;}
//ADDON
#mob_menu_open {}
}
@include media("xx-small"){
a.home {font-size: 25px;}
#header {}
#header_top .soc {display: none;}
.head_menu .topmenu li {padding-bottom: 0.4em;}
.head_menu .topmenu li a {@include textshadow(1px,0px,1px,#fff);}
.head_menu ul.topmenu li {margin-left: 1em;}
.head_menu ul.topmenu li a {font-size: 65%;}
/*#mob_menu_open {right: 25px;}
#mob_menu_close {right: 25px;}*/
.akt img.f_right {max-width: 90px;}
#footer .inner {font-size: small;}
#map {display: none;}
#content .inner {border-top: 0;}
#slideshow_text {display: none;}
.contact_form .info {text-align: center; float: none;}
.home img {max-width: 85%;}
.fb, .instagram {display: none;}
#footer .inner .quarter:nth-child(2) {display: none}
#head_img {margin-bottom: 0;}
//ADDON
}
@include media("xxx-small"){
#header {/*height: 100%;*/ padding-bottom: 0%;}
//ADDON
}
@include media("medium-height"){
//ADDON
}
@include media("small-height"){
//ADDON
}
@include media("x-small-height"){
//ADDON
}
.cc-window{opacity:1;transition:opacity 1s ease}.cc-window.cc-invisible{opacity:0}.cc-animate.cc-revoke{transition:transform 1s ease}.cc-animate.cc-revoke.cc-top{transform:translateY(-2em)}.cc-animate.cc-revoke.cc-bottom{transform:translateY(2em)}.cc-animate.cc-revoke.cc-active.cc-bottom,.cc-animate.cc-revoke.cc-active.cc-top,.cc-revoke:hover{transform:translateY(0)}.cc-grower{max-height:0;overflow:hidden;transition:max-height 1s}
.cc-link,.cc-revoke:hover{text-decoration:underline}.cc-revoke,.cc-window{position:fixed;overflow:hidden;box-sizing:border-box;font-family:Helvetica,Calibri,Arial,sans-serif;font-size:14px;line-height:1em;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;z-index:9999}.cc-window.cc-static{position:static}.cc-window.cc-floating{padding:2em;max-width:24em;-ms-flex-direction:column;flex-direction:column}.cc-window.cc-banner{padding:1em 1.8em;width:100%;-ms-flex-direction:row;flex-direction:row}.cc-revoke{padding:.5em}.cc-header{font-size:18px;font-weight:700}.cc-btn,.cc-close,.cc-link,.cc-revoke{cursor:pointer}.cc-link{opacity:.8;display:inline-block;padding:.2em}.cc-link:hover{opacity:1}.cc-link:active,.cc-link:visited{color:initial}.cc-btn{display:block;padding:.4em .8em;font-size:.9em;font-weight:700;border-width:2px;border-style:solid;text-align:center;white-space:nowrap}.cc-banner .cc-btn:last-child{min-width:140px}.cc-highlight .cc-btn:first-child{background-color:transparent;border-color:transparent}.cc-highlight .cc-btn:first-child:focus,.cc-highlight .cc-btn:first-child:hover{background-color:transparent;text-decoration:underline}.cc-close{display:block;position:absolute;top:.5em;right:.5em;font-size:1.6em;opacity:.9;line-height:.75}.cc-close:focus,.cc-close:hover{opacity:1}
.cc-revoke.cc-top{top:0;left:3em;border-bottom-left-radius:.5em;border-bottom-right-radius:.5em}.cc-revoke.cc-bottom{bottom:0;left:3em;border-top-left-radius:.5em;border-top-right-radius:.5em}.cc-revoke.cc-left{left:3em;right:unset}.cc-revoke.cc-right{right:3em;left:unset}.cc-top{top:1em}.cc-left{left:1em}.cc-right{right:1em}.cc-bottom{bottom:1em}.cc-floating>.cc-link{margin-bottom:1em}.cc-floating .cc-message{display:block;margin-bottom:1em}.cc-window.cc-floating .cc-compliance{-ms-flex:1;flex:1}.cc-window.cc-banner{-ms-flex-align:center;align-items:center}.cc-banner.cc-top{left:0;right:0;top:0}.cc-banner.cc-bottom{left:0;right:0;bottom:0}.cc-banner .cc-message{-ms-flex:1;flex:1}.cc-compliance{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:justify;align-content:space-between}.cc-compliance>.cc-btn{-ms-flex:1;flex:1}.cc-btn+.cc-btn{margin-left:.5em}
@media print{.cc-revoke,.cc-window{display:none}}@media screen and (max-width:900px){.cc-btn{white-space:normal}}@media screen and (max-width:414px) and (orientation:portrait),screen and (max-width:736px) and (orientation:landscape){.cc-window.cc-top{top:0}.cc-window.cc-bottom{bottom:0}.cc-window.cc-banner,.cc-window.cc-left,.cc-window.cc-right{left:0;right:0}.cc-window.cc-banner{-ms-flex-direction:column;flex-direction:column}.cc-window.cc-banner .cc-compliance{-ms-flex:1;flex:1}.cc-window.cc-floating{max-width:none}.cc-window .cc-message{margin-bottom:1em}.cc-window.cc-banner{-ms-flex-align:unset;align-items:unset}}
.cc-floating.cc-theme-classic{padding:1.2em;border-radius:5px}.cc-floating.cc-type-info.cc-theme-classic .cc-compliance{text-align:center;display:inline;-ms-flex:none;flex:none}.cc-theme-classic .cc-btn{border-radius:5px}.cc-theme-classic .cc-btn:last-child{min-width:140px}.cc-floating.cc-type-info.cc-theme-classic .cc-btn{display:inline-block}
.cc-theme-edgeless.cc-window{padding:0}.cc-floating.cc-theme-edgeless .cc-message{margin:2em 2em 1.5em}.cc-banner.cc-theme-edgeless .cc-btn{margin:0;padding:.8em 1.8em;height:100%}.cc-banner.cc-theme-edgeless .cc-message{margin-left:1em}.cc-floating.cc-theme-edgeless .cc-btn+.cc-btn{margin-left:0}
File added
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>
<json>
<![CDATA[
{
"fontFamily": "lg",
"majorVersion": 1,
"minorVersion": 0,
"fontURL": "https://github.com/sachinchoolur/lightGallery",
"copyright": "sachin",
"license": "MLT",
"licenseURL": "http://opensource.org/licenses/MIT",
"version": "Version 1.0",
"fontId": "lg",
"psName": "lg",
"subFamily": "Regular",
"fullName": "lg",
"description": "Font generated by IcoMoon."
}
]]>
</json>
</metadata>
<defs>
<font id="lg" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
<glyph unicode="&#xe01a;" glyph-name="pause_circle_outline" data-tags="pause_circle_outline" d="M554 256.667v340h86v-340h-86zM512 84.667q140 0 241 101t101 241-101 241-241 101-241-101-101-241 101-241 241-101zM512 852.667q176 0 301-125t125-301-125-301-301-125-301 125-125 301 125 301 301 125zM384 256.667v340h86v-340h-86z" />
<glyph unicode="&#xe01d;" glyph-name="play_circle_outline" data-tags="play_circle_outline" d="M512 84.667q140 0 241 101t101 241-101 241-241 101-241-101-101-241 101-241 241-101zM512 852.667q176 0 301-125t125-301-125-301-301-125-301 125-125 301 125 301 301 125zM426 234.667v384l256-192z" />
<glyph unicode="&#xe033;" glyph-name="stack-2" data-tags="stack-2" d="M384 853.334h426.667q53 0 90.5-37.5t37.5-90.5v-426.667q0-53-37.5-90.5t-90.5-37.5h-426.667q-53 0-90.5 37.5t-37.5 90.5v426.667q0 53 37.5 90.5t90.5 37.5zM170.667 675.334v-547.333q0-17.667 12.5-30.167t30.167-12.5h547.333q-13.333-37.667-46.333-61.5t-74.333-23.833h-426.667q-53 0-90.5 37.5t-37.5 90.5v426.667q0 41.333 23.833 74.333t61.5 46.333zM810.667 768h-426.667q-17.667 0-30.167-12.5t-12.5-30.167v-426.667q0-17.667 12.5-30.167t30.167-12.5h426.667q17.667 0 30.167 12.5t12.5 30.167v426.667q0 17.667-12.5 30.167t-30.167 12.5z" />
<glyph unicode="&#xe070;" glyph-name="clear" data-tags="clear" d="M810 664.667l-238-238 238-238-60-60-238 238-238-238-60 60 238 238-238 238 60 60 238-238 238 238z" />
<glyph unicode="&#xe094;" glyph-name="arrow-left" data-tags="arrow-left" d="M426.667 768q17.667 0 30.167-12.5t12.5-30.167q0-18-12.667-30.333l-225.667-225.667h665q17.667 0 30.167-12.5t12.5-30.167-12.5-30.167-30.167-12.5h-665l225.667-225.667q12.667-12.333 12.667-30.333 0-17.667-12.5-30.167t-30.167-12.5q-18 0-30.333 12.333l-298.667 298.667q-12.333 13-12.333 30.333t12.333 30.333l298.667 298.667q12.667 12.333 30.333 12.333z" />
<glyph unicode="&#xe095;" glyph-name="arrow-right" data-tags="arrow-right" d="M597.333 768q18 0 30.333-12.333l298.667-298.667q12.333-12.333 12.333-30.333t-12.333-30.333l-298.667-298.667q-12.333-12.333-30.333-12.333-18.333 0-30.5 12.167t-12.167 30.5q0 18 12.333 30.333l226 225.667h-665q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5h665l-226 225.667q-12.333 12.333-12.333 30.333 0 18.333 12.167 30.5t30.5 12.167z" />
<glyph unicode="&#xe0f2;" glyph-name="vertical_align_bottom" data-tags="vertical_align_bottom" d="M170 128.667h684v-86h-684v86zM682 384.667l-170-172-170 172h128v426h84v-426h128z" />
<glyph unicode="&#xe1ff;" glyph-name="apps" data-tags="apps" d="M682 84.667v172h172v-172h-172zM682 340.667v172h172v-172h-172zM426 596.667v172h172v-172h-172zM682 768.667h172v-172h-172v172zM426 340.667v172h172v-172h-172zM170 340.667v172h172v-172h-172zM170 84.667v172h172v-172h-172zM426 84.667v172h172v-172h-172zM170 596.667v172h172v-172h-172z" />
<glyph unicode="&#xe20c;" glyph-name="fullscreen" data-tags="fullscreen" d="M598 724.667h212v-212h-84v128h-128v84zM726 212.667v128h84v-212h-212v84h128zM214 512.667v212h212v-84h-128v-128h-84zM298 340.667v-128h128v-84h-212v212h84z" />
<glyph unicode="&#xe20d;" glyph-name="fullscreen_exit" data-tags="fullscreen_exit" d="M682 596.667h128v-84h-212v212h84v-128zM598 128.667v212h212v-84h-128v-128h-84zM342 596.667v128h84v-212h-212v84h128zM214 256.667v84h212v-212h-84v128h-128z" />
<glyph unicode="&#xe311;" glyph-name="zoom_in" data-tags="zoom_in" d="M512 512.667h-86v-86h-42v86h-86v42h86v86h42v-86h86v-42zM406 340.667q80 0 136 56t56 136-56 136-136 56-136-56-56-136 56-136 136-56zM662 340.667l212-212-64-64-212 212v34l-12 12q-76-66-180-66-116 0-197 80t-81 196 81 197 197 81 196-81 80-197q0-104-66-180l12-12h34z" />
<glyph unicode="&#xe312;" glyph-name="zoom_out" data-tags="zoom_out" d="M298 554.667h214v-42h-214v42zM406 340.667q80 0 136 56t56 136-56 136-136 56-136-56-56-136 56-136 136-56zM662 340.667l212-212-64-64-212 212v34l-12 12q-76-66-180-66-116 0-197 80t-81 196 81 197 197 81 196-81 80-197q0-104-66-180l12-12h34z" />
<glyph unicode="&#xe80d;" glyph-name="share" data-tags="share" d="M768 252.667c68 0 124-56 124-124s-56-126-124-126-124 58-124 126c0 10 0 20 2 28l-302 176c-24-22-54-34-88-34-70 0-128 58-128 128s58 128 128 128c34 0 64-12 88-34l300 174c-2 10-4 20-4 30 0 70 58 128 128 128s128-58 128-128-58-128-128-128c-34 0-64 14-88 36l-300-176c2-10 4-20 4-30s-2-20-4-30l304-176c22 20 52 32 84 32z" />
<glyph unicode="&#xe901;" glyph-name="facebook-with-circle" data-tags="facebook-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM628.429 612.659h-73.882c-8.755 0-18.483-11.52-18.483-26.829v-53.35h92.416l-13.978-76.083h-78.438v-228.403h-87.194v228.403h-79.104v76.083h79.104v44.749c0 64.205 44.544 116.378 105.677 116.378h73.882v-80.947z" />
<glyph unicode="&#xe902;" glyph-name="google-with-circle" data-tags="google+-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM483.686 249.805c-30.874-15.002-64.102-16.589-76.954-16.589-2.458 0-3.84 0-3.84 0s-1.178 0-2.765 0c-20.070 0-119.962 4.608-119.962 95.59 0 89.395 108.8 96.41 142.131 96.41h0.87c-19.251 25.702-15.258 51.61-15.258 51.61-1.69-0.102-4.147-0.205-7.168-0.205-12.544 0-36.762 1.997-57.549 15.411-25.498 16.384-38.4 44.288-38.4 82.893 0 109.107 119.142 113.51 120.32 113.613h118.989v-2.611c0-13.312-23.91-15.923-40.192-18.125-5.53-0.819-16.64-1.894-19.763-3.482 30.157-16.128 35.021-41.421 35.021-79.104 0-42.906-16.794-65.587-34.611-81.51-11.059-9.882-19.712-17.613-19.712-28.006 0-10.189 11.878-20.582 25.702-32.717 22.579-19.917 53.555-47.002 53.555-92.723 0-47.258-20.326-81.050-60.416-100.454zM742.4 460.8h-76.8v-76.8h-51.2v76.8h-76.8v51.2h76.8v76.8h51.2v-76.8h76.8v-51.2zM421.018 401.92c-2.662 0-5.325-0.102-8.038-0.307-22.733-1.69-43.725-10.189-58.88-24.013-15.053-13.619-22.733-30.822-21.658-48.179 2.304-36.403 41.37-57.702 88.832-54.323 46.694 3.379 77.824 30.31 75.571 66.714-2.15 34.202-31.898 60.109-75.827 60.109zM465.766 599.808c-12.39 43.52-32.358 56.422-63.386 56.422-3.328 0-6.707-0.512-9.933-1.382-13.466-3.84-24.166-15.053-30.106-31.744-6.093-16.896-6.451-34.509-1.229-54.579 9.472-35.891 34.97-61.901 60.672-61.901 3.379 0 6.758 0.41 9.933 1.382 28.109 7.885 45.722 50.79 34.048 91.802z" />
<glyph unicode="&#xe903;" glyph-name="pinterest-with-circle" data-tags="pinterest-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM545.638 344.32c-31.539 2.406-44.749 18.022-69.427 32.973-13.568-71.219-30.157-139.52-79.309-175.206-15.206 107.725 22.221 188.518 39.629 274.381-29.645 49.92 3.533 150.323 66.099 125.645 76.954-30.515-66.662-185.6 29.747-205.005 100.659-20.173 141.773 174.694 79.36 237.978-90.214 91.494-262.502 2.099-241.306-128.87 5.12-32 38.246-41.728 13.21-85.914-57.702 12.8-74.957 58.317-72.704 118.989 3.533 99.328 89.242 168.909 175.155 178.483 108.698 12.083 210.688-39.885 224.819-142.182 15.821-115.405-49.101-240.282-165.274-231.27z" />
<glyph unicode="&#xe904;" glyph-name="twitter-with-circle" data-tags="twitter-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM711.936 549.683c0.205-4.198 0.256-8.397 0.256-12.493 0-128-97.331-275.507-275.405-275.507-54.682 0-105.574 15.974-148.378 43.52 7.526-0.922 15.258-1.28 23.091-1.28 45.363 0 87.091 15.411 120.218 41.421-42.342 0.819-78.080 28.774-90.419 67.174 5.888-1.075 11.93-1.69 18.176-1.69 8.806 0 17.408 1.178 25.498 3.379-44.288 8.909-77.67 48.026-77.67 94.925v1.178c13.056-7.219 28.006-11.622 43.878-12.134-26.010 17.408-43.059 47.002-43.059 80.64 0 17.715 4.762 34.406 13.107 48.691 47.77-58.573 119.040-97.075 199.526-101.222-1.69 7.117-2.509 14.49-2.509 22.118 0 53.402 43.315 96.819 96.819 96.819 27.802 0 52.992-11.776 70.656-30.618 22.067 4.403 42.752 12.39 61.44 23.501-7.219-22.579-22.528-41.574-42.547-53.606 19.61 2.406 38.246 7.578 55.603 15.309-12.954-19.405-29.389-36.506-48.282-50.125z" />
</font></defs></svg>
File added
File added
green_deal/static/green_deal/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png

418 B

green_deal/static/green_deal/css/images/ui-bg_diagonals-thick_20_666666_40x40.png

312 B

green_deal/static/green_deal/css/images/ui-bg_flat_10_000000_40x100.png

205 B

green_deal/static/green_deal/css/images/ui-bg_glass_100_f6f6f6_1x400.png

262 B

green_deal/static/green_deal/css/images/ui-bg_glass_100_fdf5ce_1x400.png

348 B

green_deal/static/green_deal/css/images/ui-bg_glass_65_ffffff_1x400.png

207 B

green_deal/static/green_deal/css/images/ui-bg_gloss-wave_35_f6a828_500x100.png

5.68 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment