52 lines
890 B
SCSS
52 lines
890 B
SCSS
@use "./base.scss";
|
|
@use "./variables.scss" as *;
|
|
|
|
// put your custom CSS here!
|
|
|
|
.page-title {
|
|
& a {
|
|
hyphens: none;
|
|
}
|
|
}
|
|
.webring-container {
|
|
position: fixed;
|
|
top: 0;
|
|
width: 100%;
|
|
@media all and (max-width: $fullPageWidth) {
|
|
position: inherit;
|
|
max-width: 750px;
|
|
}
|
|
|
|
background-color: var(--light);
|
|
|
|
& .webring {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin: 0.5em;
|
|
|
|
& .webring-previous {
|
|
&::before {
|
|
content: "⇠ ";
|
|
}
|
|
}
|
|
|
|
& .webring-next {
|
|
&::after {
|
|
content: " ⇢";
|
|
}
|
|
}
|
|
|
|
& .webring-short {
|
|
display: none;
|
|
}
|
|
|
|
@media screen and (max-width: 600px) {
|
|
& .webring-long {
|
|
display: none; /* Hide long text on small screens */
|
|
}
|
|
& .webring-short {
|
|
display: inline; /* Display shortcut text on small screens */
|
|
}
|
|
}
|
|
}
|
|
}
|