commit cc1be4cd3a2e1563167b6a8504ce8959f21d79fa
parent 20b43e240dda9e0387e23e03a5535739f1689865
Author: mjkloeckner <martinjkloeckner@gmail.com>
Date: Sat, 17 Feb 2024 21:36:02 -0300
Make img bg transparent and replace bg-color with bg on light scheme
Diffstat:
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/css/style.css b/css/style.css
@@ -62,6 +62,7 @@ body {
margin-right: .5em;
font-size: 16px;
font-family: inconsolata, "DejaVu Sans", sans, "Verdana", sans-serif, "Georgia", serif;
+ color: antiquewhite;
}
header {
@@ -212,7 +213,7 @@ img {
width: 100%;
color: black;
- background: #191919;
+ background: transparent;
}
a:visited, a:active, a:link {
@@ -411,6 +412,10 @@ time {
align-self: center;
padding-top: 0em;
padding-bottom: .5em;
+
+ a:hover {
+ color: peru;
+ }
}
.header_bottom_bar{
width: 55%;
@@ -468,7 +473,7 @@ time {
@media (prefers-color-scheme: light) {
body {
- background-color: white;
+ background: white;
color: #090909;
}
article {