Compare commits

..

2 commits

Author SHA1 Message Date
ece3381f66 Add Guix manifest file
With this file I can run the `guix shell --manifest=manifest.scm' command and get all the required dependencies for this project, which right now is just emacs-eldev.
2023-05-23 23:42:27 -07:00
4b60428d3e Underline links
I tried looking at my website on my Kobo the other day and noticed that links on my pages were impossible to discern from other text there. My Kobo just has a monochrome E-ink display, so it cannot differentiate between the links and the rest of the text without this very well.
2023-05-23 23:42:27 -07:00
2 changed files with 2 additions and 1 deletions

1
manifest.scm Normal file
View file

@ -0,0 +1 @@
(specifications->manifest '("emacs-eldev"))

View file

@ -1,7 +1,7 @@
@import 'colors';
a {
text-decoration: none;
text-decoration: underline;
@media (prefers-color-scheme: dark) {
color: @dark-primary;