diff --git a/static/images/apple-touch-icon.png b/static/images/apple-touch-icon.png
index 7b67c23..e5f6670 100644
Binary files a/static/images/apple-touch-icon.png and b/static/images/apple-touch-icon.png differ
diff --git a/static/images/favicon-96x96.png b/static/images/favicon-96x96.png
index 1f2ffc8..8c2c199 100644
Binary files a/static/images/favicon-96x96.png and b/static/images/favicon-96x96.png differ
diff --git a/static/images/favicon.ico b/static/images/favicon.ico
index 6d6c66f..10fa71f 100644
Binary files a/static/images/favicon.ico and b/static/images/favicon.ico differ
diff --git a/static/images/favicon.svg b/static/images/favicon.svg
index 49da9cd..655491a 100644
--- a/static/images/favicon.svg
+++ b/static/images/favicon.svg
@@ -1,3 +1,3 @@
-
\ No newline at end of file
diff --git a/static/images/web-app-manifest-192x192.png b/static/images/web-app-manifest-192x192.png
index 66eee33..5c6db1b 100644
Binary files a/static/images/web-app-manifest-192x192.png and b/static/images/web-app-manifest-192x192.png differ
diff --git a/static/images/web-app-manifest-512x512.png b/static/images/web-app-manifest-512x512.png
index 851defc..8c0a663 100644
Binary files a/static/images/web-app-manifest-512x512.png and b/static/images/web-app-manifest-512x512.png differ
diff --git a/static/manifest.json b/static/manifest.json
index ead0fe4..ba1f2a9 100644
--- a/static/manifest.json
+++ b/static/manifest.json
@@ -3,19 +3,19 @@
"short_name": "Umbrella",
"icons": [
{
- "src": "/./assets/web-app-manifest-192x192.png",
+ "src": "/images/web-app-manifest-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
- "src": "/./assets/web-app-manifest-512x512.png",
+ "src": "/images/web-app-manifest-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
],
- "theme_color": "#202c31",
- "background_color": "#202c31",
+ "theme_color": "#252525",
+ "background_color": "#252525",
"display": "standalone"
-}
\ No newline at end of file
+}
diff --git a/themes/nostyleplease/assets/css/main.scss b/themes/nostyleplease/assets/css/main.scss
index c7142cc..3d529c6 100644
--- a/themes/nostyleplease/assets/css/main.scss
+++ b/themes/nostyleplease/assets/css/main.scss
@@ -1,12 +1,14 @@
// -------------- THEME SWITCHER -------------- //
-@mixin theme($--bg-color, $--primary-text-color, $--secondary-text-color, $--link-color, $--visited-link-color, $--highlight) {
+@mixin theme($--bg-color, $--primary-text-color, $--secondary-text-color, $--link-color, $--hover-link-color, $--highlight) {
background-color: $--bg-color;
color: $--primary-text-color;
a {
color: $--link-color;
- &:visited { color: $--visited-link-color; }
+ &:hover {
+ color: $--hover-link-color;
+ }
}
details {
@@ -52,7 +54,7 @@
}
@mixin dark-appearance {
- @include theme(#000000, #eff6ee, #000000, #33658a, #55dde0, #9197ae); // modus-vivendi
+ @include theme(#000000, #eff6ee, #000000, #ff6666, #fbb1b6, #9197ae);
}
@mixin light-appearance {
@@ -83,6 +85,18 @@ body {
overflow-wrap: break-word;
}
+header {
+ display: flex;
+ align-items: center;
+ width: min-content;
+}
+
+header > img {
+ max-width: 2.5rem;
+ max-height: 2.5rem;
+ padding-right: 1rem;
+}
+
h2, h3, h4, h5, h6 { margin-top: 1.5rem; }
p { margin: 1rem 0; }
@@ -91,7 +105,6 @@ li { margin: 0.4rem 0; }
a {
text-decoration: none;
- &:hover { text-decoration: underline; }
}
hr {
diff --git a/themes/nostyleplease/layouts/index.html b/themes/nostyleplease/layouts/index.html
index 43b1ad0..c168eed 100644
--- a/themes/nostyleplease/layouts/index.html
+++ b/themes/nostyleplease/layouts/index.html
@@ -1,6 +1,7 @@
{{ define "main" }}