2025-06-20 17:07:03 +02:00
|
|
|
@use "sass:map";
|
|
|
|
|
|
2019-11-12 20:18:02 +01:00
|
|
|
// Root
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
html {
|
|
|
|
|
// height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Sections
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
// body
|
|
|
|
|
// article
|
|
|
|
|
// section
|
|
|
|
|
// nav
|
|
|
|
|
// aside
|
|
|
|
|
// h1-h6
|
|
|
|
|
// header
|
|
|
|
|
// footer
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Body
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
body {
|
|
|
|
|
position: relative;
|
|
|
|
|
box-sizing: $box_sizing;
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-family: $family_text_basic;
|
|
|
|
|
font-size: $size_text_basic;
|
|
|
|
|
line-height: $line_text_basic;
|
|
|
|
|
color: $color_text_basic;
|
|
|
|
|
background-color: $color_back_basic;
|
|
|
|
|
|
|
|
|
|
*,
|
|
|
|
|
::before,
|
|
|
|
|
::after {
|
|
|
|
|
box-sizing: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
.mouse_over {
|
|
|
|
|
background-color: transparent !important;
|
2025-05-18 11:12:00 +02:00
|
|
|
transition: background-color $duration_basic $timing_basic 0s !important;
|
2019-11-12 20:18:02 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Article
|
|
|
|
|
// -----------------------------------------------------------------------------
|
2025-05-18 11:12:00 +02:00
|
|
|
article {}
|
2019-11-12 20:18:02 +01:00
|
|
|
|
|
|
|
|
// Section
|
|
|
|
|
// -----------------------------------------------------------------------------
|
2025-05-18 11:12:00 +02:00
|
|
|
section {}
|
2019-11-12 20:18:02 +01:00
|
|
|
|
|
|
|
|
.sec_main_center {
|
|
|
|
|
width: $width_basic;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding-top: $space_small;
|
|
|
|
|
|
|
|
|
|
@include forTabletPortraitUp {
|
|
|
|
|
width: $width_small;
|
|
|
|
|
}
|
2025-05-18 11:12:00 +02:00
|
|
|
|
2019-11-12 20:18:02 +01:00
|
|
|
@include forTabletLandscapeUp {
|
|
|
|
|
width: $width_medium;
|
|
|
|
|
}
|
2025-05-18 11:12:00 +02:00
|
|
|
|
2019-11-12 20:18:02 +01:00
|
|
|
@include forBigDesktopUp {
|
|
|
|
|
width: $width_large;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sec_main_status {
|
|
|
|
|
border-top-width: $width_border_8;
|
|
|
|
|
border-top-style: solid;
|
|
|
|
|
border-color: $color_border_basic;
|
|
|
|
|
padding-top: $space_small;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Navigation
|
|
|
|
|
// -----------------------------------------------------------------------------
|
2025-06-20 17:07:03 +02:00
|
|
|
nav {
|
|
|
|
|
|
|
|
|
|
ul {
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
|
|
&.inline li {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-11-12 20:18:02 +01:00
|
|
|
|
|
|
|
|
// Aside element
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
aside {
|
|
|
|
|
width: $width_aside_basic;
|
|
|
|
|
|
2025-05-18 11:12:00 +02:00
|
|
|
&.right+.bside {
|
2019-11-12 20:18:02 +01:00
|
|
|
margin-right: calc(#{$width_aside_basic} + #{$space_basic});
|
|
|
|
|
}
|
|
|
|
|
|
2025-05-18 11:12:00 +02:00
|
|
|
&.left+.bside {
|
2019-11-12 20:18:02 +01:00
|
|
|
margin-left: calc(#{$width_aside_basic} + #{$space_basic});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.right {
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.left {
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
2025-06-20 17:07:03 +02:00
|
|
|
|
|
|
|
|
&.io {
|
|
|
|
|
|
|
|
|
|
input,
|
|
|
|
|
textarea,
|
|
|
|
|
select,
|
|
|
|
|
button {
|
|
|
|
|
display: block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input {
|
|
|
|
|
@extend .input_io;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
|
@extend .io_textarea;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
select {
|
|
|
|
|
@extend .io_select;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button {
|
|
|
|
|
@extend .button_io;
|
|
|
|
|
}
|
2025-06-22 15:48:01 +02:00
|
|
|
|
|
|
|
|
.a_button {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul.vertical li {
|
|
|
|
|
margin-bottom: $space_half;
|
|
|
|
|
|
2025-06-22 17:41:31 +02:00
|
|
|
.a_button>i:last-child {
|
2025-06-22 15:48:01 +02:00
|
|
|
margin-left: auto;
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-06-20 17:07:03 +02:00
|
|
|
}
|
2019-11-12 20:18:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Headings
|
|
|
|
|
// -----------------------------------------------------------------------------
|
2025-05-18 11:12:00 +02:00
|
|
|
h1,
|
|
|
|
|
h2,
|
|
|
|
|
h3,
|
|
|
|
|
h4,
|
|
|
|
|
h5,
|
|
|
|
|
h6 {
|
2019-11-12 20:18:02 +01:00
|
|
|
@extend %head_all;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
|
@extend %head_1;
|
|
|
|
|
margin: $space_large 0 $space_small;
|
|
|
|
|
}
|
|
|
|
|
|
2025-05-18 11:12:00 +02:00
|
|
|
h1+h1 {
|
2019-11-12 20:18:02 +01:00
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
|
@extend %head_2;
|
|
|
|
|
margin: $space_medium 0 $space_small;
|
|
|
|
|
}
|
|
|
|
|
|
2025-05-18 11:12:00 +02:00
|
|
|
h2+h2 {
|
2019-11-12 20:18:02 +01:00
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
|
@extend %head_3;
|
|
|
|
|
margin: $space_double 0;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
|
@extend %head_3;
|
|
|
|
|
margin: $space_double 0;
|
|
|
|
|
text-transform: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h5 {
|
|
|
|
|
@extend %head_4;
|
|
|
|
|
margin: $space_double 0 $space_basic;
|
|
|
|
|
text-transform: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h6 {
|
|
|
|
|
@extend %basic;
|
|
|
|
|
margin: $space_basic 0;
|
|
|
|
|
text-transform: none;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Header
|
|
|
|
|
// -----------------------------------------------------------------------------
|
2025-06-22 15:48:01 +02:00
|
|
|
header {
|
2025-06-20 17:07:03 +02:00
|
|
|
&.io {
|
2025-06-22 15:48:01 +02:00
|
|
|
z-index: map.get($z-indexes, "content-top");
|
2025-06-20 17:07:03 +02:00
|
|
|
|
2025-06-22 15:48:01 +02:00
|
|
|
&>*:last-child *:last-child {
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
}
|
2025-06-19 16:43:32 +02:00
|
|
|
|
2025-06-22 15:48:01 +02:00
|
|
|
&>*:first-child *:first-child {
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
}
|
2025-06-19 16:43:32 +02:00
|
|
|
|
2025-06-22 15:48:01 +02:00
|
|
|
nav,
|
|
|
|
|
ul {
|
|
|
|
|
@extend %flex-inline;
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
}
|
2025-06-19 16:43:32 +02:00
|
|
|
|
2025-06-22 15:48:01 +02:00
|
|
|
nav:last-child {
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
}
|
2025-06-19 16:43:32 +02:00
|
|
|
|
2025-06-22 15:48:01 +02:00
|
|
|
h1 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
2025-06-19 16:43:32 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-22 15:48:01 +02:00
|
|
|
.header_page {
|
|
|
|
|
overflow: auto;
|
2025-06-20 17:07:03 +02:00
|
|
|
}
|
|
|
|
|
|
2025-06-22 15:48:01 +02:00
|
|
|
.header_txt {
|
|
|
|
|
margin-bottom: $space_small;
|
|
|
|
|
border-bottom: $border_dotted;
|
2025-06-20 17:07:03 +02:00
|
|
|
|
|
|
|
|
h1 {
|
2025-06-22 15:48:01 +02:00
|
|
|
border-top: $border_basic;
|
2025-06-20 17:07:03 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-22 15:57:14 +02:00
|
|
|
// Footer
|
2019-11-12 20:18:02 +01:00
|
|
|
// -----------------------------------------------------------------------------
|
2025-06-20 17:07:03 +02:00
|
|
|
footer {
|
|
|
|
|
&.io {
|
2025-06-22 15:57:14 +02:00
|
|
|
nav {
|
|
|
|
|
@extend %flex-inline;
|
|
|
|
|
align-items: stretch;
|
2025-06-20 17:07:03 +02:00
|
|
|
|
2025-06-22 17:41:31 +02:00
|
|
|
input,
|
|
|
|
|
select,
|
|
|
|
|
button,
|
|
|
|
|
span,
|
|
|
|
|
div:not(.spacer) {
|
|
|
|
|
padding: 0 $space_half !important;
|
|
|
|
|
}
|
2025-06-20 17:07:03 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|