add 88x31 pride button
All checks were successful
/ weblog.lol (push) Successful in 30s

This commit is contained in:
zepp 2025-03-09 21:08:02 -04:00
parent 8123647831
commit 66cacfaf50
2 changed files with 292 additions and 264 deletions

View File

@ -1,216 +1,240 @@
<!DOCTYPE html> <!DOCTYPE html>
<!-- proven.lol/f5bf3a --> <!-- proven.lol/f5bf3a -->
<html lang="en"> <html lang="en">
<head> <head>
<title>{weblog-title}{separator}{post-title}</title> <title>{weblog-title}{separator}{post-title}</title>
<meta charset="utf-8"> <meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1" />
{feeds} {feeds}
<style> <style>
@import url('https://static.omg.lol/type/font-honey.css'); @import url("https://static.omg.lol/type/font-honey.css");
@import url('https://static.omg.lol/type/font-lato-regular.css'); @import url("https://static.omg.lol/type/font-lato-regular.css");
@import url('https://static.omg.lol/type/font-lato-bold.css'); @import url("https://static.omg.lol/type/font-lato-bold.css");
@import url('https://static.omg.lol/type/font-lato-italic.css'); @import url("https://static.omg.lol/type/font-lato-italic.css");
@import url('https://static.omg.lol/type/font-md-io.css'); @import url("https://static.omg.lol/type/font-md-io.css");
@import url('https://static.omg.lol/type/fontawesome-free/css/all.css'); @import url("https://static.omg.lol/type/fontawesome-free/css/all.css");
:root { :root {
--foreground: #212529; --foreground: #212529;
--background: #ffcccc; --background: #ffcccc;
--article-background-color: #ffe9e3; --article-background-color: #ffe9e3;
--link-color: #4B0082; --link-color: #4b0082;
--link-hover: #FF1493; --link-hover: #ff1493;
--accent: #868e96; --accent: #868e96;
--border-color: #DB7093; --border-color: #db7093;
--font-size: 1rem; --font-size: 1rem;
} }
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
:root { :root {
--foreground: #f1dac4; --foreground: #f1dac4;
--background: #011627; --background: #011627;
--article-background-color: #2f184b; --article-background-color: #2f184b;
--link-color: #4cc9f0; --link-color: #4cc9f0;
--link-hover: #f72585; --link-hover: #f72585;
--accent: #868e96; --accent: #868e96;
--border-color: #003566; --border-color: #003566;
} }
} }
* { * {
box-sizing: border-box; box-sizing: border-box;
} }
html { html {
font-size: 16px; font-size: 16px;
} }
body { body {
font-family: 'Lato', sans-serif; font-family: "Lato", sans-serif;
font-size: var(--font-size); font-size: var(--font-size);
color: var(--foreground); color: var(--foreground);
background: var(--background); background: var(--background);
letter-spacing: 0.125rem; letter-spacing: 0.125rem;
} }
header nav ul { header nav ul {
list-style-type: none; list-style-type: none;
margin: 0; margin: 0;
padding: 0; padding: 0;
} }
header nav li { header nav li {
display: inline-block; display: inline-block;
} }
header nav li a { header nav li a {
display: block; display: block;
text-decoration: none; text-decoration: none;
margin-right: 1em; margin-right: 1em;
} }
h1, h2, h3, h4, h5, h6 { h1,
font-family: 'VC Honey Deck', serif; h2,
margin: 1rem 0; h3,
} h4,
h5,
h6 {
font-family: "VC Honey Deck", serif;
margin: 1rem 0;
}
p, li { p,
line-height: 1.25rem; li {
} line-height: 1.25rem;
}
header, main, footer { header,
max-width: 60em; main,
margin: 2em auto; footer {
padding: 0 1em; max-width: 60em;
} margin: 2em auto;
padding: 0 1em;
}
header { header {
margin-top: 4em; margin-top: 4em;
} }
footer p { footer p {
margin-top: 5em; margin-top: 5em;
font-size: var(--font-size); font-size: var(--font-size);
text-align: center; text-align: center;
} }
a:link { color: var(--link-color); } a:link {
a:visited { color: var(--link-color); } color: var(--link-color);
a:hover { color: var(--link-hover); } }
a:active { color: var(--link-color); } a:visited {
color: var(--link-color);
}
a:hover {
color: var(--link-hover);
}
a:active {
color: var(--link-color);
}
.post-info, .post-tags { .post-info,
font-size: var(--font-size); .post-tags {
color: var(--accent); font-size: var(--font-size);
text-align: right; color: var(--accent);
} text-align: right;
}
.post-info i:nth-child(2) { .post-info i:nth-child(2) {
margin-left: .75em; margin-left: 0.75em;
} }
.tag { .tag {
background: var(--accent); background: var(--accent);
color: var(--background) !important; color: var(--background) !important;
padding: .3em .4em; padding: 0.3em 0.4em;
margin: .8em 0 0 .4em; margin: 0.8em 0 0 0.4em;
border-radius: .5em; border-radius: 0.5em;
text-decoration: none; text-decoration: none;
display: inline-block; display: inline-block;
} }
hr { hr {
border: 0; border: 0;
height: 1px; height: 1px;
background: #333; background: #333;
margin: 2em 0; margin: 2em 0;
} }
code { code {
padding: .2em .3em; padding: 0.2em 0.3em;
border: 1px solid var(--accent); border: 1px solid var(--accent);
white-space: pre-wrap; white-space: pre-wrap;
word-wrap: break-word; word-wrap: break-word;
} }
pre, code { pre,
font-family: 'MD IO 0.4'; code {
font-size: var(--font-size); font-family: "MD IO 0.4";
} font-size: var(--font-size);
}
pre code { pre code {
background: #000; background: #000;
color: #eee; color: #eee;
display: inline-block; display: inline-block;
padding: 1em; padding: 1em;
white-space: pre-wrap; white-space: pre-wrap;
word-wrap: break-word; word-wrap: break-word;
} }
img { img {
max-width: 100%; max-width: 100%;
} }
table { table {
border-collapse: collapse; border-collapse: collapse;
} }
td, th { td,
padding: .75em; th {
text-align: left; padding: 0.75em;
border: 1px solid var(--accent); text-align: left;
} border: 1px solid var(--accent);
}
.weblog-title a {
text-decoration: none;
color: var(--foreground);
}
article { .weblog-title a {
background-color: var(--article-background-color); text-decoration: none;
padding: 1em; color: var(--foreground);
border-radius: 10px; }
border: 2px solid var(--border-color);
}
.fa-solid.fa-heart { article {
color: #c81d25; background-color: var(--article-background-color);
} padding: 1em;
</style> border-radius: 10px;
</head> border: 2px solid var(--border-color);
<body> }
<header> .fa-solid.fa-heart {
<h1 class="weblog-title"><a href="{base-path}">{weblog-title}</a></h1> color: #c81d25;
{navigation} }
</header>
<main> .pride-img {
margin: 0 auto;
}
</style>
</head>
<body>
<header>
<h1 class="weblog-title"><a href="{base-path}">{weblog-title}</a></h1>
{navigation}
</header>
<article> <main>
{body} <article>
<aside class="post-info"> {body}
<i class="fa-solid fa-clock"></i> {date} <aside class="post-info">
</aside> <i class="fa-solid fa-clock"></i> {date}
<aside class="post-tags"> </aside>
{tags} <aside class="post-tags">{tags}</aside>
</aside> </article>
</article>
<hr> <hr />
<img
class="pride-img"
src="https://cdn.some.pics/emma/67ce39c59db6f.svg"
alt="a mashup of the transgender and bisexual pride flags. the two flags are flipped in the middle to form a heart shape of both"
height="31px"
width="88px"
/>
<h2>Recent posts</h2> <h2>Recent posts</h2>
{recent-posts} {recent-posts}
</main>
</main> <footer>
<p>
<footer> written with <i class="fa-solid fa-heart"></i> by
<p> <a href="https://emma.omg.lol">emma</a>
written with <i class="fa-solid fa-heart"></i> by </p>
<a href="https://emma.omg.lol">emma</a> </footer>
</p> </body>
</footer>
</body>
</html> </html>

