291 lines
4.4 KiB
Stylus
291 lines
4.4 KiB
Stylus
mobile-smallest() {
|
|
@media (max-width: 413px) {
|
|
{block};
|
|
}
|
|
}
|
|
|
|
mobile-small() {
|
|
@media (max-width: 567px) {
|
|
{block};
|
|
}
|
|
}
|
|
|
|
mobile() {
|
|
@media (max-width: 767px) {
|
|
{block};
|
|
}
|
|
}
|
|
|
|
tablet-mobile() {
|
|
@media (max-width: 991px) {
|
|
{block};
|
|
}
|
|
}
|
|
|
|
tablet-desktop() {
|
|
@media (min-width: 768px) {
|
|
{block};
|
|
}
|
|
}
|
|
|
|
tablet() {
|
|
@media (min-width: 768px) and (max-width: 991px) {
|
|
{block};
|
|
}
|
|
}
|
|
|
|
desktop() {
|
|
@media (min-width: 992px) {
|
|
{block};
|
|
}
|
|
}
|
|
|
|
desktop-large() {
|
|
@media (min-width: 1200px) {
|
|
{block};
|
|
}
|
|
}
|
|
|
|
desktop-largest() {
|
|
@media (min-width: 1600px) {
|
|
{block};
|
|
}
|
|
}
|
|
|
|
sidebar() {
|
|
if (($scheme == 'Muse') or ($scheme == 'Mist')) {
|
|
{block}
|
|
} else {
|
|
+tablet-mobile() {
|
|
{block}
|
|
}
|
|
}
|
|
}
|
|
|
|
random-color($min, $max) {
|
|
return floor(math(0, 'random') * ($max - $min + 1) + $min);
|
|
}
|
|
|
|
word-wrap() {
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
disable-user-select() {
|
|
-webkit-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
sidebar-inline-links-item() {
|
|
box-sizing: border-box;
|
|
display: inline-block;
|
|
max-width: 100%;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
flex-wrap() {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
|
|
flex-column() {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
post-card() {
|
|
background: var(--card-bg-color);
|
|
border-left: 3px solid $red;
|
|
margin: $post-card-margin;
|
|
}
|
|
|
|
font-family-icons($icon = '') {
|
|
if ($icon) {
|
|
content: $icon;
|
|
}
|
|
font-family: 'Font Awesome 6 Free';
|
|
font-weight: 900;
|
|
}
|
|
|
|
main-container() {
|
|
margin: 0 auto;
|
|
width: $content-desktop;
|
|
|
|
+mobile() {
|
|
width: auto;
|
|
}
|
|
|
|
+desktop-large() {
|
|
width: $content-desktop-large;
|
|
}
|
|
|
|
+desktop-largest() {
|
|
width: $content-desktop-largest;
|
|
}
|
|
}
|
|
|
|
sidebar-toggle-position($reverse) {
|
|
$condition = ($sidebar-toggle-alignment == 'right') == $reverse;
|
|
$alignment = $condition ? 'left' : 'right';
|
|
{$alignment}: $b2t-position-right;
|
|
+tablet-mobile() {
|
|
{$alignment}: $b2t-position-right-mobile;
|
|
}
|
|
}
|
|
|
|
sidebar-toggle() {
|
|
background: $b2t-bg-color;
|
|
cursor: pointer;
|
|
opacity: $b2t-opacity;
|
|
position: fixed;
|
|
z-index: $zindex-3;
|
|
sidebar-toggle-position(false);
|
|
|
|
&:hover {
|
|
opacity: $b2t-opacity-hover;
|
|
}
|
|
|
|
+tablet-mobile() {
|
|
opacity: $b2t-opacity-hover;
|
|
}
|
|
}
|
|
|
|
round-icon($diameter) {
|
|
border-radius: 50%;
|
|
content: ' ';
|
|
height: $diameter;
|
|
width: $diameter;
|
|
}
|
|
|
|
toggle-arrow($position) {
|
|
if ($position == 'right') {
|
|
:first-child {
|
|
top: 2px;
|
|
transform: rotate(-45deg);
|
|
width: 50%;
|
|
}
|
|
|
|
:last-child {
|
|
top: -2px;
|
|
transform: rotate(45deg);
|
|
width: 50%;
|
|
}
|
|
} else {
|
|
:first-child {
|
|
left: 50%;
|
|
top: 2px;
|
|
transform: rotate(45deg);
|
|
width: 50%;
|
|
}
|
|
|
|
:last-child {
|
|
left: 50%;
|
|
top: -2px;
|
|
transform: rotate(-45deg);
|
|
width: 50%;
|
|
}
|
|
}
|
|
}
|
|
|
|
toggle-close($position) {
|
|
:nth-child(2) {
|
|
opacity: 0;
|
|
}
|
|
|
|
if ($position == 'right') {
|
|
:first-child {
|
|
top: 6px;
|
|
transform: rotate(-45deg);
|
|
}
|
|
|
|
:last-child {
|
|
top: -6px;
|
|
transform: rotate(45deg);
|
|
}
|
|
} else {
|
|
:first-child {
|
|
top: 6px;
|
|
transform: rotate(45deg);
|
|
}
|
|
|
|
:last-child {
|
|
top: -6px;
|
|
transform: rotate(-45deg);
|
|
}
|
|
}
|
|
}
|
|
|
|
site-nav-hide-by-default() {
|
|
--scroll-height: 0;
|
|
height: 0;
|
|
overflow: hidden;
|
|
transition: $transition-ease;
|
|
transition-property: height, visibility;
|
|
visibility: hidden;
|
|
|
|
body:not(.site-nav-on) & .animated {
|
|
animation: none;
|
|
}
|
|
|
|
body.site-nav-on & {
|
|
height: var(--scroll-height);
|
|
visibility: unset;
|
|
}
|
|
}
|
|
|
|
button($color) {
|
|
background: transparent;
|
|
color: $color;
|
|
cursor: pointer;
|
|
line-height: 2;
|
|
padding: 0 15px;
|
|
|
|
&:hover {
|
|
background: $color;
|
|
color: white;
|
|
}
|
|
}
|
|
|
|
gemini-block() {
|
|
background: var(--content-bg-color);
|
|
border-radius: $border-radius-inner;
|
|
box-shadow: $box-shadow-inner;
|
|
}
|
|
|
|
gemini-block-not-first() {
|
|
border-radius: $border-radius;
|
|
box-shadow: $box-shadow;
|
|
margin-top: $sidebar-offset;
|
|
|
|
+tablet() {
|
|
margin-top: $content-tablet-padding;
|
|
}
|
|
|
|
+mobile() {
|
|
margin-top: $content-mobile-padding;
|
|
}
|
|
}
|
|
|
|
menu-item-row() {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.badge {
|
|
margin-left: auto;
|
|
}
|
|
}
|
|
|
|
badge() {
|
|
background: $badge-background;
|
|
border-radius: $badge-border-radius;
|
|
color: $badge-color;
|
|
font-weight: bold;
|
|
line-height: 1;
|
|
margin-left: .35em;
|
|
padding: $badge-padding;
|
|
text-shadow: $badge-text-shadow;
|
|
}
|