fix: misc cleanup
This commit is contained in:
parent
2fef5d60d8
commit
e6c2967443
6 changed files with 11 additions and 22 deletions
|
@ -5,6 +5,7 @@
|
|||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="theme-color" content="#0e90a4" />
|
||||
<title>
|
||||
{% if title %}{{ title }} •{% endif %}
|
||||
{{ meta.siteName }}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{% macro format(dateString) %}
|
||||
<time class="[ date ] [ flex items-center gap-0.5 ]" datetime="{{ date }}">
|
||||
{% include "svgs/calendar.svg" %}{{ dateString | formatDate("MMMM Do YYYY") }}
|
||||
<time class="[ date ] [ flex items-center gap-0.5 text-fadeText ]" datetime="{{ date }}">
|
||||
<span class="[ text-shadow line-height-s ]">{% include "svgs/calendar.svg" %}</span>{{ dateString | formatDate("MMMM Do YYYY") }}
|
||||
</time>
|
||||
{% endmacro %}
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
.date {
|
||||
color: var(--color-fadeText);
|
||||
}
|
||||
|
||||
.date svg {
|
||||
color: var(--color-shadow);
|
||||
}
|
|
@ -1,3 +1,9 @@
|
|||
/*
|
||||
* From Every Layout
|
||||
* GRID
|
||||
* https://every-layout.dev/layouts/grid/
|
||||
*/
|
||||
|
||||
.media-grid {
|
||||
display: grid;
|
||||
grid-gap: var(--spacing-0\.5);
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
/* Adapted from the Tokyo Night theme on GitHub
|
||||
/*
|
||||
* Adapted from the Tokyo Night theme on GitHub
|
||||
* https://github.com/folke/tokyonight.nvim/blob/main/extras/prism/tokyonight_night.js
|
||||
*/
|
||||
|
||||
|
|
|
@ -1,12 +0,0 @@
|
|||
.navbar {
|
||||
backdrop-filter: blur(3px);
|
||||
background-color: color-mix(
|
||||
in srgb,
|
||||
var(--color-background) 70%,
|
||||
transparent
|
||||
);
|
||||
background-image: linear-gradient(var(--color-background) 20%, transparent);
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 1;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue