[main] More styling, and some content in job
All checks were successful
Build, Push, and Deploy to Nomad / docker-nomad (push) Successful in 51s

This commit is contained in:
2024-12-31 00:43:04 +01:00
parent 1b3d03cd70
commit a126778f16
9 changed files with 3190 additions and 7 deletions

Binary file not shown.

View File

@@ -328,6 +328,7 @@ small > em {
font-family: "Roboto Slab", serif;
font-weight: 300;
font-style: italic;
max-width: 10vh;
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: 8px;
padding: 0.25em 0.5em;

File diff suppressed because one or more lines are too long

View File

@@ -47,7 +47,6 @@
em, i {
font-style: italic;
max-width: 10vw;
}
p {
@@ -226,6 +225,7 @@
font-family: _font(family-heading);
font-weight: 300;
font-style: italic;
max-width: 10vh;
// Add light borders
border: 1px solid rgba(0, 0, 0, 0.1); // Light, subtle border

View File

@@ -51,11 +51,11 @@
<link rel="preload" href="/static/webfonts/fa-solid-900.woff2" as="font" type="font/woff2" crossorigin="anonymous">
<!-- Hoved CSS -->
<link rel="stylesheet" href="/static/css/main.min.css?v={{ timestamp }}" media="print" onload="this.media='all'">
<link rel="stylesheet" href="/static/css/main.css?v={{ timestamp }}" media="print" onload="this.media='all'">
<!-- Fallback for brugere uden JavaScript -->
<noscript>
<link rel="stylesheet" href="/static/css/main.min.css?v={{ timestamp }}">
<link rel="stylesheet" href="/static/css/main.css?v={{ timestamp }}">
</noscript>
</head>
<body class="is-preload" lang="da">

View File

@@ -25,9 +25,8 @@
<div class="mini-posts">
{% for favorite in data.favorites %}
<article>
<!-- Fucking crap - Ignoreing all CSS image tags in mini-posts -->
<a href="/category/{{ favorite.path }}" >
<img src="/{{favorite.image}}" alt="{{ favorite.name }}" height="{{ favorite.height }}" width="{{ favorite.width }}" />
<a href="/category/{{ favorite.path }}" class="image">
<img class="fav-image" src="/{{favorite.image}}" alt="{{ favorite.name }}" height="{{ favorite.height }}" width="{{ favorite.width }}" />
</a>
<p><b>{{ favorite.path }}</b>: {{ favorite.description }}</p>
</article>