58 lines
874 B
CSS
58 lines
874 B
CSS
.panel-left .panel-content {
|
|
left: 0;
|
|
}
|
|
|
|
#panel-left-toggle:not(:checked),
|
|
#panel-left-toggle:checked {
|
|
position: absolute;
|
|
top: -100%;
|
|
}
|
|
|
|
#panel-left-icon {
|
|
cursor: pointer !important;
|
|
border: 2px solid transparent;
|
|
}
|
|
|
|
.profile-navigation {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
/* TIMELINE NAVIGATION / PLUGINS */
|
|
.timeline-nav {
|
|
margin-bottom: var(--main-size);
|
|
}
|
|
|
|
.timeline-nav a {
|
|
display: flex;
|
|
}
|
|
|
|
.timeline-nav hr {
|
|
flex: 1;
|
|
background: linear-gradient(90deg, var(--bg3), transparent);
|
|
}
|
|
.timeline-nav a {
|
|
color: var(--white);
|
|
}
|
|
|
|
.timeline-nav .active {
|
|
color: var(--white);
|
|
}
|
|
|
|
.main-nav a {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.footer {
|
|
margin-top: auto;
|
|
font-size: var(--small-size);
|
|
}
|
|
|
|
@media only screen
|
|
and (min-width : 1281px) {
|
|
|
|
#panel-left-icon {
|
|
display: none;
|
|
}
|
|
} |