Skip to content
Snippets Groups Projects
Commit d00ee859 authored by Karl Hasselbring's avatar Karl Hasselbring
Browse files

Privacy styles are now less compiled

parent 683864e3
No related branches found
No related tags found
2 merge requests!1356Development,!1350Resolve "CSS Dateien aufräumen/zusammenfassen/verallgemeinern/..."
......@@ -9,6 +9,7 @@
@import "./pages/donation.less";
@import "./pages/help_faq.less";
@import "./pages/language.less";
@import "./pages/privacy.less";
@import "./pages/resultpage.less";
@import "./pages/start-page.less";
@import "./pages/widget.less";
......
.privacy {
main {
font-size: 10pt;
hyphens: auto;
counter-reset: kontext 0 datum 0;
text-align: justify;
}
h1 {
font-size: 18pt;
}
.kontext>h1::before {
counter-increment: kontext;
content: "K" counter(kontext) " ";
font-weight: normal;
}
.datum>h1::before {
counter-increment: datum;
content: "D" counter(datum) " ";
font-weight: normal;
}
.kontext h1 {
font-size: 16pt;
margin-bottom: inherit;
}
.kontext h2 {
font-size: 14pt;
margin-bottom: inherit;
}
.datum h1 {
font-size: 12pt;
margin-bottom: inherit;
}
.datum h2 {
font-size: 11pt;
margin-bottom: inherit;
margin-top: 5pt;
}
.kontext-list {
list-style: none;
}
.datum-list {
list-style: none;
}
samp {
hyphens: none;
font-size: 8pt;
}
}
\ No newline at end of file
@extends('layouts.subPages')
@extends('layouts.subPages', ['page' => 'privacy'])
@section('title', $title )
@section('navbarFocus.datenschutz', 'class="active"')
@section('content')
<style>
main {
font-size: 10pt;
hyphens:auto;
counter-reset: kontext 0 datum 0;
text-align: justify;
}
h1 {
font-size: 18pt;
}
.kontext > h1::before {
counter-increment: kontext;
content: "K" counter(kontext) " ";
font-weight: normal;
}
.datum > h1::before {
counter-increment: datum;
content: "D" counter(datum) " ";
font-weight: normal;
}
.kontext h1 {
font-size: 16pt;
margin-bottom: inherit;
}
.kontext h2 {
font-size: 14pt;
margin-bottom: inherit;
}
.datum h1 {
font-size: 12pt;
margin-bottom: inherit;
}
.datum h2 {
font-size: 11pt;
margin-bottom: inherit;
margin-top: 5pt;
}
.kontext-list {
list-style: none;
}
.datum-list {
list-style: none;
}
samp {
hyphens:none;
font-size: 8pt;
}
</style>
@if (LaravelLocalization::getCurrentLocale() == "de")
@include('datenschutz.german')
@else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment