hugo-theme-stack-stars/assets/scss/partials/sidebar.scss

161 lines
3.1 KiB
SCSS
Raw Normal View History

2020-08-22 11:20:08 +00:00
.sidebar {
&.sticky {
@include respond(md) {
2020-08-22 11:20:08 +00:00
position: sticky;
}
}
}
.left-sidebar {
display: flex;
flex-direction: column;
flex-shrink: 0;
align-self: stretch;
2020-08-22 11:20:08 +00:00
width: 100%;
padding: 30px 0 15px 0;
max-width: none;
2020-10-04 13:58:32 +00:00
--sidebar-avatar-size: 120px;
--sidebar-element-separation: 20px;
@include respond(md) {
width: auto;
padding-top: var(--main-top-padding);
padding-bottom: var(--main-top-padding);
max-height: 100vh;
2020-10-04 13:58:32 +00:00
}
@include respond(2xl) {
--sidebar-avatar-size: 140px;
--sidebar-element-separation: 25px;
2020-08-22 11:20:08 +00:00
}
&.sticky {
top: 0;
2020-08-22 11:20:08 +00:00
}
}
.right-sidebar {
flex-shrink: 0;
display: none;
2020-08-22 11:20:08 +00:00
&.sticky {
2020-09-04 11:10:11 +00:00
top: 0;
2020-08-22 11:20:08 +00:00
}
@include respond(lg) {
padding-top: var(--main-top-padding);
2020-08-22 11:20:08 +00:00
}
}
.site-info {
z-index: 1;
transition: box-shadow 0.5s ease;
2020-10-04 13:58:32 +00:00
padding: 15px;
@include respond(md) {
padding: 0;
2020-08-22 11:20:08 +00:00
}
.site-avatar {
position: relative;
margin: 0;
2020-10-04 13:58:32 +00:00
width: var(--sidebar-avatar-size);
height: var(--sidebar-avatar-size);
2020-08-22 11:20:08 +00:00
2020-10-04 13:58:32 +00:00
margin-bottom: var(--sidebar-element-separation);
2020-08-22 11:20:08 +00:00
.site-logo {
width: 100%;
height: 100%;
border-radius: 100%;
box-shadow: var(--shadow-l1);
2020-08-22 11:20:08 +00:00
}
.emoji {
position: absolute;
width: 40px;
height: 40px;
line-height: 40px;
2020-08-22 11:20:08 +00:00
border-radius: 100%;
bottom: 0;
right: 0;
text-align: center;
font-size: 20px;
background-color: var(--card-background);
box-shadow: var(--shadow-l2);
2020-08-22 11:20:08 +00:00
@include respond(2xl) {
width: 50px;
height: 50px;
line-height: 50px;
2020-08-22 11:20:08 +00:00
}
}
}
.site-name {
color: var(--accent-color);
margin: 0;
font-size: 1.8rem;
2020-09-03 09:42:01 +00:00
@include respond(2xl) {
2020-09-03 09:42:01 +00:00
font-size: 2rem;
}
2020-08-22 11:20:08 +00:00
}
.site-description {
color: var(--body-text-color);
2020-09-03 21:32:28 +00:00
font-weight: normal;
2020-08-22 11:20:08 +00:00
margin: 10px 0;
font-size: 1.6rem;
2020-08-22 11:20:08 +00:00
@include respond(2xl) {
font-size: 1.8rem;
2020-08-22 11:20:08 +00:00
}
}
}
.sidebar {
.widget {
margin-bottom: var(--section-separation);
&:not(:last-of-type):after {
content: "";
width: 100px;
height: 2px;
background-color: var(--body-text-color);
display: block;
margin-top: var(--section-separation);
2020-08-22 11:20:08 +00: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;
.icon-tabler-toggle-right {
display: none;
}
}