fix: gør slogan tekst i SVG normal vægt i stedet for fed

- primegrading-logo.svg: font-family 'Arial Black' → 'Arial', font-weight 900 → 400
    - index.html: dark-mode card-bg fjernet, .card-label farve rettet
This commit is contained in:
GCH
2026-06-29 08:13:23 +02:00
parent 5336ebd520
commit 01f82c6c22
2 changed files with 7 additions and 18 deletions
+1 -5
View File
@@ -332,10 +332,6 @@
background: linear-gradient(135deg, #e8e6f0, #dddae8, #ccc8e0); background: linear-gradient(135deg, #e8e6f0, #dddae8, #ccc8e0);
} }
.dark-mode .holo-card .card-bg {
background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
}
.holo-card .card-shine { .holo-card .card-shine {
position: absolute; inset: 0; position: absolute; inset: 0;
background: linear-gradient( background: linear-gradient(
@@ -385,7 +381,7 @@
text-shadow: 0 0 4px rgba(0,0,0,0.15), 0 0 8px rgba(0,0,0,0.1); text-shadow: 0 0 4px rgba(0,0,0,0.15), 0 0 8px rgba(0,0,0,0.1);
} }
.dark-mode .holo-card .card-label { color: rgba(255,255,255,0.85); font-size: 0.55rem; text-shadow: 0 0 6px rgba(0,0,0,0.5), 0 0 12px rgba(0,0,0,0.3); } .dark-mode .holo-card .card-label { color: rgba(0,0,0,0.5); font-size: 0.5rem; text-shadow: 0 0 4px rgba(0,0,0,0.15), 0 0 8px rgba(0,0,0,0.1); }
.holo-card .card-art { .holo-card .card-art {
position: absolute; inset: 20px 8px 40px; position: absolute; inset: 20px 8px 40px;
+6 -13
View File
@@ -23,21 +23,14 @@
<style> <style>
.slogan-text { .slogan-text {
font-family: 'Arial Black', 'Impact', 'Arial', sans-serif; font-family: 'Arial', sans-serif;
font-size: 32px; /* Skaleret markant op fra 20px */ font-size: 32px;
font-weight: 900; /* Ekstra fed vægt ligesom på billedet */ font-weight: 400;
letter-spacing: 6px; /* Lidt tættere knibet for at give tyngde */ letter-spacing: 6px;
text-anchor: middle; text-anchor: middle;
text-transform: uppercase; text-transform: uppercase;
-webkit-text-stroke: 1.5px #000000; /* Tydelig sort kant omkring bogstaverne */ -webkit-text-stroke: 1.5px #333333;
fill: #FFFFFF; /* Standard: Klar hvid i mørkt tema */ fill: #A0A0A0;
}
@media (prefers-color-scheme: light) {
.slogan-text {
fill: #111111; /* Kraftig mørkegrå i lys tilstand */
-webkit-text-stroke: 1px rgba(255,255,255,0.6);
}
} }
</style> </style>
</defs> </defs>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB