2020-08-22 07:20:08 -04:00
|
|
|
.sidebar {
|
|
|
|
&.sticky {
|
2021-06-20 06:53:10 -04:00
|
|
|
@include respond(md) {
|
2020-08-22 07:20:08 -04:00
|
|
|
position: sticky;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.left-sidebar {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-shrink: 0;
|
2021-06-20 06:53:10 -04:00
|
|
|
align-self: stretch;
|
2022-03-03 17:11:19 -05:00
|
|
|
gap: var(--sidebar-element-separation);
|
2021-06-20 06:53:10 -04:00
|
|
|
max-width: none;
|
2022-03-04 04:24:21 -05:00
|
|
|
width: 100%;
|
2022-03-03 17:11:19 -05:00
|
|
|
position: relative;
|
|
|
|
|
2022-03-04 04:24:21 -05:00
|
|
|
--sidebar-avatar-size: 100px;
|
2021-06-20 06:53:10 -04:00
|
|
|
--sidebar-element-separation: 20px;
|
2022-03-04 04:24:21 -05:00
|
|
|
--emoji-size: 40px;
|
|
|
|
--emoji-font-size: 20px;
|
2021-06-20 06:53:10 -04:00
|
|
|
|
|
|
|
@include respond(md) {
|
|
|
|
width: auto;
|
2021-06-21 12:44:54 -04:00
|
|
|
padding-top: var(--main-top-padding);
|
|
|
|
padding-bottom: var(--main-top-padding);
|
2021-06-20 06:53:10 -04:00
|
|
|
max-height: 100vh;
|
2020-10-04 09:58:32 -04:00
|
|
|
}
|
|
|
|
|
2021-06-20 06:53:10 -04:00
|
|
|
@include respond(2xl) {
|
2022-03-04 04:24:21 -05:00
|
|
|
--sidebar-avatar-size: 120px;
|
2021-06-20 06:53:10 -04:00
|
|
|
--sidebar-element-separation: 25px;
|
2022-03-04 04:24:21 -05:00
|
|
|
--emoji-size: 40px;
|
2020-08-22 07:20:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&.sticky {
|
2020-09-03 17:37:48 -04:00
|
|
|
top: 0;
|
2020-08-22 07:20:08 -04:00
|
|
|
}
|
2022-03-04 04:24:21 -05:00
|
|
|
|
|
|
|
&.compact {
|
|
|
|
--sidebar-avatar-size: 80px;
|
|
|
|
--emoji-size: 30px;
|
|
|
|
--emoji-font-size: 15px;
|
|
|
|
|
|
|
|
header {
|
|
|
|
@include respond(lg) {
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-meta {
|
|
|
|
gap: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-name {
|
|
|
|
font-size: 1.4rem;
|
|
|
|
|
|
|
|
@include respond(2xl) {
|
|
|
|
font-size: 1.75rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-description {
|
|
|
|
font-size: 1.4rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-08-22 07:20:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.right-sidebar {
|
2022-02-26 17:45:25 -05:00
|
|
|
width: 100%;
|
2021-06-20 06:53:10 -04:00
|
|
|
display: none;
|
2022-03-03 17:11:19 -05:00
|
|
|
flex-direction: column;
|
|
|
|
gap: var(--widget-separation);
|
2020-08-22 07:20:08 -04:00
|
|
|
|
|
|
|
&.sticky {
|
2020-09-04 07:10:11 -04:00
|
|
|
top: 0;
|
2020-08-22 07:20:08 -04:00
|
|
|
}
|
2020-08-24 14:28:17 -04:00
|
|
|
|
2021-06-20 06:53:10 -04:00
|
|
|
@include respond(lg) {
|
2020-09-25 17:19:21 -04:00
|
|
|
padding-top: var(--main-top-padding);
|
2020-08-22 07:20:08 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-03 17:11:19 -05:00
|
|
|
.sidebar header {
|
2020-08-22 07:20:08 -04:00
|
|
|
z-index: 1;
|
|
|
|
transition: box-shadow 0.5s ease;
|
2022-03-03 17:11:19 -05:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: var(--sidebar-element-separation);
|
2021-06-20 06:53:10 -04:00
|
|
|
|
|
|
|
@include respond(md) {
|
|
|
|
padding: 0;
|
2020-08-22 07:20:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.site-avatar {
|
|
|
|
position: relative;
|
|
|
|
margin: 0;
|
2020-10-04 09:58:32 -04:00
|
|
|
width: var(--sidebar-avatar-size);
|
|
|
|
height: var(--sidebar-avatar-size);
|
2022-03-04 04:24:21 -05:00
|
|
|
flex-shrink: 0;
|
2020-08-22 07:20:08 -04:00
|
|
|
|
|
|
|
.site-logo {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
border-radius: 100%;
|
2020-09-09 10:14:30 -04:00
|
|
|
box-shadow: var(--shadow-l1);
|
2020-08-22 07:20:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.emoji {
|
|
|
|
position: absolute;
|
2022-03-04 04:24:21 -05:00
|
|
|
width: var(--emoji-size);
|
|
|
|
height: var(--emoji-size);
|
|
|
|
line-height: var(--emoji-size);
|
2020-08-22 07:20:08 -04:00
|
|
|
border-radius: 100%;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
text-align: center;
|
2022-03-04 04:24:21 -05:00
|
|
|
font-size: var(--emoji-font-size);
|
2020-08-22 07:20:08 -04:00
|
|
|
background-color: var(--card-background);
|
2020-09-09 10:14:30 -04:00
|
|
|
box-shadow: var(--shadow-l2);
|
2020-08-22 07:20:08 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-03 17:11:19 -05:00
|
|
|
.site-meta {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 10px;
|
2022-03-04 04:24:21 -05:00
|
|
|
justify-content: center;
|
2022-03-03 17:11:19 -05:00
|
|
|
}
|
|
|
|
|
2020-08-22 07:20:08 -04:00
|
|
|
.site-name {
|
|
|
|
color: var(--accent-color);
|
|
|
|
margin: 0;
|
2022-03-04 04:24:21 -05:00
|
|
|
font-size: 1.6rem;
|
2020-09-03 05:42:01 -04:00
|
|
|
|
2021-06-20 06:53:10 -04:00
|
|
|
@include respond(2xl) {
|
2022-03-04 04:24:21 -05:00
|
|
|
font-size: 1.8rem;
|
2020-09-03 05:42:01 -04:00
|
|
|
}
|
2020-08-22 07:20:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.site-description {
|
|
|
|
color: var(--body-text-color);
|
2020-09-03 17:32:28 -04:00
|
|
|
font-weight: normal;
|
2022-03-03 17:11:19 -05:00
|
|
|
margin: 0;
|
2022-03-04 04:24:21 -05:00
|
|
|
font-size: 1.4rem;
|
2020-08-22 07:20:08 -04:00
|
|
|
|
2021-06-20 06:53:10 -04:00
|
|
|
@include respond(2xl) {
|
2022-03-04 04:24:21 -05:00
|
|
|
font-size: 1.6rem;
|
2020-08-22 07:20:08 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-23 13:03:40 -05:00
|
|
|
[data-scheme="dark"] {
|
|
|
|
#dark-mode-toggle {
|
|
|
|
color: var(--accent-color);
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
|
|
.icon-tabler-toggle-left {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-tabler-toggle-right {
|
|
|
|
display: unset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#dark-mode-toggle {
|
|
|
|
margin-top: auto;
|
|
|
|
color: var(--body-text-color);
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
2022-03-03 17:11:19 -05:00
|
|
|
gap: var(--menu-icon-separation);
|
2020-12-23 13:03:40 -05:00
|
|
|
|
|
|
|
.icon-tabler-toggle-right {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2022-02-27 04:51:02 -05:00
|
|
|
|
|
|
|
#i18n-switch {
|
|
|
|
color: var(--body-text-color);
|
|
|
|
display: inline-flex;
|
|
|
|
align-content: center;
|
2022-03-03 17:11:19 -05:00
|
|
|
gap: var(--menu-icon-separation);
|
2022-02-27 04:51:02 -05:00
|
|
|
|
|
|
|
select {
|
|
|
|
border: 0;
|
|
|
|
background-color: transparent;
|
|
|
|
color: var(--body-text-color);
|
|
|
|
|
|
|
|
option {
|
|
|
|
color: var(--card-text-color-main);
|
|
|
|
background-color: var(--card-background);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|