Files
doloro-site-v6/src/lib/sidebar/sidebar.scss
T
2026-07-21 12:59:12 +01:00

76 lines
1.2 KiB
SCSS

.right-sidebar {
margin: 5px;
margin-right: 0px;
width: 125px;
background-color: var(--secondary);
border: 2px, inset, var(--thirdly);
box-sizing: border-box;
min-height: 900px;
height: 100%;
}
.left-sidebar {
margin: 5px;
margin-left: 0px;
width: 125px;
background-color: var(--secondary);
border: 2px, inset, var(--thirdly);
box-sizing: border-box;
min-height: 900px;
height: 100%;
}
.side-card {
background-color: var(--thirdly);
border: 2px, inset, var(--thirdly);
}
.side-card+.side-card {
margin-top: 5px;
}
.side-card-inner {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: small;
}
.side-card-bottom {
align-self: flex-end;
}
.social-button-div {
display: flex;
flex-wrap: wrap;
align-content: stretch;
justify-content: space-evenly;
margin-top: 5px;
margin-bottom: 5px;
}
.social-button {
display: block;
width: 30px;
height: 30px;
border: 2px outset var(--brand-twitter);
background: var(--brand-twitter);
margin: 2px;
img {
width: 30px;
height: auto;
}
}
.social-button:hover {
filter: brightness(110%);
}
.social-button:active {
border-style: inset;
img {}
}