see for yourself
Alle Prüfungen waren erfolgreich
Deploy Zola site to Cloudflare Pages / build-and-deploy (push) Successful in 32s
Alle Prüfungen waren erfolgreich
Deploy Zola site to Cloudflare Pages / build-and-deploy (push) Successful in 32s
Dieser Commit ist enthalten in:
Ursprung
de3133bc9e
Commit
3df76adc6b
3 geänderte Dateien mit 10 neuen und 11 gelöschten Zeilen
|
@ -4,8 +4,8 @@ Personal Homepage
|
|||
|
||||
## Credits
|
||||
|
||||
- [Zola](https://getzola.org) static site engine
|
||||
- [Duckquill](https://duckquill.daudix.one) great theme
|
||||
- [Zola](https://getzola.org)
|
||||
- [Duckquill](https://duckquill.daudix.one)
|
||||
|
||||
## Disclaimer
|
||||
|
||||
|
|
|
@ -56,7 +56,7 @@ accent_color_dark = "#2d7ea0"
|
|||
# Whether to fix low contrast in text selection, checkboxes, etc.
|
||||
# Use only if the default doesn't provide enough contrast, e.g. the accent color is set to yellow.
|
||||
#
|
||||
fix_contrast = false
|
||||
fix_contrast = true
|
||||
#
|
||||
# Ditto but for the dark theme.
|
||||
fix_contrast_dark = true
|
||||
|
|
|
@ -1,9 +1,5 @@
|
|||
body {
|
||||
font-family: "U42SansQuasiNerd", sans-serif;
|
||||
background-image: var(--bg-overlay), url("bg.png");
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
|
@ -18,11 +14,14 @@ body {
|
|||
@include theme-variables using ($theme) {
|
||||
@if $theme == "dark" {
|
||||
--bg-overlay: linear-gradient(rgb(0 0 0 / 0.6), rgb(0 0 0 / 0.6));
|
||||
body {
|
||||
font-family: "U42SansQuasiNerd", sans-serif;
|
||||
background-image: var(--bg-overlay), url("bg.png");
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
} @else {
|
||||
--bg-overlay: linear-gradient(
|
||||
rgb(255 255 255 / 0.5),
|
||||
rgb(255 255 255 / 0.5)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Laden …
Tabelle hinzufügen
In neuem Issue referenzieren