2022-04-06 19:09:42 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
========================================================================
|
|
|
|
Description : CSS stylesheet
|
2022-04-06 19:49:03 +02:00
|
|
|
Author : echolib & neox
|
2022-04-10 16:24:05 +02:00
|
|
|
Website : https://chalec.org
|
2022-04-06 19:49:03 +02:00
|
|
|
License : AGPL
|
2022-04-06 19:09:42 +02:00
|
|
|
========================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================================================================
|
|
|
|
ROOT VARIABLES DOCUMENT
|
|
|
|
========================================================================
|
|
|
|
*/
|
|
|
|
:root {
|
2022-04-10 16:24:05 +02:00
|
|
|
--chalec_blue: #00bdff;
|
|
|
|
--chalec_red: #b11107;
|
|
|
|
--chalec_yellow: #ecb41a;
|
|
|
|
--chalec_black: #2d3842;
|
2022-04-10 17:59:09 +02:00
|
|
|
--chalec_white: #ffffff;
|
2022-04-06 19:09:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================================================================
|
|
|
|
Reset all:
|
|
|
|
- Inherited properties to inherit value
|
|
|
|
- Non-inherited properties to initial value
|
|
|
|
========================================================================
|
|
|
|
*/
|
|
|
|
* {
|
|
|
|
all: unset;
|
|
|
|
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
|
|
|
|
-moz-box-sizing: border-box; /* Firefox, other Gecko */
|
|
|
|
box-sizing: border-box; /* Opera/IE 8+ */
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================================================================
|
|
|
|
Foundations
|
|
|
|
========================================================================
|
|
|
|
*/
|
|
|
|
title {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2022-04-10 16:24:05 +02:00
|
|
|
color: var(--chalec_black);
|
|
|
|
background: var(--chalec_white);
|
2022-04-06 19:09:42 +02:00
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 100%;
|
|
|
|
text-align: justify;
|
|
|
|
text-justify: auto;
|
2022-04-10 16:24:05 +02:00
|
|
|
background: var(--chalec_white);
|
2022-04-06 19:09:42 +02:00
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
section#chalec_page-wrapper {
|
2022-04-06 19:09:42 +02:00
|
|
|
display: flex;
|
|
|
|
margin: 0 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
article,
|
|
|
|
aside {
|
|
|
|
margin: 7px;
|
2022-04-10 16:24:05 +02:00
|
|
|
background-color: var(--chalec_white);
|
2022-04-06 19:09:42 +02:00
|
|
|
background-repeat: repeat;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
article {
|
|
|
|
flex-basis: 70%;
|
|
|
|
}
|
|
|
|
|
|
|
|
aside {
|
|
|
|
margin: 10px;
|
|
|
|
flex-basis: 30%;
|
|
|
|
}
|
|
|
|
|
2022-04-07 12:34:23 +02:00
|
|
|
|
2022-04-06 19:09:42 +02:00
|
|
|
/*
|
|
|
|
========================================================================
|
|
|
|
HEADER / BANNER
|
|
|
|
========================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
header {
|
2022-04-10 17:50:02 +02:00
|
|
|
background: #e0f0ff; /* old IE fallback */
|
2022-04-06 19:09:42 +02:00
|
|
|
|
|
|
|
background-attachment: fixed, scroll;
|
2022-04-10 17:50:02 +02:00
|
|
|
background-image: url(../templates/electronic.png);
|
|
|
|
background-position: 0 0;
|
|
|
|
background-repeat: repeat;
|
|
|
|
background-size: auto;
|
2022-04-06 19:09:42 +02:00
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
#chalec_banner,
|
|
|
|
#chalec_footer {
|
2022-04-06 19:09:42 +02:00
|
|
|
display: flex;
|
|
|
|
height: 300px;
|
|
|
|
width: 100%;
|
|
|
|
padding: 20px 25px;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
#chalec_site-logo img {
|
2022-04-06 19:09:42 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: start;
|
|
|
|
width: 160px;
|
|
|
|
height: 160px;
|
|
|
|
place-content: baseline center;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
#chalec_site-logo a {
|
2022-04-06 19:09:42 +02:00
|
|
|
background-color: unset;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
#chalec_site-titles {
|
2022-04-06 19:09:42 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: start;
|
|
|
|
place-content: baseline center;
|
|
|
|
padding: 20px
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
#chalec_site-titles h2 {
|
2022-04-06 19:09:42 +02:00
|
|
|
font-weight: normal;
|
2022-04-10 17:50:02 +02:00
|
|
|
color: var(--chalec_red);
|
2022-04-06 19:09:42 +02:00
|
|
|
font-size: 130%;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
#chalec_site-name a {
|
2022-04-10 17:50:02 +02:00
|
|
|
color: var(--chalec_yellow);
|
2022-04-06 19:09:42 +02:00
|
|
|
font-weight: bold;
|
|
|
|
font-size: 240%;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
#chalec_site-name a:hover {
|
2022-04-06 19:09:42 +02:00
|
|
|
font-size: 280%;
|
|
|
|
background-color: unset;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================================================================
|
|
|
|
FOOTER
|
|
|
|
========================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
footer {
|
2022-04-10 17:59:09 +02:00
|
|
|
background: #e0f0ff; /* old IE fallback */
|
2022-04-07 11:21:44 +02:00
|
|
|
|
|
|
|
background-attachment: fixed, scroll;
|
2022-04-10 17:59:09 +02:00
|
|
|
background-image: url(../templates/electronic.png);
|
|
|
|
background-position: 0 0;
|
|
|
|
background-repeat: repeat;
|
|
|
|
background-size: auto;
|
2022-04-06 19:09:42 +02:00
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
#chalec_footer h1 {
|
2022-04-06 19:09:42 +02:00
|
|
|
font-size: 130%;
|
2022-04-10 17:59:09 +02:00
|
|
|
color: var(--chalec_yellow);
|
2022-04-06 19:09:42 +02:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
#chalec_footer {
|
2022-04-10 17:59:09 +02:00
|
|
|
color: var(--chalec_black);;
|
2022-04-06 19:09:42 +02:00
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
#chalec_footer a {
|
2022-04-10 17:59:09 +02:00
|
|
|
color: var(--chalec_blue);
|
2022-04-06 19:09:42 +02:00
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
#chalec_footer a:hover {
|
2022-04-10 17:59:09 +02:00
|
|
|
color: #fff;
|
2022-04-06 19:09:42 +02:00
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
#chalec_footer b {
|
2022-04-10 17:59:09 +02:00
|
|
|
color: var(--chalec_red);
|
2022-04-06 19:09:42 +02:00
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
div#chalec_copyright {
|
2022-04-06 19:09:42 +02:00
|
|
|
font-size: 90%;
|
|
|
|
flex-basis: 25%;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
div#chalec_infos {
|
2022-04-06 19:09:42 +02:00
|
|
|
flex-basis: 75%;
|
|
|
|
font-size: 105%;
|
|
|
|
}
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_list-cr {
|
2022-04-06 19:09:42 +02:00
|
|
|
display: block;
|
|
|
|
margin: 0 0 5px 25px;
|
|
|
|
}
|
|
|
|
|
2022-04-06 23:57:28 +02:00
|
|
|
/*
|
|
|
|
========================================================================
|
|
|
|
SIDEBAR
|
|
|
|
========================================================================
|
|
|
|
*/
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_latest-posts {
|
|
|
|
color: var(--chalec_yellow);
|
2022-04-07 11:10:20 +02:00
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_list-post-title {
|
2022-04-06 23:57:28 +02:00
|
|
|
display: block;
|
|
|
|
padding: 15px;
|
2022-04-10 16:24:05 +02:00
|
|
|
background-color: var(--chalec_yellow);
|
|
|
|
color: var(--chalec_white);
|
2022-04-06 23:57:28 +02:00
|
|
|
font-weight: bold;
|
|
|
|
padding: 10px;
|
|
|
|
margin: 10px 0px 0px 0px;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_list-post-metas {
|
2022-04-06 23:57:28 +02:00
|
|
|
display: block;
|
|
|
|
padding: 15px;
|
2022-04-07 00:01:39 +02:00
|
|
|
background-color: #FDF1B8;
|
2022-04-10 16:24:05 +02:00
|
|
|
color: var(--chalec_red);;
|
2022-04-06 23:57:28 +02:00
|
|
|
font-size: 80%;
|
|
|
|
padding: 10px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_list-post-info {
|
2022-04-06 23:57:28 +02:00
|
|
|
display: block;
|
2022-04-10 16:24:05 +02:00
|
|
|
color: var(--chalec_black);
|
2022-04-06 23:57:28 +02:00
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2022-04-06 19:09:42 +02:00
|
|
|
/*
|
|
|
|
========================================================================
|
|
|
|
ARTICLE
|
|
|
|
========================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Sticky Author Date
|
|
|
|
*/
|
2022-04-10 16:24:05 +02:00
|
|
|
#chalec_metas {
|
2022-04-06 19:09:42 +02:00
|
|
|
display: block;
|
2022-04-10 16:24:05 +02:00
|
|
|
background-color: var(--chalec_yellow);
|
2022-04-06 19:09:42 +02:00
|
|
|
position: relative;
|
|
|
|
text-align: left;
|
|
|
|
float: right;
|
|
|
|
top: -10px;
|
|
|
|
right: 10px;
|
|
|
|
padding: 5px;
|
|
|
|
font-size: 82%;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Basic texts
|
|
|
|
*/
|
|
|
|
strong {
|
|
|
|
color: #454545;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
b {
|
|
|
|
color: #676767;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
i {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
abbr {
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Lists
|
|
|
|
*/
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_post-content li {
|
2022-04-06 19:09:42 +02:00
|
|
|
padding: 3px 0;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_list-1 {
|
2022-04-06 19:09:42 +02:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_list-2 {
|
2022-04-06 19:09:42 +02:00
|
|
|
display: block;
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_list-3 {
|
2022-04-06 19:09:42 +02:00
|
|
|
display: block;
|
|
|
|
margin-left: 40px;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_list-1::before,
|
|
|
|
.chalec_list-2::before,
|
|
|
|
.chalec_list-3::before {
|
2022-04-06 19:09:42 +02:00
|
|
|
display: inline-block;
|
|
|
|
content: "\2022";
|
|
|
|
width: 10px;
|
|
|
|
padding-left: 15px;
|
|
|
|
margin-right: 5px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_list-1::before {
|
|
|
|
color: var(--chalec_red);
|
2022-04-06 19:09:42 +02:00
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_list-2::before {
|
|
|
|
color: var(--chalec_blue);
|
2022-04-06 19:09:42 +02:00
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_list-3::before {
|
|
|
|
color: var(--chalec_yellow);
|
2022-04-06 19:09:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Blockquotes
|
|
|
|
*/
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_fgc-quote,
|
|
|
|
.chalec_quote,
|
|
|
|
.chalec_simple-quote {
|
2022-04-06 19:09:42 +02:00
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_quote,
|
|
|
|
.chalec_simple-quote {
|
2022-04-06 19:09:42 +02:00
|
|
|
|
|
|
|
display: block;
|
|
|
|
font-style: italic;
|
|
|
|
margin: 25px 0px 0px 0px;
|
2022-04-10 16:24:05 +02:00
|
|
|
color: var(--chalec_black);
|
2022-04-06 19:09:42 +02:00
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_paragraph-2 {
|
2022-04-07 11:02:50 +02:00
|
|
|
display: block;
|
|
|
|
margin: 30px;
|
2022-04-06 19:09:42 +02:00
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_quote p::before,
|
|
|
|
.chalec_simple-quote p::before {
|
|
|
|
color: var(--chalec_blue);
|
2022-04-06 19:09:42 +02:00
|
|
|
content: "“";
|
|
|
|
font-size: 3rem;
|
2022-04-07 11:02:50 +02:00
|
|
|
margin-left: -30px;
|
|
|
|
margin-bottom: -30px;
|
|
|
|
display: block;
|
2022-04-06 19:09:42 +02:00
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_quote p::after,
|
|
|
|
.chalec_simple-quote p::after {
|
|
|
|
color: var(--chalec_blue);
|
2022-04-06 19:09:42 +02:00
|
|
|
content: "„";
|
|
|
|
font-size: 3rem;
|
2022-04-07 11:05:32 +02:00
|
|
|
margin-right: -30px;
|
2022-04-07 11:02:50 +02:00
|
|
|
margin-top: -35px;
|
|
|
|
display: block;
|
|
|
|
text-align: right;
|
|
|
|
}
|
2022-04-06 19:09:42 +02:00
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_fgc-quote {
|
2022-04-06 19:09:42 +02:00
|
|
|
display: block;
|
2022-04-07 11:19:31 +02:00
|
|
|
margin: -20px 0px 20px 0px;
|
2022-04-06 19:09:42 +02:00
|
|
|
text-align: right;
|
|
|
|
padding-bottom: 3px;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_simple-quote {
|
2022-04-06 19:09:42 +02:00
|
|
|
padding-bottom: 3px;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_fgc-quote a {
|
|
|
|
background-color: var(--chalec_yellow);
|
2022-04-06 19:09:42 +02:00
|
|
|
padding: 4px;
|
2022-04-10 16:24:05 +02:00
|
|
|
color: var(--chalec_black);
|
2022-04-06 19:09:42 +02:00
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_fgc-quote a:hover {
|
2022-04-06 19:09:42 +02:00
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Block-Codes
|
|
|
|
*/
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_block-code {
|
2022-04-06 19:09:42 +02:00
|
|
|
display: block;
|
|
|
|
padding: 15px;
|
|
|
|
margin: 10px 30px 15px 10px;
|
|
|
|
background-color: #000;
|
|
|
|
color: #fff;
|
|
|
|
font-size: 88%;
|
|
|
|
padding: 10px;
|
|
|
|
margin: 30px 30px 30px 10px;
|
2022-04-10 16:24:05 +02:00
|
|
|
border: 3px solid var(--chalec_blue);
|
2022-04-06 19:09:42 +02:00
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Inline-Codes
|
|
|
|
*/
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_inline-code {
|
2022-04-06 19:09:42 +02:00
|
|
|
display: inline-block;
|
|
|
|
background-color: #000;
|
|
|
|
padding: 0 5px;
|
|
|
|
font-size: 89%;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Links
|
|
|
|
*/
|
|
|
|
a {
|
2022-04-10 16:24:05 +02:00
|
|
|
color: var(--chalec_red);
|
2022-04-06 19:09:42 +02:00
|
|
|
padding: 0 2px;
|
|
|
|
font-weight: bold;
|
|
|
|
-webkit-transition: all 0.25s ease-out;
|
|
|
|
-moz-transition: all 0.25s ease-out;
|
|
|
|
transition: all 0.25s ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
padding: 0 2px;
|
2022-04-10 16:24:05 +02:00
|
|
|
background-color: var(--chalec_blue);
|
2022-04-06 19:09:42 +02:00
|
|
|
color: #000;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
cursor: progress;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
a.chalec_file-link {
|
2022-04-06 19:09:42 +02:00
|
|
|
background-color: #FFF;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
a.chalec_file-link:hover {
|
|
|
|
background-color: var(--chalec_yellow);
|
2022-04-06 19:09:42 +02:00
|
|
|
color: #000;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Paragraphs
|
|
|
|
*/
|
2022-04-10 16:24:05 +02:00
|
|
|
p.chalec_paragraph {
|
2022-04-06 19:09:42 +02:00
|
|
|
display: block;
|
2022-04-07 00:06:30 +02:00
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
2022-04-06 19:09:42 +02:00
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
div.chalec_content-p1{
|
2022-04-06 19:09:42 +02:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
div.chalec_content-p2{
|
2022-04-06 19:09:42 +02:00
|
|
|
display: block;
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
div.chalec_content-p3{
|
2022-04-06 19:09:42 +02:00
|
|
|
display: block;
|
|
|
|
margin-left: 35px;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
div.chalec_content-p4{
|
2022-04-06 19:09:42 +02:00
|
|
|
display: block;
|
|
|
|
margin-left: 45px;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
div.chalec_content-p5{
|
2022-04-06 19:09:42 +02:00
|
|
|
display: block;
|
|
|
|
margin-left: 55px;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
div.chalec_content-p6{
|
2022-04-06 19:09:42 +02:00
|
|
|
display: block;
|
|
|
|
margin-left: 65px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================================================================
|
|
|
|
HEADINGS
|
|
|
|
========================================================================
|
|
|
|
*/
|
|
|
|
h1,h2,h3,h4,h5,h6 {
|
|
|
|
display: inline-block;
|
|
|
|
color: #000;
|
|
|
|
font-weight: bold;
|
2022-04-07 12:34:23 +02:00
|
|
|
text-align: center;
|
2022-04-06 19:09:42 +02:00
|
|
|
}
|
|
|
|
h1 {
|
|
|
|
font-size: 130%;
|
|
|
|
margin-top: 30px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
h2 {
|
|
|
|
font-size: 125%;
|
|
|
|
margin-left: 30px;
|
|
|
|
margin-top: 30px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
h3 {
|
|
|
|
font-size: 120%;
|
|
|
|
margin-left: 40px;
|
|
|
|
margin-top: 30px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
h4 {
|
|
|
|
font-size: 115%;
|
|
|
|
margin-left: 50px;
|
|
|
|
}
|
|
|
|
h5 {
|
|
|
|
font-size: 110%;
|
|
|
|
margin-left: 60px;
|
|
|
|
}
|
|
|
|
h6 {
|
|
|
|
font-size: 105%;
|
|
|
|
margin-left: 75px;
|
|
|
|
}
|
2022-04-06 23:57:28 +02:00
|
|
|
|
2022-04-07 13:16:09 +02:00
|
|
|
/*
|
|
|
|
========================================================================
|
|
|
|
LITTLE SCREENS
|
|
|
|
========================================================================
|
|
|
|
*/
|
|
|
|
@media screen and (max-width: 700px) {
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
section#chalec_page-wrapper {
|
2022-04-07 13:16:09 +02:00
|
|
|
display: block;
|
|
|
|
margin: 0 25px;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
aside#chalec_sidebar {
|
2022-04-07 13:16:09 +02:00
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
.chalec_latest-posts {
|
2022-04-07 13:16:09 +02:00
|
|
|
margin-left: -35px;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
div#chalec_metas {
|
2022-04-07 13:16:09 +02:00
|
|
|
margin: 10px -10px 0px 0px;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
article#chalec_index {
|
2022-04-07 13:16:09 +02:00
|
|
|
margin-left: -10px;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
#chalec_footer {
|
2022-04-07 13:16:09 +02:00
|
|
|
display: block;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
#chalec_footer .chalec_paragraph{
|
2022-04-07 13:16:09 +02:00
|
|
|
margin-bottom: 30px;
|
|
|
|
font-size: 80%;
|
2022-04-10 16:24:05 +02:00
|
|
|
border: 2px solid var(--chalec_blue);
|
2022-04-07 13:16:09 +02:00
|
|
|
border-top : unset;
|
|
|
|
border-left: unset;
|
|
|
|
border-right: unset;
|
|
|
|
padding: 15px;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
#chalec_footer h1 {
|
2022-04-07 13:16:09 +02:00
|
|
|
margin-top: 10px;
|
|
|
|
font-size: 115%;
|
|
|
|
padding: 15px;
|
|
|
|
margin-bottom: -20px;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
#chalec_footer li {
|
2022-04-07 13:16:09 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
#chalec_banner,
|
|
|
|
#chalec_footer {
|
2022-04-07 13:16:09 +02:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
#chalec_site-logo img {
|
2022-04-07 13:16:09 +02:00
|
|
|
all: unset;
|
|
|
|
display: inline-block;
|
|
|
|
float: left;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 35%;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
#chalec_site-titles {
|
2022-04-07 13:16:09 +02:00
|
|
|
all: unset;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
#chalec_site-name a {
|
2022-04-07 13:16:09 +02:00
|
|
|
margin-top: -30px;
|
|
|
|
margin-bottom: -20px;
|
|
|
|
position: relative;
|
|
|
|
float: left;
|
2022-04-07 13:22:45 +02:00
|
|
|
font-size: 3rem;
|
2022-04-07 13:16:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
#chalec_site-name a:hover {
|
2022-04-07 13:16:09 +02:00
|
|
|
margin-top: -30px;
|
|
|
|
margin-bottom: -20px;
|
|
|
|
position: relative;
|
|
|
|
float: left;
|
|
|
|
font-size: 3rem;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:24:05 +02:00
|
|
|
#chalec_site-description {
|
2022-04-07 13:16:09 +02:00
|
|
|
all: unset;
|
|
|
|
margin-top: 15px;
|
|
|
|
position: relative;
|
|
|
|
float: left;
|
|
|
|
font-size: 1rem;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2022-04-10 17:59:09 +02:00
|
|
|
}
|