2021-08-28 21:23:25 +01:00
|
|
|
.panel-left .panel-content {
|
2021-08-03 18:39:55 +01:00
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
2021-08-28 21:23:25 +01:00
|
|
|
#panel-left-toggle:not(:checked),
|
|
|
|
#panel-left-toggle:checked {
|
|
|
|
position: absolute;
|
2021-08-30 21:01:32 +01:00
|
|
|
top: -100%;
|
2021-08-28 21:23:25 +01:00
|
|
|
}
|
2021-08-30 21:01:32 +01:00
|
|
|
#panel-left-toggle:focus + * {
|
|
|
|
border-radius: 4px;
|
|
|
|
border: 2px solid var(--white);
|
|
|
|
}
|
|
|
|
#panel-left-icon {
|
|
|
|
cursor: pointer !important;
|
|
|
|
border: 2px solid transparent;
|
2021-07-23 19:28:11 +01:00
|
|
|
}
|
|
|
|
|
2021-08-30 21:01:32 +01:00
|
|
|
.profile-navigation {
|
2021-09-16 16:27:28 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-08-19 20:37:16 +01:00
|
|
|
}
|
2021-07-23 19:28:11 +01:00
|
|
|
|
|
|
|
/* TIMELINE NAVIGATION / PLUGINS */
|
2021-08-30 21:01:32 +01:00
|
|
|
.timeline-nav {
|
|
|
|
margin-bottom: var(--main-size);
|
|
|
|
}
|
2021-09-16 23:53:38 +01:00
|
|
|
|
2021-09-07 16:27:23 +01:00
|
|
|
.timeline-nav a {
|
2021-07-23 19:28:11 +01:00
|
|
|
display: flex;
|
|
|
|
}
|
2021-08-31 18:33:58 +01:00
|
|
|
|
2021-08-05 14:46:17 +01:00
|
|
|
.timeline-nav hr {
|
|
|
|
flex: 1;
|
|
|
|
background: linear-gradient(90deg, var(--bg3), transparent);
|
|
|
|
}
|
2021-07-23 19:28:11 +01:00
|
|
|
.timeline-nav a {
|
|
|
|
color: var(--white);
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-nav .active {
|
|
|
|
color: var(--white);
|
|
|
|
}
|
|
|
|
|
2021-07-24 18:16:27 +01:00
|
|
|
.main-nav a {
|
2021-07-23 19:28:11 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2021-08-28 21:23:25 +01:00
|
|
|
.footer {
|
2021-08-31 18:33:58 +01:00
|
|
|
margin-top: auto;
|
2021-08-30 21:01:32 +01:00
|
|
|
font-size: var(--small-size);
|
2021-08-22 16:26:19 +01:00
|
|
|
}
|
2021-09-16 16:27:28 +01:00
|
|
|
|
|
|
|
@media only screen
|
2021-09-20 16:06:57 +01:00
|
|
|
and (min-width : 1800px) {
|
2021-09-16 16:27:28 +01:00
|
|
|
|
|
|
|
#panel-left-icon {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-09-20 16:06:57 +01:00
|
|
|
.panel-left > * {
|
|
|
|
margin-left: 12vw;
|
|
|
|
}
|
2021-09-16 16:27:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen
|
2021-09-20 16:06:57 +01:00
|
|
|
and (min-width : 1200px) and (max-width : 1800px) {
|
|
|
|
|
|
|
|
#panel-left-icon {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-09-16 16:27:28 +01:00
|
|
|
.panel-left > * {
|
2021-09-20 16:06:57 +01:00
|
|
|
margin-left: 0;
|
2021-09-16 16:27:28 +01:00
|
|
|
}
|
|
|
|
}
|