Add blog to website.

This commit is contained in:
Cutieguwu
2025-07-29 21:24:33 -04:00
parent 8c8fd1eac6
commit 55ced0093c
18 changed files with 355 additions and 38 deletions

View File

@@ -15,6 +15,11 @@
margin: 0;
}
a:hover {
transition: var(--transition-cut);
transform: var(--transform-scale-x) var(--transform-scale-y);
}
.phantom {
width: var(--item-size);
height: var(--item-size);
@@ -25,12 +30,32 @@
Due to how flexboxes function, settings `display: none`
will result in the box just scaling as if the element
never existed.
phantom needs to sit beside a element in hierarchy, otherwise
phantom will inherit from a like this:
.pane_nav > .quick_links > a > .phantom
*/
background-color: inherit;
}
a:hover {
transition: var(--transition-cut);
transform: var(--transform-scale-x) var(--transform-scale-y);
}
}
.gitea {
color: var(--accent-green);
}
.github {
color: var(--accent-blue);
}
.license {
color: var(--accent-indigo);
}
.issue_tracker {
color: var(--accent-magenta);
}
.rss {
color: var(--accent-orange);
}