2022-03-23 10:06:37 +01:00
|
|
|
/**
|
|
|
|
* SETTINGS
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* COMPONENTS
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* BACKGROUND
|
|
|
|
*/
|
|
|
|
.bg-primary {
|
2023-07-19 12:29:44 +02:00
|
|
|
background-color: #03a9f4;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.bg-dark {
|
2023-07-19 12:29:44 +02:00
|
|
|
background-color: #18232f;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.bg-secondary {
|
2023-07-19 12:29:44 +02:00
|
|
|
background-color: #e91e63;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.bg-white {
|
2023-07-19 12:29:44 +02:00
|
|
|
background-color: #fff;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.bg-success {
|
2023-07-19 12:29:44 +02:00
|
|
|
background-color: #4caf50;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.bg-info {
|
2023-07-19 12:29:44 +02:00
|
|
|
background-color: #5bc0de;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.bg-warning {
|
2023-07-19 12:29:44 +02:00
|
|
|
background-color: #f0ad4e;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.bg-error {
|
2023-07-19 12:29:44 +02:00
|
|
|
background-color: #e74c3c;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.bg-gray {
|
2023-07-19 12:29:44 +02:00
|
|
|
background-color: #969da6;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.bg-gray-light {
|
2023-07-19 12:29:44 +02:00
|
|
|
background-color: #eceff1;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* BORDER
|
|
|
|
*/
|
|
|
|
.border {
|
2023-07-19 12:29:44 +02:00
|
|
|
border: 1px solid #d5d9db;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.border-bottom {
|
2023-07-19 12:29:44 +02:00
|
|
|
border-bottom: 1px solid #d5d9db;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.border-left {
|
2023-07-19 12:29:44 +02:00
|
|
|
border-left: 1px solid #d5d9db;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.border-right {
|
2023-07-19 12:29:44 +02:00
|
|
|
border-right: 1px solid #d5d9db;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.border-top {
|
2023-07-19 12:29:44 +02:00
|
|
|
border-top: 1px solid #d5d9db;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ALIGNERS
|
|
|
|
*/
|
|
|
|
.aligner {
|
2023-07-19 12:29:44 +02:00
|
|
|
display: flex;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.aligner--spaceBetween {
|
|
|
|
justify-content: space-between;
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.aligner--spaceAround {
|
|
|
|
justify-content: space-around;
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.aligner--centerVertical {
|
2023-07-19 12:29:44 +02:00
|
|
|
align-items: center;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.aligner--centerHoritzontal {
|
2023-07-19 12:29:44 +02:00
|
|
|
justify-content: center;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.aligner--contentStart {
|
2023-07-19 12:29:44 +02:00
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.aligner--contentEnd {
|
2023-07-19 12:29:44 +02:00
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.aligner--itemTop {
|
2023-07-19 12:29:44 +02:00
|
|
|
align-self: flex-start;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.aligner--itemBottom {
|
2023-07-19 12:29:44 +02:00
|
|
|
align-self: flex-end;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.flex-grow,
|
|
|
|
.aligner--grow {
|
2023-07-19 12:29:44 +02:00
|
|
|
flex-grow: 1;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* FLOATS
|
|
|
|
*/
|
|
|
|
.fleft {
|
2023-07-19 12:29:44 +02:00
|
|
|
float: left;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.fright {
|
2023-07-19 12:29:44 +02:00
|
|
|
float: right;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.clearfix ::after {
|
|
|
|
clear: both;
|
2023-07-19 12:29:44 +02:00
|
|
|
content: "";
|
|
|
|
display: table;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* MARGINS
|
|
|
|
*/
|
|
|
|
.m-xsmall {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin: 4px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.mb-xsmall {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.m-small {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin: 8px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.mb-small {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.m-medium {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin: 16px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.mb-medium {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.m-big {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin: 36px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.mb-big {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-bottom: 36px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.m-huge {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin: 48px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.mb-huge {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-bottom: 48px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.m-none {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin: 0 !important;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* PADDINGS
|
|
|
|
*/
|
|
|
|
.p-small {
|
2023-07-19 12:29:44 +02:00
|
|
|
padding: 4px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.pb-small {
|
2023-07-19 12:29:44 +02:00
|
|
|
padding-bottom: 4px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.p-medium {
|
2023-07-19 12:29:44 +02:00
|
|
|
padding: 8px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.pb-medium {
|
2023-07-19 12:29:44 +02:00
|
|
|
padding-bottom: 8px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.p-big {
|
2023-07-19 12:29:44 +02:00
|
|
|
padding: 16px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.pb-big {
|
2023-07-19 12:29:44 +02:00
|
|
|
padding-bottom: 16px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.p-huge {
|
2023-07-19 12:29:44 +02:00
|
|
|
padding: 36px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.pb-huge {
|
2023-07-19 12:29:44 +02:00
|
|
|
padding-bottom: 36px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* OTHERS
|
|
|
|
*/
|
|
|
|
.no-wrap {
|
2023-07-19 12:29:44 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.overflow-hidden {
|
2023-07-19 12:29:44 +02:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.opacity-low {
|
2023-07-19 12:29:44 +02:00
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.rounded-corners {
|
2023-07-19 12:29:44 +02:00
|
|
|
border-radius: 5px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.rounded {
|
2023-07-19 12:29:44 +02:00
|
|
|
border-radius: 100%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* LAYOUT
|
|
|
|
*/
|
|
|
|
.section {
|
|
|
|
padding-bottom: 36px;
|
2023-07-19 12:29:44 +02:00
|
|
|
padding-top: 36px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
.section {
|
|
|
|
padding-bottom: 72px;
|
2023-07-19 12:29:44 +02:00
|
|
|
padding-top: 72px;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.section + .section {
|
2023-07-19 12:29:44 +02:00
|
|
|
padding-top: 0;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.container {
|
|
|
|
background-color: transparent;
|
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 1380px;
|
|
|
|
padding-left: 12px;
|
|
|
|
padding-right: 12px;
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
.container {
|
|
|
|
padding-left: 24px;
|
2023-07-19 12:29:44 +02:00
|
|
|
padding-right: 24px;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.container-medium {
|
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 944px;
|
|
|
|
padding-left: 12px;
|
2023-07-19 12:29:44 +02:00
|
|
|
padding-right: 12px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
.container-medium {
|
|
|
|
padding-left: 24px;
|
2023-07-19 12:29:44 +02:00
|
|
|
padding-right: 24px;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.container-small {
|
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 400px;
|
|
|
|
padding-left: 12px;
|
2023-07-19 12:29:44 +02:00
|
|
|
padding-right: 12px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
.container-small {
|
|
|
|
padding-left: 24px;
|
2023-07-19 12:29:44 +02:00
|
|
|
padding-right: 24px;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* TYPOGRAPHY
|
|
|
|
*/
|
|
|
|
body {
|
|
|
|
color: #272727;
|
|
|
|
font-family: "Lato", sans-serif;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 400;
|
2023-07-19 12:29:44 +02:00
|
|
|
line-height: 1.5em;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: #03a9f4;
|
2023-07-19 12:29:44 +02:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
a:hover {
|
2023-07-19 12:29:44 +02:00
|
|
|
color: rgba(3, 169, 244, 0.8);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
a:focus {
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #03a9f4;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
2023-07-19 12:29:44 +02:00
|
|
|
.text-huge,
|
|
|
|
.text-big,
|
|
|
|
.text-medium {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-huge {
|
|
|
|
font-size: 36px;
|
2023-07-19 12:29:44 +02:00
|
|
|
line-height: 1.3em;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-big {
|
|
|
|
font-size: 24px;
|
2023-07-19 12:29:44 +02:00
|
|
|
line-height: 1.3em;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-medium {
|
|
|
|
font-size: 16px;
|
2023-07-19 12:29:44 +02:00
|
|
|
line-height: 1.5em;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-small {
|
|
|
|
font-size: 12px;
|
2023-07-19 12:29:44 +02:00
|
|
|
line-height: 1.3em;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-body {
|
|
|
|
font-size: 16px;
|
2023-07-19 12:29:44 +02:00
|
|
|
line-height: 1.5em;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-primary {
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #03a9f4;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-dark {
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #18232f;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-secondary {
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #e91e63;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-white {
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #fff;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-success {
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #4caf50;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-info {
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #5bc0de;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-warning {
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #f0ad4e;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-error {
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #e74c3c;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-gray {
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #969da6;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-gray-light {
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #eceff1;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-light {
|
2023-07-19 12:29:44 +02:00
|
|
|
font-weight: 300;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-normal {
|
2023-07-19 12:29:44 +02:00
|
|
|
font-weight: 400;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-lineThrough {
|
2023-07-19 12:29:44 +02:00
|
|
|
text-decoration: line-through;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-italic {
|
2023-07-19 12:29:44 +02:00
|
|
|
font-style: italic;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-underline {
|
2023-07-19 12:29:44 +02:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-uppercase {
|
2023-07-19 12:29:44 +02:00
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-withSubtitle {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-bottom: 0 !important;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-withSubtitle + .text-huge,
|
|
|
|
.text-withSubtitle + .text-big,
|
|
|
|
.text-withSubtitle + .text-medium,
|
|
|
|
.text-withSubtitle + .text-small {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-top: 0.5em;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4 {
|
2023-07-19 12:29:44 +02:00
|
|
|
font-weight: 300;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-center {
|
2023-07-19 12:29:44 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-right {
|
2023-07-19 12:29:44 +02:00
|
|
|
text-align: right;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.text-left {
|
2023-07-19 12:29:44 +02:00
|
|
|
text-align: left;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* BADGE
|
|
|
|
*
|
|
|
|
* Markup:
|
|
|
|
* -------
|
|
|
|
*
|
|
|
|
* <ul>
|
|
|
|
* <li class="badge badge--primary">Badge 1</li>
|
|
|
|
* <li class="badge badge--secondary badge--big">Badge 1</li>
|
|
|
|
* </ul>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
.badge {
|
|
|
|
background-color: #eceff1;
|
|
|
|
border-radius: 3px;
|
|
|
|
color: #272727;
|
|
|
|
display: inline-block;
|
|
|
|
line-height: 1.2em;
|
2023-07-19 12:29:44 +02:00
|
|
|
padding: 8px 16px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.badge--big {
|
2023-07-19 12:29:44 +02:00
|
|
|
font-size: 1.3em;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.badge--small {
|
2023-07-19 12:29:44 +02:00
|
|
|
font-size: 0.7em;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.badge--primary {
|
|
|
|
background-color: #03a9f4;
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #fff;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.badge--secondary {
|
|
|
|
background-color: #e91e63;
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #fff;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.badge--dark {
|
|
|
|
background-color: #18232f;
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #fff;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.badge--light {
|
|
|
|
background-color: #969da6;
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #fff;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.badge--success {
|
|
|
|
background-color: #4caf50;
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #fff;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.badge--error {
|
|
|
|
background-color: #e74c3c;
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #fff;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.badge--warning {
|
|
|
|
background-color: #f0ad4e;
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #fff;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* BUTTON
|
|
|
|
*
|
|
|
|
* Markup:
|
|
|
|
* -------
|
|
|
|
*
|
|
|
|
* <button class="button">Default</button>
|
|
|
|
* <button class="button button--big">Button big</button>
|
|
|
|
* <button class="button button--secondary">Button secondary</button>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
button {
|
|
|
|
background-color: transparent;
|
2023-07-19 12:29:44 +02:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.button {
|
|
|
|
background-color: #03a9f4;
|
|
|
|
border: 0;
|
|
|
|
border-radius: 200px;
|
|
|
|
color: #fff;
|
|
|
|
display: inline-block;
|
|
|
|
font-family: "Lato", sans-serif;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 600;
|
|
|
|
line-height: 1.5em;
|
|
|
|
margin: 0 8px 16px 8px;
|
|
|
|
padding: 8px 16px;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
text-transform: uppercase;
|
2023-07-19 12:29:44 +02:00
|
|
|
transition: opacity 0.2s ease-in-out;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
2023-07-19 12:29:44 +02:00
|
|
|
.button:focus,
|
|
|
|
.button:hover,
|
|
|
|
.button:active {
|
|
|
|
color: #fff;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.button:hover {
|
|
|
|
background-color: rgba(3, 169, 244, 0.8);
|
|
|
|
color: #fff;
|
|
|
|
cursor: pointer;
|
2023-07-19 12:29:44 +02:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.button:active {
|
2023-07-19 12:29:44 +02:00
|
|
|
opacity: 1;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.button:first-child {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 0;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.button:last-child {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-right: 0;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.button--big {
|
|
|
|
font-size: 24px;
|
2023-07-19 12:29:44 +02:00
|
|
|
padding: 16px 36px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.button--small {
|
|
|
|
font-size: 12px;
|
2023-07-19 12:29:44 +02:00
|
|
|
padding: 4px 16px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@media (max-width: 991px) {
|
|
|
|
.button--mobileFull {
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.button--secondary {
|
|
|
|
background-color: #e91e63;
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #fff;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.button--secondary:hover {
|
|
|
|
background-color: rgba(233, 30, 99, 0.8);
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #fff;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.button--white {
|
|
|
|
background-color: #fff;
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #03a9f4;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.button--white:hover {
|
|
|
|
background-color: rgba(255, 255, 255, 0.8);
|
2023-07-19 12:29:44 +02:00
|
|
|
color: rgba(3, 169, 244, 0.8);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.button--green {
|
|
|
|
background-color: #4caf50;
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #fff;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.button--green:hover {
|
|
|
|
background-color: rgba(76, 175, 80, 0.8);
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #fff;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.button--red {
|
|
|
|
background-color: #e74c3c;
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #fff;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.button--red:hover {
|
|
|
|
background-color: rgba(231, 76, 60, 0.8);
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #fff;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.button--transparent {
|
|
|
|
background-color: transparent;
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #03a9f4;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
2023-07-19 12:29:44 +02:00
|
|
|
.button--transparent:active,
|
|
|
|
.button--transparent:hover,
|
|
|
|
.button--transparent:focus {
|
2022-03-23 10:06:37 +01:00
|
|
|
background-color: transparent;
|
|
|
|
color: rgba(3, 169, 244, 0.8);
|
2023-07-19 12:29:44 +02:00
|
|
|
opacity: 0.8;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.button--outlined {
|
|
|
|
background-color: transparent;
|
|
|
|
border: 1px solid #d5d9db;
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #03a9f4;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
2023-07-19 12:29:44 +02:00
|
|
|
.button--outlined:active,
|
|
|
|
.button--outlined:hover,
|
|
|
|
.button--outlined:focus {
|
2022-03-23 10:06:37 +01:00
|
|
|
background-color: transparent;
|
|
|
|
color: rgba(3, 169, 244, 0.8);
|
2023-07-19 12:29:44 +02:00
|
|
|
opacity: 0.8;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* FORMS
|
|
|
|
*
|
|
|
|
* Markup:
|
|
|
|
* ---------
|
|
|
|
* <div class="input input-fullWidth">
|
|
|
|
* <input id="#" placeholder="#" type="text">
|
|
|
|
* </div>
|
|
|
|
*
|
|
|
|
* <div class="select select-fullWidth">
|
|
|
|
* <select name="#" id="#">
|
|
|
|
* <option>Option 1</option>
|
|
|
|
* <option>Option 2</option>
|
|
|
|
* </select>
|
|
|
|
* </div>
|
|
|
|
*
|
|
|
|
* <div class="textarea">
|
|
|
|
* <textarea id="#"></textarea>
|
|
|
|
* </div>
|
|
|
|
*
|
|
|
|
* <div class="radio">
|
|
|
|
* <input id="#" name="#" type="radio" value="">
|
|
|
|
* <label for="#">Radio button</label>
|
|
|
|
* </div>
|
|
|
|
*
|
|
|
|
* <div class="checkbox">
|
|
|
|
* <input id="#" name="#" type="checkbox" value="">
|
|
|
|
* <label for="#">Checkbox</label>
|
|
|
|
* </div>
|
|
|
|
*/
|
|
|
|
input,
|
|
|
|
textarea {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
2023-07-19 12:29:44 +02:00
|
|
|
appearance: none;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
label {
|
|
|
|
display: block;
|
2023-07-19 12:29:44 +02:00
|
|
|
font-weight: normal;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
input:-webkit-autofill {
|
2023-07-19 12:29:44 +02:00
|
|
|
box-shadow: 0 0 0 1000px #eceff1 inset;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.textarea,
|
|
|
|
.input,
|
|
|
|
.select {
|
|
|
|
border: 1px solid #d5d9db;
|
|
|
|
border-radius: 3px;
|
|
|
|
box-shadow: none;
|
|
|
|
display: inline-block;
|
|
|
|
font-weight: normal;
|
|
|
|
margin-bottom: 20px;
|
2023-07-19 12:29:44 +02:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.textarea :focus,
|
|
|
|
.input :focus,
|
|
|
|
.select :focus {
|
2023-07-19 12:29:44 +02:00
|
|
|
outline: none;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.textarea.has-error,
|
|
|
|
.input.has-error,
|
|
|
|
.select.has-error {
|
|
|
|
background: #eceff1;
|
|
|
|
border: 1px solid #e74c3c;
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.select {
|
|
|
|
background-color: #eceff1;
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 16px;
|
2023-07-19 12:29:44 +02:00
|
|
|
position: relative;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.select:last-child {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-right: 0;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.select-fullWidth {
|
|
|
|
display: block;
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.select select {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
color: #272727;
|
|
|
|
display: block;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 1.5em;
|
|
|
|
margin: 0;
|
|
|
|
padding: 8px 16px;
|
|
|
|
padding-right: 30px;
|
|
|
|
transition: background-color 0.2s ease-in-out;
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
2023-07-19 12:29:44 +02:00
|
|
|
.select select:active,
|
|
|
|
.select select:focus {
|
2022-03-23 10:06:37 +01:00
|
|
|
background-color: #fbfbfc;
|
|
|
|
border: 0;
|
2023-07-19 12:29:44 +02:00
|
|
|
outline: none;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.select select::-ms-expand {
|
2023-07-19 12:29:44 +02:00
|
|
|
display: none;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
2023-07-19 12:29:44 +02:00
|
|
|
.select::after,
|
|
|
|
.select::before {
|
2022-03-23 10:06:37 +01:00
|
|
|
background: #03a9f4;
|
2023-07-19 12:29:44 +02:00
|
|
|
content: "";
|
2022-03-23 10:06:37 +01:00
|
|
|
display: block;
|
|
|
|
height: 2px;
|
|
|
|
margin-top: 2px;
|
|
|
|
position: absolute;
|
|
|
|
right: 5px;
|
|
|
|
top: 50%;
|
|
|
|
-webkit-transform-origin: 1px;
|
|
|
|
transform-origin: 1px;
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 10px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.select::after {
|
|
|
|
-webkit-transform: rotate(-135deg);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: rotate(-135deg);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.select::before {
|
|
|
|
-webkit-transform: rotate(-45deg);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: rotate(-45deg);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.textarea {
|
|
|
|
background-color: #eceff1;
|
2023-07-19 12:29:44 +02:00
|
|
|
padding: 0;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.textarea-fullWidth {
|
|
|
|
display: block;
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.textarea textarea {
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
color: #272727;
|
|
|
|
display: block;
|
|
|
|
font-family: "Lato", sans-serif;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 1.5em;
|
|
|
|
margin: 0;
|
|
|
|
min-height: 120px;
|
|
|
|
padding: 8px 16px;
|
|
|
|
transition: background-color 0.2s ease-in-out;
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.textarea textarea::-webkit-input-placeholder {
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #969da6;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.textarea textarea::-ms-input-placeholder {
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #969da6;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.textarea textarea::placeholder {
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #969da6;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
2023-07-19 12:29:44 +02:00
|
|
|
.textarea textarea:focus,
|
|
|
|
.textarea textarea:active {
|
2022-03-23 10:06:37 +01:00
|
|
|
background-color: #fbfbfc;
|
|
|
|
border: 0;
|
2023-07-19 12:29:44 +02:00
|
|
|
outline: none;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.checkbox {
|
|
|
|
margin-bottom: 8px;
|
2023-07-19 12:29:44 +02:00
|
|
|
position: relative;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
2023-07-19 12:29:44 +02:00
|
|
|
.checkbox input[type="checkbox"] {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
2023-07-19 12:29:44 +02:00
|
|
|
.checkbox input[type="checkbox"]:checked + label::after {
|
|
|
|
-webkit-animation: checkboxAndRadioAnimation 0.25s;
|
|
|
|
animation: checkboxAndRadioAnimation 0.25s;
|
|
|
|
content: "";
|
2022-03-23 10:06:37 +01:00
|
|
|
-webkit-transform: scale(1) rotate(45deg);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: scale(1) rotate(45deg);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
2023-07-19 12:29:44 +02:00
|
|
|
.checkbox input[type="checkbox"] + label {
|
2022-03-23 10:06:37 +01:00
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
padding-left: 30px;
|
|
|
|
text-overflow: ellipsis;
|
2023-07-19 12:29:44 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
2023-07-19 12:29:44 +02:00
|
|
|
.checkbox input[type="checkbox"] + label::before {
|
2022-03-23 10:06:37 +01:00
|
|
|
background-color: #eceff1;
|
|
|
|
border: 1px solid #d5d9db;
|
|
|
|
border-radius: 3px;
|
2023-07-19 12:29:44 +02:00
|
|
|
content: "";
|
2022-03-23 10:06:37 +01:00
|
|
|
display: inline-block;
|
|
|
|
height: 20px;
|
|
|
|
left: 0;
|
|
|
|
margin-top: -10px;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 20px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
2023-07-19 12:29:44 +02:00
|
|
|
.checkbox input[type="checkbox"] + label::after {
|
2022-03-23 10:06:37 +01:00
|
|
|
border-bottom: 3px solid #03a9f4;
|
|
|
|
border-right: 3px solid #03a9f4;
|
|
|
|
display: block;
|
|
|
|
height: 12px;
|
|
|
|
left: 11px;
|
|
|
|
margin-left: -4px;
|
|
|
|
margin-top: -7px;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
width: 7px;
|
2023-07-19 12:29:44 +02:00
|
|
|
z-index: 1;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.radio {
|
|
|
|
margin-bottom: 8px;
|
2023-07-19 12:29:44 +02:00
|
|
|
position: relative;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
2023-07-19 12:29:44 +02:00
|
|
|
.radio input[type="radio"] {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
2023-07-19 12:29:44 +02:00
|
|
|
.radio input[type="radio"]:checked + label::after {
|
|
|
|
-webkit-animation: checkboxAndRadioAnimation 0.25s;
|
|
|
|
animation: checkboxAndRadioAnimation 0.25s;
|
|
|
|
content: "";
|
2022-03-23 10:06:37 +01:00
|
|
|
-webkit-transform: scale(1) rotate(45deg);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: scale(1) rotate(45deg);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
2023-07-19 12:29:44 +02:00
|
|
|
.radio input[type="radio"] + label {
|
2022-03-23 10:06:37 +01:00
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
padding-left: 30px;
|
|
|
|
text-overflow: ellipsis;
|
2023-07-19 12:29:44 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
2023-07-19 12:29:44 +02:00
|
|
|
.radio input[type="radio"] + label::before {
|
2022-03-23 10:06:37 +01:00
|
|
|
background-color: #eceff1;
|
|
|
|
border: 1px solid #d5d9db;
|
|
|
|
border-radius: 20px;
|
2023-07-19 12:29:44 +02:00
|
|
|
content: "";
|
2022-03-23 10:06:37 +01:00
|
|
|
display: inline-block;
|
|
|
|
height: 20px;
|
|
|
|
left: 0;
|
|
|
|
margin-top: -10px;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 20px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
2023-07-19 12:29:44 +02:00
|
|
|
.radio input[type="radio"] + label::after {
|
2022-03-23 10:06:37 +01:00
|
|
|
background-color: #03a9f4;
|
|
|
|
border-radius: 20px;
|
|
|
|
display: block;
|
|
|
|
height: 10px;
|
|
|
|
left: 11px;
|
|
|
|
margin-left: -6px;
|
|
|
|
margin-top: -6px;
|
|
|
|
position: absolute;
|
|
|
|
top: 13px;
|
|
|
|
width: 10px;
|
2023-07-19 12:29:44 +02:00
|
|
|
z-index: 1;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@-webkit-keyframes checkboxAndRadioAnimation {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: scale(0) rotate(45deg);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: scale(0) rotate(45deg);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
50% {
|
|
|
|
-webkit-transform: scale(1.5) rotate(45deg);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: scale(1.5) rotate(45deg);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
100% {
|
|
|
|
-webkit-transform: scale(1) rotate(45deg);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: scale(1) rotate(45deg);
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@keyframes checkboxAndRadioAnimation {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: scale(0) rotate(45deg);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: scale(0) rotate(45deg);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
50% {
|
|
|
|
-webkit-transform: scale(1.5) rotate(45deg);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: scale(1.5) rotate(45deg);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
100% {
|
|
|
|
-webkit-transform: scale(1) rotate(45deg);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: scale(1) rotate(45deg);
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.input-invis {
|
|
|
|
background-color: transparent !important;
|
|
|
|
margin: auto !important;
|
2023-07-19 12:29:44 +02:00
|
|
|
border: 0 !important;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.input {
|
|
|
|
background-color: #eceff1;
|
|
|
|
margin-right: 10px;
|
|
|
|
padding: 0;
|
2023-07-19 12:29:44 +02:00
|
|
|
position: relative;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.input :focus,
|
|
|
|
.input :active {
|
|
|
|
background-color: #fbfbfc;
|
2023-07-19 12:29:44 +02:00
|
|
|
border-radius: 3px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
2023-07-19 12:29:44 +02:00
|
|
|
.input input,
|
|
|
|
.input textarea {
|
2022-03-23 10:06:37 +01:00
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
box-shadow: none;
|
|
|
|
color: #272727;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 1.5em;
|
|
|
|
margin: 0;
|
|
|
|
outline: none;
|
|
|
|
padding: 8px 16px;
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.input input::-webkit-input-placeholder {
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #969da6;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.input input::-ms-input-placeholder {
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #969da6;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.input input::placeholder {
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #969da6;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.input input.small {
|
|
|
|
line-height: 1em;
|
2023-07-19 12:29:44 +02:00
|
|
|
padding: 0;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.input-withIcon input {
|
2023-07-19 12:29:44 +02:00
|
|
|
padding-right: 32px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.input-icon {
|
|
|
|
fill: #969da6;
|
|
|
|
height: 16px;
|
|
|
|
margin-top: -8px;
|
|
|
|
position: absolute;
|
|
|
|
right: 16px;
|
|
|
|
top: 50%;
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 16px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.input-fullWidth {
|
|
|
|
display: block;
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* FORM COLLAPSED (items in row without gap between them)
|
|
|
|
*
|
|
|
|
* Markup:
|
|
|
|
* -------
|
|
|
|
*
|
|
|
|
* <div class="formCollapsed">
|
|
|
|
* <div class="input formCollapsed-item formCollapsed-itemPrimary">
|
|
|
|
* <input id="name" placeholder="Klingon search" type="text" />
|
|
|
|
* </div>
|
|
|
|
* <div class="select formCollapsed-item">
|
|
|
|
* <select name="country-code" id="country-code">
|
|
|
|
* <option value="AO"> Angola</option>
|
|
|
|
* </select>
|
|
|
|
* </div>
|
|
|
|
* <button class="formCollapsed-item button button-primary">
|
|
|
|
* Search
|
|
|
|
* </button>
|
|
|
|
* </div>
|
|
|
|
**/
|
|
|
|
.formCollapsed {
|
|
|
|
display: flex;
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.formCollapsed-item {
|
|
|
|
border-radius: 0 !important;
|
2023-07-19 12:29:44 +02:00
|
|
|
margin: 0 !important;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.formCollapsed-item:first-child {
|
|
|
|
border-bottom-left-radius: 3px !important;
|
2023-07-19 12:29:44 +02:00
|
|
|
border-top-left-radius: 3px !important;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.formCollapsed-item:last-child {
|
|
|
|
border-bottom-right-radius: 3px !important;
|
2023-07-19 12:29:44 +02:00
|
|
|
border-top-right-radius: 3px !important;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.formCollapsed-item:not(:last-child) {
|
2023-07-19 12:29:44 +02:00
|
|
|
border-right: 0;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.formCollapsed-itemPrimary {
|
2023-07-19 12:29:44 +02:00
|
|
|
flex: 1;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* LOADING BAR
|
|
|
|
*
|
|
|
|
* Markup:
|
|
|
|
* ---------
|
|
|
|
* <div class="loadingBar"></div>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
.loadingBar {
|
|
|
|
height: 6px;
|
|
|
|
left: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
position: fixed;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
2023-07-19 12:29:44 +02:00
|
|
|
z-index: 1000;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.loadingBar::before {
|
|
|
|
-webkit-animation: loading 2s linear infinite;
|
|
|
|
animation: loading 2s linear infinite;
|
|
|
|
background-color: #03a9f4;
|
2023-07-19 12:29:44 +02:00
|
|
|
content: "";
|
2022-03-23 10:06:37 +01:00
|
|
|
display: block;
|
|
|
|
height: 6px;
|
|
|
|
left: -300px;
|
|
|
|
position: absolute;
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 300px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@-webkit-keyframes loading {
|
|
|
|
from {
|
|
|
|
left: -300px;
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 30%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
50% {
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 30%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
70% {
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 70%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
80% {
|
2023-07-19 12:29:44 +02:00
|
|
|
left: 50%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
95% {
|
2023-07-19 12:29:44 +02:00
|
|
|
left: 120%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
to {
|
2023-07-19 12:29:44 +02:00
|
|
|
left: 100%;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@keyframes loading {
|
|
|
|
from {
|
|
|
|
left: -300px;
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 30%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
50% {
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 30%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
70% {
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 70%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
80% {
|
2023-07-19 12:29:44 +02:00
|
|
|
left: 50%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
95% {
|
2023-07-19 12:29:44 +02:00
|
|
|
left: 120%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
to {
|
2023-07-19 12:29:44 +02:00
|
|
|
left: 100%;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* LOADING SPINNER
|
|
|
|
*
|
|
|
|
* Markup:
|
|
|
|
* ---------
|
|
|
|
* <div class='loadingSpinner'>
|
|
|
|
* <span class='loadingSpinner-inner'></span>
|
|
|
|
* <span class='loadingSpinner-inner'></span>
|
|
|
|
* <span class='loadingSpinner-inner'></span>
|
|
|
|
* <span class='loadingSpinner-inner'></span>
|
|
|
|
* </div>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
.loadingSpinner {
|
|
|
|
-webkit-animation: rotateLoader 4s infinite;
|
|
|
|
animation: rotateLoader 4s infinite;
|
|
|
|
-webkit-animation-timing-function: ease-in-out;
|
|
|
|
animation-timing-function: ease-in-out;
|
|
|
|
display: block;
|
|
|
|
height: 30px;
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -15px;
|
|
|
|
margin-top: -15px;
|
|
|
|
position: fixed;
|
|
|
|
top: 50%;
|
|
|
|
width: 30px;
|
2023-07-19 12:29:44 +02:00
|
|
|
z-index: 1000;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.loadingSpinner-inner {
|
|
|
|
-webkit-animation-timing-function: ease-in-out;
|
|
|
|
animation-timing-function: ease-in-out;
|
|
|
|
background-color: #e91e63;
|
|
|
|
border-radius: 100%;
|
|
|
|
display: block;
|
|
|
|
height: 9px;
|
|
|
|
position: absolute;
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 9px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.loadingSpinner-inner:nth-child(1) {
|
|
|
|
-webkit-animation: translateBall1 1s infinite;
|
|
|
|
animation: translateBall1 1s infinite;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
-webkit-transform: translate3d(4.5px, 4.5px, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(4.5px, 4.5px, 0);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.loadingSpinner-inner:nth-child(2) {
|
|
|
|
-webkit-animation: translateBall2 1s infinite;
|
|
|
|
animation: translateBall2 1s infinite;
|
|
|
|
right: 0;
|
2023-07-19 12:29:44 +02:00
|
|
|
top: 0;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.loadingSpinner-inner:nth-child(3) {
|
|
|
|
-webkit-animation: translateBall3 1s infinite;
|
|
|
|
animation: translateBall3 1s infinite;
|
|
|
|
bottom: 0;
|
2023-07-19 12:29:44 +02:00
|
|
|
right: 0;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.loadingSpinner-inner:nth-child(4) {
|
|
|
|
-webkit-animation: translateBall4 1s infinite;
|
|
|
|
animation: translateBall4 1s infinite;
|
|
|
|
bottom: 0;
|
2023-07-19 12:29:44 +02:00
|
|
|
left: 0;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@-webkit-keyframes rotateLoader {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: rotate(0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: rotate(0);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
25% {
|
|
|
|
-webkit-transform: rotate(90deg);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: rotate(90deg);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
50% {
|
|
|
|
-webkit-transform: rotate(180deg);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: rotate(180deg);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
75% {
|
|
|
|
-webkit-transform: rotate(270deg);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: rotate(270deg);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
100% {
|
|
|
|
-webkit-transform: rotate(360deg);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@keyframes rotateLoader {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: rotate(0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: rotate(0);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
25% {
|
|
|
|
-webkit-transform: rotate(90deg);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: rotate(90deg);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
50% {
|
|
|
|
-webkit-transform: rotate(180deg);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: rotate(180deg);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
75% {
|
|
|
|
-webkit-transform: rotate(270deg);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: rotate(270deg);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
100% {
|
|
|
|
-webkit-transform: rotate(360deg);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@-webkit-keyframes translateBall1 {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: translate3d(0, 0, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
50% {
|
|
|
|
-webkit-transform: translate3d(4.5px, 4.5px, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(4.5px, 4.5px, 0);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
100% {
|
|
|
|
-webkit-transform: translate3d(0, 0, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@keyframes translateBall1 {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: translate3d(0, 0, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
50% {
|
|
|
|
-webkit-transform: translate3d(4.5px, 4.5px, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(4.5px, 4.5px, 0);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
100% {
|
|
|
|
-webkit-transform: translate3d(0, 0, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@-webkit-keyframes translateBall2 {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: translate3d(0, 0, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
50% {
|
|
|
|
-webkit-transform: translate3d(-4.5px, 4.5px, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(-4.5px, 4.5px, 0);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
100% {
|
|
|
|
-webkit-transform: translate3d(0, 0, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@keyframes translateBall2 {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: translate3d(0, 0, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
50% {
|
|
|
|
-webkit-transform: translate3d(-4.5px, 4.5px, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(-4.5px, 4.5px, 0);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
100% {
|
|
|
|
-webkit-transform: translate3d(0, 0, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@-webkit-keyframes translateBall3 {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: translate3d(0, 0, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
50% {
|
|
|
|
-webkit-transform: translate3d(-4.5px, -4.5px, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(-4.5px, -4.5px, 0);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
100% {
|
|
|
|
-webkit-transform: translate3d(0, 0, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@keyframes translateBall3 {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: translate3d(0, 0, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
50% {
|
|
|
|
-webkit-transform: translate3d(-4.5px, -4.5px, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(-4.5px, -4.5px, 0);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
100% {
|
|
|
|
-webkit-transform: translate3d(0, 0, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@-webkit-keyframes translateBall4 {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: translate3d(0, 0, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
50% {
|
|
|
|
-webkit-transform: translate3d(4.5px, -4.5px, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(4.5px, -4.5px, 0);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
100% {
|
|
|
|
-webkit-transform: translate3d(0, 0, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@keyframes translateBall4 {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: translate3d(0, 0, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
50% {
|
|
|
|
-webkit-transform: translate3d(4.5px, -4.5px, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(4.5px, -4.5px, 0);
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
100% {
|
|
|
|
-webkit-transform: translate3d(0, 0, 0);
|
2023-07-19 12:29:44 +02:00
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* NOTIFICATION
|
|
|
|
*
|
|
|
|
* Markup:
|
|
|
|
* -------
|
|
|
|
*
|
|
|
|
* <div class="notification notification--sucess">Success notification</div>
|
|
|
|
* <div class="notification notification--info">Success info</div>
|
|
|
|
* <div class="notification notification--error">Success error</div>
|
|
|
|
* <div class="notification notification--warning">Success warning</div>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
.notification {
|
|
|
|
border-radius: 3px;
|
|
|
|
color: #fff;
|
|
|
|
margin-bottom: 36px;
|
2023-07-19 12:29:44 +02:00
|
|
|
padding: 16px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.notification p:last-child {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.notification--primary {
|
2023-07-19 12:29:44 +02:00
|
|
|
background-color: #03a9f4;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.notification--dark {
|
2023-07-19 12:29:44 +02:00
|
|
|
background-color: #18232f;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.notification--secondary {
|
2023-07-19 12:29:44 +02:00
|
|
|
background-color: #e91e63;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.notification--white {
|
2023-07-19 12:29:44 +02:00
|
|
|
background-color: #fff;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.notification--success {
|
2023-07-19 12:29:44 +02:00
|
|
|
background-color: #4caf50;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.notification--info {
|
2023-07-19 12:29:44 +02:00
|
|
|
background-color: #5bc0de;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.notification--warning {
|
2023-07-19 12:29:44 +02:00
|
|
|
background-color: #f0ad4e;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.notification--error {
|
2023-07-19 12:29:44 +02:00
|
|
|
background-color: #e74c3c;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.notification--gray {
|
2023-07-19 12:29:44 +02:00
|
|
|
background-color: #969da6;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.notification--gray-light {
|
2023-07-19 12:29:44 +02:00
|
|
|
background-color: #eceff1;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* PAGINATOR
|
|
|
|
*
|
|
|
|
* Markup:
|
|
|
|
* -------
|
|
|
|
*
|
|
|
|
* <ul class="paginator">
|
|
|
|
* <li class="paginator-item">
|
|
|
|
* <a href="#" class="paginator-itemLink">< Prev</a>
|
|
|
|
* </li>
|
|
|
|
* <li class="paginator-item">
|
|
|
|
* <a href="#" class="paginator-itemLink">1</a>
|
|
|
|
* </li>
|
|
|
|
* <li class="paginator-item">
|
|
|
|
* <a href="#" class="paginator-itemLink is-active">2</a>
|
|
|
|
* </li>
|
|
|
|
* <li class="paginator-item">
|
|
|
|
* <a href="#" class="paginator-itemLink">3</a>
|
|
|
|
* </li>
|
|
|
|
* <li class="paginator-item">
|
|
|
|
* <a href="#" class="paginator-itemLink">Next ></a>
|
|
|
|
* </li>
|
|
|
|
* </ul>
|
|
|
|
*/
|
|
|
|
.paginator-item {
|
|
|
|
display: inline-block;
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-right: 4px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.paginator-itemLink {
|
|
|
|
background-color: #eceff1;
|
|
|
|
border-radius: 3px;
|
|
|
|
display: block;
|
2023-07-19 12:29:44 +02:00
|
|
|
padding: 8px 16px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.paginator-itemLink.is-active {
|
|
|
|
background-color: #03a9f4;
|
|
|
|
color: #fff;
|
2023-07-19 12:29:44 +02:00
|
|
|
cursor: default;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* TABLE
|
|
|
|
*
|
|
|
|
* Markup:
|
|
|
|
* -------
|
|
|
|
*
|
|
|
|
* <table class="table">
|
|
|
|
* <tr>
|
|
|
|
* <th>First column</th>
|
|
|
|
* <th>Second column</th>
|
|
|
|
* <th>Third column</th>
|
|
|
|
* </tr>
|
|
|
|
* <tr>
|
|
|
|
* <td="First column">Blue</td>
|
|
|
|
* <td="Second column">One</td>
|
|
|
|
* <td="Third column">My life fades</td>
|
|
|
|
* </tr>
|
|
|
|
* </table>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
.table {
|
|
|
|
background-color: #eceff1;
|
|
|
|
border: 1px solid #d5d9db;
|
|
|
|
border-collapse: collapse;
|
|
|
|
color: #272727;
|
|
|
|
max-width: 100%;
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.table th,
|
|
|
|
.table td {
|
|
|
|
border-bottom: 1px solid #d5d9db;
|
|
|
|
padding: 8px;
|
2023-07-19 12:29:44 +02:00
|
|
|
position: relative;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.table thead {
|
2023-07-19 12:29:44 +02:00
|
|
|
border-bottom: 1px solid #d5d9db;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.table th {
|
|
|
|
background-color: #fff;
|
|
|
|
color: #969da6;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: normal;
|
|
|
|
padding: 8px;
|
2023-07-19 12:29:44 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* TABLE RESPONSIVE
|
|
|
|
*
|
|
|
|
* Markup:
|
|
|
|
* -------
|
|
|
|
*
|
|
|
|
* <table class="table table--responsive">
|
|
|
|
* <tr>
|
|
|
|
* <th>First column</th>
|
|
|
|
* <th>Second column</th>
|
|
|
|
* <th>Third column</th>
|
|
|
|
* </tr>
|
|
|
|
* <tr>
|
|
|
|
* <td data-th="First column">Blue</td>
|
|
|
|
* <td data-th="Second column">One</td>
|
|
|
|
* <td data-th="Third column">My life fades</td>
|
|
|
|
* </tr>
|
|
|
|
* <tr>
|
|
|
|
* <td data-th="First column">Green</td>
|
|
|
|
* <td data-th="Second column">Two</td>
|
|
|
|
* <td data-th="Third column">
|
|
|
|
* when the world was powered by the black fuel... and the desert
|
|
|
|
* sprouted great cities of pipe and steel.
|
|
|
|
* </td>
|
|
|
|
* </tr>
|
|
|
|
* <tr>
|
|
|
|
* <td data-th="First column">Yellow</td>
|
|
|
|
* <td data-th="Second column">Three</td>
|
|
|
|
* <td data-th="Third column">
|
|
|
|
* A whirlwind of looting, a firestorm of fear.
|
|
|
|
* </td>
|
|
|
|
* </tr>
|
|
|
|
* </table>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
.table--responsive th {
|
2023-07-19 12:29:44 +02:00
|
|
|
display: none;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.table--responsive td {
|
2023-07-19 12:29:44 +02:00
|
|
|
display: block;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@media (max-width: 767px) {
|
|
|
|
.table--responsive td {
|
2023-07-19 12:29:44 +02:00
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.table--responsive td::before {
|
|
|
|
color: #969da6;
|
|
|
|
content: attr(data-th) ": ";
|
|
|
|
display: block;
|
2023-07-19 12:29:44 +02:00
|
|
|
font-weight: normal;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@media (min-width: 576px) {
|
|
|
|
.table--responsive td::before {
|
2023-07-19 12:29:44 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.table--responsive td:first-child {
|
2023-07-19 12:29:44 +02:00
|
|
|
border-top: 1px solid #d5d9db;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.table--responsive th,
|
|
|
|
.table--responsive td {
|
2023-07-19 12:29:44 +02:00
|
|
|
text-align: left;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@media (min-width: 576px) {
|
|
|
|
.table--responsive th,
|
|
|
|
.table--responsive td {
|
|
|
|
border-top: 1px solid #d5d9db;
|
2023-07-19 12:29:44 +02:00
|
|
|
display: table-cell;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* TABS
|
|
|
|
*
|
|
|
|
* Markup:
|
|
|
|
* -------
|
|
|
|
*
|
|
|
|
* <div class="tabs">
|
|
|
|
* <a href="#" title="#" class="tabs-item">[...]</a>
|
|
|
|
* <a href="#" title="#" class="tabs-item is-selected">[...]</a>
|
|
|
|
* </div>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
.tabs {
|
|
|
|
border-bottom: 1px solid #d5d9db;
|
2023-07-19 12:29:44 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.tabs-item {
|
|
|
|
border-bottom: 3px solid transparent;
|
|
|
|
color: #969da6;
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 16px 0 0;
|
|
|
|
min-width: 70px;
|
|
|
|
padding: 16px;
|
2023-07-19 12:29:44 +02:00
|
|
|
position: relative;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.tabs-item:hover {
|
|
|
|
color: #03a9f4;
|
2023-07-19 12:29:44 +02:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.tabs-item.is-selected {
|
|
|
|
border-bottom: 3px solid #03a9f4;
|
2023-07-19 12:29:44 +02:00
|
|
|
color: #03a9f4;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* TAG
|
|
|
|
*
|
|
|
|
* Markup:
|
|
|
|
* -------
|
|
|
|
*
|
|
|
|
* <ul>
|
|
|
|
* <li class="tag">Fantasy</li>
|
|
|
|
* <li class="tag">Fiction</li>
|
|
|
|
* <li class="tag">Contemporary</li>
|
|
|
|
* </ul>
|
|
|
|
*
|
|
|
|
* <ul>
|
|
|
|
* <li class="tag">
|
|
|
|
* <a href="#">Fantasy</a>
|
|
|
|
* </li>
|
|
|
|
* <li class="tag">
|
|
|
|
* <a href="#">Fiction</a>
|
|
|
|
* </li>
|
|
|
|
* <li class="tag">
|
|
|
|
* <a href="#">Contemporary</a>
|
|
|
|
* </li>
|
|
|
|
* </ul>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
.tag {
|
|
|
|
background-color: #eceff1;
|
|
|
|
border-radius: 3px 0 0 3px;
|
|
|
|
color: #272727;
|
|
|
|
display: inline-block;
|
|
|
|
line-height: 16px;
|
|
|
|
margin: 0 16px 16px 0;
|
|
|
|
padding: 8px;
|
2023-07-19 12:29:44 +02:00
|
|
|
position: relative;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.tag::before {
|
|
|
|
border-bottom: 16px solid transparent;
|
|
|
|
border-left: 8px solid #eceff1;
|
|
|
|
border-top: 16px solid transparent;
|
2023-07-19 12:29:44 +02:00
|
|
|
content: "";
|
2022-03-23 10:06:37 +01:00
|
|
|
height: 0;
|
|
|
|
position: absolute;
|
|
|
|
right: -8px;
|
|
|
|
top: 0;
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 0;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.tag::after {
|
|
|
|
background: #fff;
|
|
|
|
border-radius: 100%;
|
2023-07-19 12:29:44 +02:00
|
|
|
content: "";
|
2022-03-23 10:06:37 +01:00
|
|
|
height: 5px;
|
|
|
|
margin-top: -2.5px;
|
|
|
|
position: absolute;
|
|
|
|
right: -2.5px;
|
|
|
|
top: 50%;
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 5px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.container {
|
|
|
|
width: 100%;
|
|
|
|
padding-right: 12px;
|
|
|
|
padding-left: 12px;
|
|
|
|
margin-right: auto;
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: auto;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@media (min-width: 576px) {
|
|
|
|
.container {
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 540px;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
.container {
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 720px;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@media (min-width: 992px) {
|
|
|
|
.container {
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 960px;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@media (min-width: 1200px) {
|
|
|
|
.container {
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 1140px;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.container-fluid {
|
|
|
|
width: 100%;
|
|
|
|
padding-right: 12px;
|
|
|
|
padding-left: 12px;
|
|
|
|
margin-right: auto;
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: auto;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.row {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-right: -12px;
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: -12px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.no-gutters {
|
|
|
|
margin-left: 0;
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-right: 0;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.no-gutters > .col,
|
2023-07-19 12:29:44 +02:00
|
|
|
.no-gutters > [class*="col-"] {
|
2022-03-23 10:06:37 +01:00
|
|
|
padding-left: 0;
|
2023-07-19 12:29:44 +02:00
|
|
|
padding-right: 0;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
2023-07-19 12:29:44 +02:00
|
|
|
.col-1,
|
|
|
|
.col-2,
|
|
|
|
.col-3,
|
|
|
|
.col-4,
|
|
|
|
.col-5,
|
|
|
|
.col-6,
|
|
|
|
.col-7,
|
|
|
|
.col-8,
|
|
|
|
.col-9,
|
|
|
|
.col-10,
|
|
|
|
.col-11,
|
|
|
|
.col-12,
|
|
|
|
.col,
|
|
|
|
.col-auto,
|
|
|
|
.col-sm-1,
|
|
|
|
.col-sm-2,
|
|
|
|
.col-sm-3,
|
|
|
|
.col-sm-4,
|
|
|
|
.col-sm-5,
|
|
|
|
.col-sm-6,
|
|
|
|
.col-sm-7,
|
|
|
|
.col-sm-8,
|
|
|
|
.col-sm-9,
|
|
|
|
.col-sm-10,
|
|
|
|
.col-sm-11,
|
|
|
|
.col-sm-12,
|
|
|
|
.col-sm,
|
|
|
|
.col-sm-auto,
|
|
|
|
.col-md-1,
|
|
|
|
.col-md-2,
|
|
|
|
.col-md-3,
|
|
|
|
.col-md-4,
|
|
|
|
.col-md-5,
|
|
|
|
.col-md-6,
|
|
|
|
.col-md-7,
|
|
|
|
.col-md-8,
|
|
|
|
.col-md-9,
|
|
|
|
.col-md-10,
|
|
|
|
.col-md-11,
|
|
|
|
.col-md-12,
|
|
|
|
.col-md,
|
|
|
|
.col-md-auto,
|
|
|
|
.col-lg-1,
|
|
|
|
.col-lg-2,
|
|
|
|
.col-lg-3,
|
|
|
|
.col-lg-4,
|
|
|
|
.col-lg-5,
|
|
|
|
.col-lg-6,
|
|
|
|
.col-lg-7,
|
|
|
|
.col-lg-8,
|
|
|
|
.col-lg-9,
|
|
|
|
.col-lg-10,
|
|
|
|
.col-lg-11,
|
|
|
|
.col-lg-12,
|
|
|
|
.col-lg,
|
|
|
|
.col-lg-auto,
|
|
|
|
.col-xl-1,
|
|
|
|
.col-xl-2,
|
|
|
|
.col-xl-3,
|
|
|
|
.col-xl-4,
|
|
|
|
.col-xl-5,
|
|
|
|
.col-xl-6,
|
|
|
|
.col-xl-7,
|
|
|
|
.col-xl-8,
|
|
|
|
.col-xl-9,
|
|
|
|
.col-xl-10,
|
|
|
|
.col-xl-11,
|
|
|
|
.col-xl-12,
|
|
|
|
.col-xl,
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-xl-auto {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
min-height: 1px;
|
|
|
|
padding-right: 12px;
|
2023-07-19 12:29:44 +02:00
|
|
|
padding-left: 12px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.col {
|
|
|
|
flex-basis: 0;
|
|
|
|
flex-grow: 1;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 100%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.col-auto {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
width: auto;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: none;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.col-1 {
|
|
|
|
flex: 0 0 8.33333%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 8.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.col-2 {
|
|
|
|
flex: 0 0 16.66667%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 16.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.col-3 {
|
|
|
|
flex: 0 0 25%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 25%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.col-4 {
|
|
|
|
flex: 0 0 33.33333%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 33.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.col-5 {
|
|
|
|
flex: 0 0 41.66667%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 41.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.col-6 {
|
|
|
|
flex: 0 0 50%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 50%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.col-7 {
|
|
|
|
flex: 0 0 58.33333%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 58.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.col-8 {
|
|
|
|
flex: 0 0 66.66667%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 66.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.col-9 {
|
|
|
|
flex: 0 0 75%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 75%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.col-10 {
|
|
|
|
flex: 0 0 83.33333%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 83.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.col-11 {
|
|
|
|
flex: 0 0 91.66667%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 91.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.col-12 {
|
|
|
|
flex: 0 0 100%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 100%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.order-first {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: -1;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.order-1 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 1;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.order-2 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 2;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.order-3 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 3;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.order-4 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 4;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.order-5 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 5;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.order-6 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 6;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.order-7 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 7;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.order-8 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 8;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.order-9 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 9;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.order-10 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 10;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.order-11 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 11;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.order-12 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 12;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.offset-1 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 8.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.offset-2 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 16.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.offset-3 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 25%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.offset-4 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 33.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.offset-5 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 41.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.offset-6 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 50%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.offset-7 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 58.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.offset-8 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 66.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.offset-9 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 75%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.offset-10 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 83.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.offset-11 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 91.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@media (min-width: 576px) {
|
|
|
|
.col-sm {
|
|
|
|
flex-basis: 0;
|
|
|
|
flex-grow: 1;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 100%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-sm-auto {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
width: auto;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: none;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-sm-1 {
|
|
|
|
flex: 0 0 8.33333%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 8.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-sm-2 {
|
|
|
|
flex: 0 0 16.66667%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 16.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-sm-3 {
|
|
|
|
flex: 0 0 25%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 25%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-sm-4 {
|
|
|
|
flex: 0 0 33.33333%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 33.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-sm-5 {
|
|
|
|
flex: 0 0 41.66667%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 41.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-sm-6 {
|
|
|
|
flex: 0 0 50%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 50%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-sm-7 {
|
|
|
|
flex: 0 0 58.33333%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 58.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-sm-8 {
|
|
|
|
flex: 0 0 66.66667%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 66.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-sm-9 {
|
|
|
|
flex: 0 0 75%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 75%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-sm-10 {
|
|
|
|
flex: 0 0 83.33333%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 83.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-sm-11 {
|
|
|
|
flex: 0 0 91.66667%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 91.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-sm-12 {
|
|
|
|
flex: 0 0 100%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 100%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-sm-first {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: -1;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-sm-1 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 1;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-sm-2 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 2;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-sm-3 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 3;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-sm-4 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 4;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-sm-5 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 5;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-sm-6 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 6;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-sm-7 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 7;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-sm-8 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 8;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-sm-9 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 9;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-sm-10 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 10;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-sm-11 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 11;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-sm-12 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 12;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-sm-0 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 0;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-sm-1 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 8.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-sm-2 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 16.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-sm-3 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 25%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-sm-4 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 33.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-sm-5 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 41.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-sm-6 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 50%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-sm-7 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 58.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-sm-8 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 66.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-sm-9 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 75%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-sm-10 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 83.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-sm-11 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 91.66667%;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
.col-md {
|
|
|
|
flex-basis: 0;
|
|
|
|
flex-grow: 1;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 100%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-md-auto {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
width: auto;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: none;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-md-1 {
|
|
|
|
flex: 0 0 8.33333%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 8.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-md-2 {
|
|
|
|
flex: 0 0 16.66667%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 16.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-md-3 {
|
|
|
|
flex: 0 0 25%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 25%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-md-4 {
|
|
|
|
flex: 0 0 33.33333%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 33.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-md-5 {
|
|
|
|
flex: 0 0 41.66667%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 41.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-md-6 {
|
|
|
|
flex: 0 0 50%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 50%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-md-7 {
|
|
|
|
flex: 0 0 58.33333%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 58.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-md-8 {
|
|
|
|
flex: 0 0 66.66667%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 66.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-md-9 {
|
|
|
|
flex: 0 0 75%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 75%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-md-10 {
|
|
|
|
flex: 0 0 83.33333%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 83.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-md-11 {
|
|
|
|
flex: 0 0 91.66667%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 91.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-md-12 {
|
|
|
|
flex: 0 0 100%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 100%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-md-first {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: -1;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-md-1 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 1;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-md-2 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 2;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-md-3 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 3;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-md-4 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 4;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-md-5 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 5;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-md-6 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 6;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-md-7 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 7;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-md-8 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 8;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-md-9 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 9;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-md-10 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 10;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-md-11 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 11;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-md-12 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 12;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-md-0 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 0;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-md-1 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 8.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-md-2 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 16.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-md-3 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 25%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-md-4 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 33.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-md-5 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 41.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-md-6 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 50%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-md-7 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 58.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-md-8 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 66.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-md-9 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 75%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-md-10 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 83.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-md-11 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 91.66667%;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@media (min-width: 992px) {
|
|
|
|
.col-lg {
|
|
|
|
flex-basis: 0;
|
|
|
|
flex-grow: 1;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 100%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-lg-auto {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
width: auto;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: none;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-lg-1 {
|
|
|
|
flex: 0 0 8.33333%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 8.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-lg-2 {
|
|
|
|
flex: 0 0 16.66667%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 16.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-lg-3 {
|
|
|
|
flex: 0 0 25%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 25%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-lg-4 {
|
|
|
|
flex: 0 0 33.33333%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 33.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-lg-5 {
|
|
|
|
flex: 0 0 41.66667%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 41.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-lg-6 {
|
|
|
|
flex: 0 0 50%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 50%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-lg-7 {
|
|
|
|
flex: 0 0 58.33333%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 58.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-lg-8 {
|
|
|
|
flex: 0 0 66.66667%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 66.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-lg-9 {
|
|
|
|
flex: 0 0 75%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 75%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-lg-10 {
|
|
|
|
flex: 0 0 83.33333%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 83.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-lg-11 {
|
|
|
|
flex: 0 0 91.66667%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 91.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-lg-12 {
|
|
|
|
flex: 0 0 100%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 100%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-lg-first {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: -1;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-lg-1 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 1;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-lg-2 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 2;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-lg-3 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 3;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-lg-4 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 4;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-lg-5 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 5;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-lg-6 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 6;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-lg-7 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 7;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-lg-8 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 8;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-lg-9 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 9;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-lg-10 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 10;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-lg-11 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 11;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-lg-12 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 12;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-lg-0 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 0;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-lg-1 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 8.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-lg-2 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 16.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-lg-3 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 25%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-lg-4 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 33.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-lg-5 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 41.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-lg-6 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 50%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-lg-7 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 58.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-lg-8 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 66.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-lg-9 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 75%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-lg-10 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 83.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-lg-11 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 91.66667%;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@media (min-width: 1200px) {
|
|
|
|
.col-xl {
|
|
|
|
flex-basis: 0;
|
|
|
|
flex-grow: 1;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 100%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-xl-auto {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
width: auto;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: none;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-xl-1 {
|
|
|
|
flex: 0 0 8.33333%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 8.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-xl-2 {
|
|
|
|
flex: 0 0 16.66667%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 16.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-xl-3 {
|
|
|
|
flex: 0 0 25%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 25%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-xl-4 {
|
|
|
|
flex: 0 0 33.33333%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 33.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-xl-5 {
|
|
|
|
flex: 0 0 41.66667%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 41.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-xl-6 {
|
|
|
|
flex: 0 0 50%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 50%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-xl-7 {
|
|
|
|
flex: 0 0 58.33333%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 58.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-xl-8 {
|
|
|
|
flex: 0 0 66.66667%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 66.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-xl-9 {
|
|
|
|
flex: 0 0 75%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 75%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-xl-10 {
|
|
|
|
flex: 0 0 83.33333%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 83.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-xl-11 {
|
|
|
|
flex: 0 0 91.66667%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 91.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.col-xl-12 {
|
|
|
|
flex: 0 0 100%;
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 100%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-xl-first {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: -1;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-xl-1 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 1;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-xl-2 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 2;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-xl-3 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 3;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-xl-4 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 4;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-xl-5 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 5;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-xl-6 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 6;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-xl-7 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 7;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-xl-8 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 8;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-xl-9 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 9;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-xl-10 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 10;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-xl-11 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 11;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.order-xl-12 {
|
2023-07-19 12:29:44 +02:00
|
|
|
order: 12;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-xl-0 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 0;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-xl-1 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 8.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-xl-2 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 16.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-xl-3 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 25%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-xl-4 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 33.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-xl-5 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 41.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-xl-6 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 50%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-xl-7 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 58.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-xl-8 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 66.66667%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-xl-9 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 75%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-xl-10 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 83.33333%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.offset-xl-11 {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-left: 91.66667%;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Demo website styles
|
|
|
|
*/
|
|
|
|
body {
|
2023-07-19 12:29:44 +02:00
|
|
|
padding-top: 60px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@media (min-width: 576px) {
|
|
|
|
body {
|
2023-07-19 12:29:44 +02:00
|
|
|
padding-top: 80px;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.anchor {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
top: -65px;
|
2023-07-19 12:29:44 +02:00
|
|
|
visibility: hidden;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.main-logo {
|
|
|
|
width: 150px;
|
2023-07-19 12:29:44 +02:00
|
|
|
fill: #03a9f4;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@media (max-width: 767px) {
|
|
|
|
.main-logo {
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@media screen and (max-width: 550px) {
|
|
|
|
.example-image {
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 50px;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.examples {
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.example1,
|
|
|
|
.example2 {
|
|
|
|
background-color: #eceff1;
|
|
|
|
display: inline-block;
|
|
|
|
max-width: 300px;
|
|
|
|
padding: 16px;
|
2023-07-19 12:29:44 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@media screen and (max-width: 550px) {
|
|
|
|
.example1,
|
|
|
|
.example2 {
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 100%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
.example1 img,
|
|
|
|
.example2 img {
|
2023-07-19 12:29:44 +02:00
|
|
|
width: 100% !important;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.language-js {
|
2023-07-19 12:29:44 +02:00
|
|
|
font-size: 14px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
2023-07-19 12:29:44 +02:00
|
|
|
:not(pre) > code[class*="language-"],
|
|
|
|
pre[class*="language-"] {
|
|
|
|
background-color: #eceff1 !important;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
pre {
|
|
|
|
margin-bottom: 2em !important;
|
2023-07-19 12:29:44 +02:00
|
|
|
overflow-x: auto;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.example-code {
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 700px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.example-code pre[class*="language-"] {
|
|
|
|
font-size: 14px;
|
2023-07-19 12:29:44 +02:00
|
|
|
margin: 0 !important;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.token.tag {
|
|
|
|
background-color: transparent;
|
|
|
|
border-radius: 0;
|
|
|
|
color: #905;
|
|
|
|
line-height: auto;
|
|
|
|
margin: 0;
|
2023-07-19 12:29:44 +02:00
|
|
|
padding: 0;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
2023-07-19 12:29:44 +02:00
|
|
|
.token.tag:before,
|
|
|
|
.token.tag:after {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.token.operator {
|
2023-07-19 12:29:44 +02:00
|
|
|
background: none !important;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.header {
|
|
|
|
background-color: #fff;
|
2023-07-19 12:29:44 +02:00
|
|
|
z-index: 2000;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@media (min-width: 576px) {
|
|
|
|
.header {
|
2023-07-19 12:29:44 +02:00
|
|
|
padding: 16px 0;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.header.is-visible {
|
2023-07-19 12:29:44 +02:00
|
|
|
top: 0;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.header-inner {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
2023-07-19 12:29:44 +02:00
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.header-logo {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-shrink: 0;
|
2023-07-19 12:29:44 +02:00
|
|
|
position: relative;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.header-logoImage {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-right: 8px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@media (min-width: 576px) {
|
|
|
|
.header-logoImage {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.header-nav {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
margin: 0;
|
|
|
|
margin-right: -12px;
|
|
|
|
overflow-x: auto;
|
|
|
|
padding: 20px 16px 20px 8px;
|
2023-07-19 12:29:44 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@media (min-width: 576px) {
|
|
|
|
.header-nav {
|
|
|
|
margin-right: 0;
|
2023-07-19 12:29:44 +02:00
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.header-navItem {
|
|
|
|
margin: 0;
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-right: 16px;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
.header-navItem:last-child {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-right: 0;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
@media (max-width: 767px) {
|
|
|
|
.hide-small {
|
2023-07-19 12:29:44 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
[v-cloak] {
|
2023-07-19 12:29:44 +02:00
|
|
|
display: none;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Reset
|
|
|
|
*/
|
2023-07-19 12:29:44 +02:00
|
|
|
html,
|
|
|
|
body,
|
|
|
|
body,
|
|
|
|
div,
|
|
|
|
span,
|
|
|
|
object,
|
|
|
|
iframe,
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6,
|
|
|
|
p,
|
|
|
|
blockquote,
|
|
|
|
pre,
|
|
|
|
abbr,
|
|
|
|
address,
|
|
|
|
cite,
|
|
|
|
code,
|
|
|
|
del,
|
|
|
|
dfn,
|
|
|
|
em,
|
|
|
|
ins,
|
|
|
|
kbd,
|
|
|
|
q,
|
|
|
|
samp,
|
|
|
|
small,
|
|
|
|
strong,
|
|
|
|
sub,
|
|
|
|
sup,
|
|
|
|
var,
|
|
|
|
b,
|
|
|
|
i,
|
|
|
|
dl,
|
|
|
|
dt,
|
|
|
|
dd,
|
|
|
|
ol,
|
|
|
|
ul,
|
|
|
|
li,
|
|
|
|
fieldset,
|
|
|
|
form,
|
|
|
|
label,
|
|
|
|
legend,
|
|
|
|
table,
|
|
|
|
caption,
|
|
|
|
tbody,
|
|
|
|
tfoot,
|
|
|
|
thead,
|
|
|
|
tr,
|
|
|
|
th,
|
|
|
|
td,
|
|
|
|
article,
|
|
|
|
aside,
|
|
|
|
figure,
|
|
|
|
footer,
|
|
|
|
header,
|
|
|
|
hgroup,
|
|
|
|
menu,
|
|
|
|
nav,
|
|
|
|
section,
|
|
|
|
time,
|
|
|
|
mark,
|
|
|
|
audio,
|
|
|
|
video {
|
2022-03-23 10:06:37 +01:00
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
font-size: 100%;
|
|
|
|
margin: 0;
|
|
|
|
outline: 0;
|
|
|
|
padding: 0;
|
2023-07-19 12:29:44 +02:00
|
|
|
vertical-align: baseline;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
article,
|
|
|
|
aside,
|
|
|
|
figure,
|
|
|
|
footer,
|
|
|
|
header,
|
|
|
|
main,
|
|
|
|
nav,
|
|
|
|
section {
|
2023-07-19 12:29:44 +02:00
|
|
|
display: block;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
2023-07-19 12:29:44 +02:00
|
|
|
*,
|
|
|
|
*:before,
|
|
|
|
*:after {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* MAIN RULES
|
|
|
|
*/
|
|
|
|
*,
|
|
|
|
*::after,
|
|
|
|
*::before {
|
|
|
|
box-sizing: border-box;
|
2023-07-19 12:29:44 +02:00
|
|
|
outline: none;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
body {
|
|
|
|
background-color: #fff;
|
|
|
|
min-height: 100%;
|
|
|
|
overflow-x: hidden;
|
2023-07-19 12:29:44 +02:00
|
|
|
position: relative;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
p {
|
|
|
|
font-weight: normal;
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-bottom: 1.5em;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
img {
|
2023-07-19 12:29:44 +02:00
|
|
|
max-width: 100%;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
strong {
|
2023-07-19 12:29:44 +02:00
|
|
|
font-weight: 600;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
ul {
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
2022-03-23 10:06:37 +01:00
|
|
|
|
|
|
|
li {
|
|
|
|
list-style: none;
|
2023-07-19 12:29:44 +02:00
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
2023-06-25 23:10:03 +02:00
|
|
|
|
|
|
|
.leaflet-popup-close-button {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-abs {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-group {
|
2023-07-13 18:57:49 +02:00
|
|
|
overflow: auto;
|
|
|
|
white-space: nowrap;
|
|
|
|
scrollbar-width: none;
|
|
|
|
padding: 1rem 0rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-group-item {
|
|
|
|
border: 1px solid rgba(0, 0, 0, 0.125);
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-group-item div {
|
|
|
|
display: block;
|
|
|
|
padding: 0.5rem 1.5rem;
|
2023-07-19 12:29:44 +02:00
|
|
|
}
|