fix colors and add more projects for testing

This commit is contained in:
Lio 2024-01-07 04:04:50 +01:00
parent a8a2019a73
commit b375ff400d
5 changed files with 25 additions and 16 deletions

View file

@ -147,17 +147,18 @@
},
"active": "0ea9304f312c3cee",
"lastOpenFiles": [
"_src/~syncthing~styles.css.tmp",
"_src/_components/~syncthing~Link.vento.tmp",
"_site/files/TwitterAvi.jpg",
"_site/feed.rss",
"_site/index.html",
"_site/styles.css",
"_site/files",
"_site",
"_src/wk/~syncthing~.git.tmp",
"_src/_includes/partials/~syncthing~footer.vento.tmp",
"_site/~syncthing~styles.css.tmp",
"_src/_includes/layouts/~syncthing~landing.vento.tmp",
"_src/_includes/partials/footer.vento",
"_site/~syncthing~feed.rss.tmp",
"_src/~syncthing~index.md.tmp",
"_src/files/~syncthing~darkmode.js.tmp",
"_site/~syncthing~index.html.tmp",
"_src/_includes/layouts/~syncthing~base.vento.tmp",
"_src/_includes/partials/nav.vento",
"~syncthing~_config.ts.tmp",
"_src/wk/README.md",
"_src/index.md",
"ReadMe.md"

View file

@ -1,3 +1,3 @@
<a class="fancy-link " href="{{url}}">
<a href="{{url}}">
{{ name }}
</a>

View file

@ -3,7 +3,7 @@ templateEngine: [vento, md]
---
<footer class="text-orange-200">
<footer class="text-zinc-500">
<div>
{{if getYear() === 2024}}
&copy; {{ getYear() }} Lio

View file

@ -14,4 +14,7 @@ _(they/them)_
### projects
- [urlfest](https://urlfe.st)
- [yiff](https://lio.to/yiff)
- [killswitch](https://yiff.click)
- [@datashard/snapshot](https://github.com/datashard/snapshot)

View file

@ -15,17 +15,17 @@
a {
color: black;
transition: color 0.1s, background-color 0.1s;
background-color: orange;
background-color: rgb(206, 150, 45);
text-decoration: none;
border-radius: 4px;
/* padding: 0.01rem 0.01rem; */
padding: 0.01rem 0.5rem;
margin: 0 0.3rem;
/* line-height: 1.7; */
/* white-space: nowrap; */
line-height: 1.7;
white-space: nowrap;
}
a:hover {
color: #2563eb;
background-color: #3b82f633;
color: rgb(255, 200, 99);
background-color: rgba(152, 109, 29, 0.506);
}
a img {
@ -87,6 +87,11 @@ code {
font-family: "IBM Plex Mono", monospace;
}
li,
ul {
margin-bottom: 0.25rem;
}
.margin-even {
margin: 1rem 0;
}