Auto-sync: 2026-03-20 11:25:32

This commit is contained in:
2026-03-20 11:25:32 +01:00
parent ae2c083f20
commit 7f1c97955c
4 changed files with 3159 additions and 49 deletions
+6
View File
@@ -144,3 +144,9 @@ remote: . Processing 1 references
remote: Processed 1 references in total remote: Processed 1 references in total
To gitea:Micha/homepage.git To gitea:Micha/homepage.git
9102118..c382e3e master -> master 9102118..c382e3e master -> master
[master ae2c083] Auto-sync: 2026-03-20 11:20:31
4 files changed, 3936 insertions(+), 420 deletions(-)
remote: . Processing 1 references
remote: Processed 1 references in total
To gitea:Micha/homepage.git
c382e3e..ae2c083 master -> master
+9 -47
View File
@@ -1,35 +1,19 @@
/* =========================
GLOBAL BACKGROUND (SAFE)
========================= */
html, html,
body, body,
#page_container { #page_container {
background-image:
linear-gradient(rgba(5, 10, 20, 0.80), rgba(5, 10, 20, 0.90)),
url("/images/background_dashboard.png");
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
color: #ecf8ff !important; color: #ecf8ff !important;
} }
/* =========================
GROUP PANELS
========================= */
div[data-name], div[data-name],
section { section {
margin-bottom: 22px !important; margin-bottom: 22px !important;
padding: 14px 14px 18px 14px !important; padding: 14px 14px 18px 14px !important;
border-radius: 18px !important; border-radius: 18px !important;
background: rgba(10, 17, 28, 0.55) !important; background: rgba(10, 17, 28, 0.45) !important;
border: 1px solid rgba(72, 202, 228, 0.10) !important; border: 1px solid rgba(72, 202, 228, 0.10) !important;
backdrop-filter: blur(8px); backdrop-filter: blur(8px);
} }
/* =========================
CARDS (ALLE EINHEITLICH)
========================= */
.service-card, .service-card,
.bookmark, .bookmark,
.widget-card, .widget-card,
@@ -38,12 +22,11 @@ div[class*="bookmark_"] {
min-height: 90px !important; min-height: 90px !important;
border-radius: 14px !important; border-radius: 14px !important;
border: 1px solid rgba(0, 180, 216, 0.16) !important; border: 1px solid rgba(0, 180, 216, 0.16) !important;
background: linear-gradient(180deg, rgba(18,28,45,0.85), rgba(10,17,30,0.92)) !important; background: linear-gradient(180deg, rgba(18, 28, 45, 0.78), rgba(10, 17, 30, 0.88)) !important;
box-shadow: 0 8px 22px rgba(0,0,0,0.35); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35) !important;
transition: all 0.2s ease !important; transition: all 0.2s ease !important;
} }
/* Hover */
.service-card:hover, .service-card:hover,
.bookmark:hover, .bookmark:hover,
div[class*="service_"]:hover, div[class*="service_"]:hover,
@@ -52,9 +35,6 @@ div[class*="bookmark_"]:hover {
border-color: rgba(72, 202, 228, 0.35) !important; border-color: rgba(72, 202, 228, 0.35) !important;
} }
/* =========================
BOOKMARK FIX (WICHTIG!)
========================= */
.bookmark > a, .bookmark > a,
div[class*="bookmark_"] > a { div[class*="bookmark_"] > a {
display: flex !important; display: flex !important;
@@ -67,16 +47,13 @@ div[class*="bookmark_"] > a {
text-decoration: none !important; text-decoration: none !important;
} }
/* inneren Müll entfernen */
.bookmark a > div, .bookmark a > div,
div[class*="bookmark_"] a > div { div[class*="bookmark_"] a > div {
background: transparent !important; background: transparent !important;
box-shadow: none !important; box-shadow: none !important;
border: none !important;
} }
/* =========================
TYPO
========================= */
.service-card h3, .service-card h3,
.bookmark h3, .bookmark h3,
div[class*="service_"] h3, div[class*="service_"] h3,
@@ -95,11 +72,6 @@ div[class*="bookmark_"] p {
color: #9fb3c8 !important; color: #9fb3c8 !important;
} }
/* =========================
ICONS (SKALIERT)
========================= */
/* Service Icons */
.service-card img, .service-card img,
.service-card svg, .service-card svg,
div[class*="service_"] img, div[class*="service_"] img,
@@ -109,7 +81,6 @@ div[class*="service_"] svg {
object-fit: contain !important; object-fit: contain !important;
} }
/* Bookmark Icons kleiner */
.bookmark img, .bookmark img,
.bookmark svg, .bookmark svg,
div[class*="bookmark_"] img, div[class*="bookmark_"] img,
@@ -119,33 +90,24 @@ div[class*="bookmark_"] svg {
object-fit: contain !important; object-fit: contain !important;
} }
/* =========================
SEARCH FIELD
========================= */
input, input,
.search-input { .search-input {
background: rgba(18,24,35,0.8) !important; background: rgba(18, 24, 35, 0.8) !important;
border: 1px solid rgba(255,255,255,0.08) !important; border: 1px solid rgba(255, 255, 255, 0.08) !important;
border-radius: 12px !important; border-radius: 12px !important;
} }
/* =========================
ERROR BARS
========================= */
[class*="error"] { [class*="error"] {
background: rgba(127,17,17,0.35) !important; background: rgba(127, 17, 17, 0.35) !important;
border-left: 3px solid rgba(239,68,68,0.6) !important; border-left: 3px solid rgba(239, 68, 68, 0.6) !important;
color: #fecaca !important; color: #fecaca !important;
} }
/* =========================
SCROLLBAR
========================= */
::-webkit-scrollbar { ::-webkit-scrollbar {
width: 10px; width: 10px;
} }
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
background: rgba(0,180,216,0.3); background: rgba(0, 180, 216, 0.3);
border-radius: 999px; border-radius: 999px;
} }
+3142
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -18,7 +18,7 @@ quicklaunch:
showSearchSuggestions: true showSearchSuggestions: true
background: background:
image: /images/bac.jpg image: /images/background_dashboard.png
blur: sm blur: sm
saturate: 50 saturate: 50
brightness: 50 brightness: 50
@@ -42,4 +42,4 @@ layout:
columns: 3 columns: 3
"🗄️ Daten & Backends": "🗄️ Daten & Backends":
style: row style: row
columns: 4 columns: 4