2021-10-19 20:33:01 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.section-panel-left {
|
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-10-04 12:31:06 +01:00
|
|
|
|
|
2021-10-19 20:33:01 +01:00
|
|
|
|
.panel-left-icon {
|
2021-08-30 21:01:32 +01:00
|
|
|
|
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
|
|
|
|
|
2021-10-19 20:33:01 +01:00
|
|
|
|
|
2021-11-26 13:05:23 +00:00
|
|
|
|
/* FEED NAVIGATION / PLUGINS */
|
|
|
|
|
.feed-nav {
|
2021-10-19 20:33:01 +01:00
|
|
|
|
margin-bottom: var(--medium);
|
2021-08-30 21:01:32 +01:00
|
|
|
|
}
|
2021-09-16 23:53:38 +01:00
|
|
|
|
|
2021-11-26 13:05:23 +00:00
|
|
|
|
.feed-nav a {
|
2021-07-23 19:28:11 +01:00
|
|
|
|
display: flex;
|
|
|
|
|
}
|
2021-08-31 18:33:58 +01:00
|
|
|
|
|
2021-11-26 13:05:23 +00:00
|
|
|
|
.feed-nav hr {
|
2021-08-05 14:46:17 +01:00
|
|
|
|
flex: 1;
|
2021-10-19 20:33:01 +01:00
|
|
|
|
background: linear-gradient(90deg, var(--accent), transparent);
|
2021-08-05 14:46:17 +01:00
|
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
|
|
2021-11-26 13:05:23 +00:00
|
|
|
|
.feed-nav a {
|
2021-10-19 20:33:01 +01:00
|
|
|
|
color: var(--foreground);
|
2021-07-23 19:28:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-26 13:05:23 +00:00
|
|
|
|
.feed-nav .active {
|
2021-10-19 20:33:01 +01:00
|
|
|
|
color: var(--foreground);
|
2021-07-23 19:28:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
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-10-19 20:33:01 +01:00
|
|
|
|
font-size: var(--default);
|
2021-08-22 16:26:19 +01:00
|
|
|
|
}
|
2021-09-16 16:27:28 +01:00
|
|
|
|
|
2021-12-06 19:07:59 +00:00
|
|
|
|
/* > 720p */
|
|
|
|
|
@media only screen and (min-width:1281px) {
|
2021-10-19 20:33:01 +01:00
|
|
|
|
.panel-left-icon {
|
2021-09-16 16:27:28 +01:00
|
|
|
|
display: none;
|
|
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-06 19:07:59 +00:00
|
|
|
|
/* > 1080p */
|
|
|
|
|
@media only screen and (min-width:1921px) {
|
|
|
|
|
/*
|
|
|
|
|
* Using the Van de Graaf Canon and Tschichold’s recommended 2:3 page-size ratio
|
|
|
|
|
*
|
|
|
|
|
* 50% - (100 * 2/3) / 2 = 33%
|
|
|
|
|
*
|
|
|
|
|
* > .section-panel-left
|
|
|
|
|
* 50 % - 33% = 17%
|
|
|
|
|
*/
|
|
|
|
|
.section-panel-left {
|
|
|
|
|
left: 0;
|
|
|
|
|
margin-left: 17vw;
|
|
|
|
|
}
|
|
|
|
|
}
|