View File

@ -17,83 +17,83 @@ Title: Page Template
@import url('https://static.omg.lol/type/fontawesome-free/css/all.css'); @import url('https://static.omg.lol/type/fontawesome-free/css/all.css');
:root { :root {
--foreground: #212529; --foreground: #212529;
--background: #ffcccc; --background: #ffcccc;
--article-background-color: #ffe9e3; --article-background-color: #ffe9e3;
--link-color: #4B0082; --link-color: #4B0082;
--link-hover: #FF1493; --link-hover: #FF1493;
--accent: #868e96; --accent: #868e96;
--border-color: #DB7093; --border-color: #DB7093;
--font-size: 1rem; --font-size: 1rem;
} }
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
:root { :root {
--foreground: #f1dac4; --foreground: #f1dac4;
--background: #011627; --background: #011627;
--article-background-color: #2f184b; --article-background-color: #2f184b;
--link-color: #4cc9f0; --link-color: #4cc9f0;
--link-hover: #f72585; --link-hover: #f72585;
--accent: #868e96; --accent: #868e96;
--border-color: #003566; --border-color: #003566;
} }
} }
* { - {
box-sizing: border-box; box-sizing: border-box;
} }
html { html {
font-size: 16px; font-size: 16px;
} }
body { body {
font-family: 'Lato', sans-serif; font-family: 'Lato', sans-serif;
font-size: var(--font-size); font-size: var(--font-size);
color: var(--foreground); color: var(--foreground);
background: var(--background); background: var(--background);
letter-spacing: 0.125rem; letter-spacing: 0.125rem;
} }
header nav ul { header nav ul {
list-style-type: none; list-style-type: none;
margin: 0; margin: 0;
padding: 0; padding: 0;
} }
header nav li { header nav li {
display: inline-block; display: inline-block;
} }
header nav li a { header nav li a {
display: block; display: block;
text-decoration: none; text-decoration: none;
margin-right: 1em; margin-right: 1em;
} }
h1, h2, h3, h4, h5, h6 { h1, h2, h3, h4, h5, h6 {
font-family: 'VC Honey Deck', serif; font-family: 'VC Honey Deck', serif;
margin: 1rem 0; margin: 1rem 0;
} }
p, li { p, li {
line-height: 1.25rem; line-height: 1.25rem;
} }
header, main, footer { header, main, footer {
max-width: 60em; max-width: 60em;
margin: 2em auto; margin: 2em auto;
padding: 0 1em; padding: 0 1em;
} }
header { header {
margin-top: 4em; margin-top: 4em;
} }
footer p { footer p {
margin-top: 5em; margin-top: 5em;
font-size: 90%; font-size: 90%;
text-align: center; text-align: center;
} }
a:link { color: var(--link-color); } a:link { color: var(--link-color); }
@ -102,83 +102,87 @@ a:hover { color: var(--link-hover); }
a:active { color: var(--link-color); } a:active { color: var(--link-color); }
.post-info, .post-tags { .post-info, .post-tags {
font-size: 85%; font-size: 85%;
color: var(--accent); color: var(--accent);
text-align: right; text-align: right;
} }
.post-info i:nth-child(2) { .post-info i:nth-child(2) {
margin-left: .75em; margin-left: .75em;
} }
.tag { .tag {
background: var(--accent); background: var(--accent);
color: var(--background) !important; color: var(--background) !important;
padding: .3em .4em; padding: .3em .4em;
margin: .8em 0 0 .4em; margin: .8em 0 0 .4em;
border-radius: .5em; border-radius: .5em;
text-decoration: none; text-decoration: none;
display: inline-block; display: inline-block;
} }
hr { hr {
border: 0; border: 0;
height: 1px; height: 1px;
background: #333; background: #333;
margin: 2em 0; margin: 2em 0;
} }
code { code {
padding: .2em .3em; padding: .2em .3em;
border: 1px solid var(--accent); border: 1px solid var(--accent);
white-space: pre-wrap; white-space: pre-wrap;
word-wrap: break-word; word-wrap: break-word;
} }
pre, code { pre, code {
font-family: 'MD IO 0.4'; font-family: 'MD IO 0.4';
font-size: var(--font-size); font-size: var(--font-size);
} }
pre code { pre code {
background: #000; background: #000;
color: #eee; color: #eee;
display: inline-block; display: inline-block;
padding: 1em; padding: 1em;
white-space: pre-wrap; white-space: pre-wrap;
word-wrap: break-word; word-wrap: break-word;
} }
img { img {
max-width: 100%; max-width: 100%;
} }
table { table {
border-collapse: collapse; border-collapse: collapse;
} }
td, th { td, th {
padding: .75em; padding: .75em;
text-align: left; text-align: left;
border: 1px solid var(--accent); border: 1px solid var(--accent);
} }
.weblog-title a { .weblog-title a {
text-decoration: none; text-decoration: none;
color: var(--foreground); color: var(--foreground);
} }
main { main {
padding: 1em; padding: 1em;
background-color: var(--article-background-color); background-color: var(--article-background-color);
border-radius: 10px; border-radius: 10px;
border: 2px solid var(--border-color); border: 2px solid var(--border-color);
} }
.fa-solid.fa-heart { .fa-solid.fa-heart {
color: #c81d25; color: #c81d25;
}
.pride-img {
margin: 0 auto;
} }
</style> </style>
</head> </head>
<body> <body>
@ -192,7 +196,7 @@ main {
{body} {body}
<hr> <hr>
<img class="pride-img" src="https://cdn.some.pics/emma/67ce39c59db6f.svg" alt="a mashup of the transgender and bisexual pride flags. the two flags are flipped in the middle to form a heart shape of both" height="31px" width="88px">
</main> </main>
<footer> <footer>