Files
blog/sass/_main.scss

662 lines
11 KiB
SCSS

* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html {
font-size: 16px;
scroll-behavior: smooth;
scrollbar-color: var(--primary-color) transparent;
accent-color: var(--primary-color);
overflow-wrap: break-word;
}
// Smaller font size on mobile
// @media only screen and (max-device-width: 480px) {
// html {
// font-size: 14px;
// }
// }
html,
body {
margin: 0;
padding: 0;
}
body {
font-family: InterVariable, sans-serif;
line-height: 1.6;
color: var(--fg-color);
background-color: var(--bg-color);
// Put footer at the bottom for short pages, such as the 404
display: grid;
min-height: 100vh;
grid-template-rows: auto minmax(auto, 1fr) auto; // Header, stuff, footer
}
// Style text selection to use primary color
::selection {
color: var(--bg-color);
background-color: var(--primary-color);
}
// Make focused anchor not get covered by nav,
// and flash it with primary color when jumping to it
:target {
scroll-margin-top: 15vh;
animation: highlight-in-out var(--transition-long);
animation-delay: 1s;
@keyframes highlight-in-out {
50% {
color: var(--primary-color);
font-weight: 800;
}
}
}
// LAYOUT
.container {
width: 80vw;
margin-left: auto;
margin-right: auto;
max-width: var(--content-width);
}
@media only screen and (max-device-width: 480px) {
.container {
width: 90vw;
}
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: JetBrainsMono, monospace;
font-feature-settings: "ss02";
font-style: italic;
font-weight: 200;
line-height: 1.25;
margin: 3rem 0 1rem;
.zola-anchor {
display: none;
visibility: hidden;
}
&:hover .zola-anchor {
display: inline-block;
text-decoration: none;
visibility: visible;
}
}
h1 {
font-size: 3rem;
font-weight: 400;
letter-spacing: -0.14rem;
}
h2 {
font-size: 2.4rem;
letter-spacing: -0.14rem;
}
h3 {
font-size: 1.5rem;
letter-spacing: -0.08rem;
}
h4 {
font-size: 1.25rem;
letter-spacing: -0.06rem;
}
h5 {
font-size: 1rem;
letter-spacing: -0.04rem;
}
h6 {
font-size: 0.75rem;
}
a {
color: var(--primary-color);
cursor: pointer;
font-weight: 600;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
small {
color: var(--fg-muted-5);
font-size: 0.8rem;
}
dl {
padding: 0;
dt {
padding: 0;
margin-top: 1rem;
font-size: 1rem;
font-weight: bold;
}
dd {
padding: 0;
margin-bottom: 1rem;
}
}
hr {
border: 0.125rem solid var(--fg-muted-3);
margin: 3rem auto;
width: 40%;
border-radius: 9999px;
}
blockquote {
border-left: 0.25rem solid var(--primary-color);
border-radius: 0.2rem;
color: var(--fg-muted-5);
margin: 0;
padding: 0 0.75rem;
}
abbr {
cursor: help;
text-decoration: underline dotted;
}
// CODE
pre,
code,
kbd {
font-family: JetBrainsMono, monospace;
}
code:not(pre code) {
padding: 2px 6px;
border-radius: var(--rounded-corner-small);
background-color: var(--fg-muted-2);
color: var(--red-fg);
}
pre {
line-height: normal; // Unset line height
padding: 1rem;
margin: 1rem 0 1rem;
border-radius: var(--rounded-corner);
max-width: 100vw;
box-shadow: var(--shadow);
overflow: auto;
table td {
padding: 0;
border: none;
}
// The line number cells
table td:nth-of-type(1) {
text-align: center;
user-select: none;
}
mark {
display: block;
background-color: var(--fg-muted-1);
color: var(--fg-color); // Unset mark color from primary color to text color
border-radius: 0; // Unset code block border radius
padding: 0; // Unset mark padding
}
table {
width: 100%;
border-collapse: collapse;
}
// The line numbers already provide some kind of left/right padding
&[data-linenos] {
padding: 1rem 0;
}
}
kbd {
background-color: var(--fg-muted-1);
border-radius: var(--rounded-corner-small);
box-shadow: inset 0 -2px 0 var(--fg-muted-2), 0 -1px 0 var(--fg-muted-2);
cursor: pointer;
display: inline-block;
font-size: 0.8rem;
line-height: normal;
padding: 2px 6px;
// Small nice thingy, keys can be pressed!
&:active {
background-color: var(--fg-muted-2);
box-shadow: inset 0 1px 0 var(--fg-muted-2);
transform: translateY(2px);
}
}
mark {
padding: 2px 6px;
border-radius: var(--rounded-corner-small);
background-color: var(--primary-color-alpha);
color: var(--primary-color);
}
figcaption {
margin-top: -1rem;
margin-bottom: 2rem;
display: block;
text-align: center;
color: var(--fg-muted-4);
font-size: 0.8rem;
}
details {
background-color: var(--fg-muted-1);
border-radius: var(--rounded-corner);
box-shadow: var(--shadow);
padding: 1rem;
& > summary {
cursor: pointer;
}
}
// TABLES
table {
border-collapse: collapse;
border-radius: var(--rounded-corner);
overflow: hidden;
table-layout: fixed;
width: 100%;
th {
font-weight: bold;
}
th,
td {
padding: 0.5rem 1rem;
}
tr {
&:nth-child(even) {
background-color: var(--fg-muted-1);
}
th {
background-color: var(--fg-muted-2);
}
}
}
td,
th {
padding: 0;
}
// MEDIA
img,
video {
display: block;
margin: 2rem auto;
max-width: 100%;
border-radius: var(--rounded-corner);
box-shadow: var(--shadow);
}
img {
transition: var(--transition-longer);
&:not(.no-hover):hover {
transform: scale(125%);
border-radius: 0;
box-shadow: var(--shadow-raised);
}
@media only screen and (max-device-width: 480px) {
&:not(.no-hover):hover {
transform: scale(110%);
}
}
}
.full {
width: 100%;
}
.pixels {
image-rendering: pixelated;
}
.transparent {
border-radius: 0;
box-shadow: none;
}
// NAVBAR
.nav {
overflow: auto;
width: 80vw;
max-width: calc(var(--content-width) + 10rem);
margin: 1rem auto;
box-shadow: 0px 12px 24px -16px rgba(0, 0, 0, 0.5);
border-radius: var(--rounded-corner-big);
background-color: var(--nav-bg);
backdrop-filter: blur(24px);
-webkit-backdrop-filter: blur(24px);
position: sticky;
top: 1rem;
z-index: 1;
&-container {
margin: 0.5rem 0.5rem;
position: relative;
text-align: center;
}
ul {
list-style-type: none;
margin: 1rem 0 0;
padding: 0;
text-align: center;
}
li {
transition: var(--transition);
color: var(--default-color);
display: inline-block;
}
a {
display: inline-block;
padding: 0.4rem 1rem;
border-radius: var(--rounded-corner);
background-color: transparent;
color: var(--fg-muted-4);
transition: var(--transition);
&:hover {
background-color: var(--fg-muted-1);
color: var(--primary-color);
text-decoration: none;
}
}
@media only screen and (max-device-width: 480px) {
& {
width: 90vw;
position: static;
}
}
@media (min-width: 600px) {
& {
border-radius: 9999px;
&-container {
text-align: left;
}
ul {
bottom: 0;
position: absolute;
right: 0;
}
a {
border-radius: 9999px;
}
}
}
}
// FOOTER
.footer {
text-align: center;
padding: 3rem 0 3rem;
font-size: 1rem;
margin-top: 4rem;
details {
all: unset;
}
}
// LINK ARROWS
.link-page::after {
content: "";
}
.link-site::after {
content: "";
}
// BUTTONS
.dialog-buttons {
display: flex;
flex-direction: row;
align-items: baseline;
justify-content: space-between;
margin-top: 6rem;
}
.inline-button {
background-color: var(--fg-muted-1);
border-radius: var(--rounded-corner);
color: var(--fg-color);
display: inline-block;
font-size: 0.9rem;
padding: 0.4rem 1rem;
transition: var(--transition);
&:hover {
background-color: var(--fg-muted-2);
text-decoration: none;
}
&.colored {
color: var(--primary-color);
background-color: transparent;
&:hover {
background-color: var(--primary-color-alpha);
}
}
}
// CRT
.crt {
margin: 1rem 0 1rem;
border-radius: var(--rounded-corner);
box-shadow: var(--glow);
background: var(--crt-bg);
pre {
color: var(--primary-color);
padding: 1rem 1rem;
text-shadow: var(--primary-color-alpha) 0 0 4px,
var(--primary-color) 0 0 12px;
// Unset some <pre> stuff
background-color: unset;
box-shadow: unset;
margin: unset;
}
}
.scanlines {
position: relative;
overflow: hidden;
}
.scanlines::after {
animation: scanlines 250ms linear infinite;
background: repeating-linear-gradient(
0deg,
rgba(0, 0, 0, 0.25),
rgba(0, 0, 0, 0.25) 1px,
transparent 3px,
transparent 4px
);
content: "";
display: block;
height: calc(100% + 8px);
left: 0;
pointer-events: none;
position: absolute;
top: 0;
width: 100%;
@keyframes scanlines {
0% {
transform: translateY(0px);
}
100% {
transform: translateY(-8px);
}
}
}
.cursor {
animation: blicking 1s infinite;
@keyframes blicking {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
75% {
opacity: 1;
}
}
}
// STATEMENTS
.statement-container {
margin: 1rem 0 1rem;
padding: 1rem 1rem 0.5rem 1rem;
border-radius: var(--rounded-corner);
box-shadow: var(--shadow);
* {
margin: 0;
}
p,
ul,
ol {
margin: 0.5rem 0 0.5rem;
}
.big {
font-size: 1.5rem;
}
&.archive {
background-color: var(--purple-bg);
color: var(--purple-fg);
}
&.disclaimer {
background-color: var(--red-bg);
color: var(--red-fg);
}
&.trigger {
background-color: var(--yellow-bg);
color: var(--yellow-fg);
}
}
.johnvertisement {
margin: 0 auto;
display: block;
width: min(728px, 100vw);
height: min(90px, 12.367vw);
border: none;
}
.tags {
list-style: none;
padding: 0;
display: inline-block;
li {
display: inline-block;
margin: 0 0.2rem 0.4rem 0;
}
}
.tag {
border-radius: 9999px;
color: var(--fg-color);
padding: 0.25rem 0.75rem;
transition: var(--transition);
background-color: var(--fg-muted-1);
&:hover {
color: var(--primary-color);
background-color: var(--primary-color-alpha);
text-decoration: none;
}
&::before {
content: "#";
}
}
.post-nav {
display: flex;
margin-top: 6rem;
border-top: 1px solid var(--fg-muted-2);
.post-nav-item {
font-weight: 600;
width: 50%;
padding-top: 1rem;
text-decoration: none;
&:hover .post-title {
color: var(--primary-color);
}
&:nth-child(2n + 1) {
padding-left: 0;
padding-right: 1rem;
}
&:nth-child(2n) {
text-align: right;
padding-right: 0;
padding-left: 1rem;
}
.nav-arrow {
font-weight: 400;
color: var(--fg-muted-5);
margin-bottom: 0.5rem;
}
.post-title {
color: var(--fg-color);
transition: var(--transition);
}
}
}