Auto-sync: 2026-03-20 11:25:32
This commit is contained in:
@@ -144,3 +144,9 @@ remote: . Processing 1 references
|
||||
remote: Processed 1 references in total
|
||||
To gitea:Micha/homepage.git
|
||||
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
@@ -1,35 +1,19 @@
|
||||
/* =========================
|
||||
GLOBAL BACKGROUND (SAFE)
|
||||
========================= */
|
||||
html,
|
||||
body,
|
||||
#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;
|
||||
}
|
||||
|
||||
/* =========================
|
||||
GROUP PANELS
|
||||
========================= */
|
||||
div[data-name],
|
||||
section {
|
||||
margin-bottom: 22px !important;
|
||||
padding: 14px 14px 18px 14px !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;
|
||||
backdrop-filter: blur(8px);
|
||||
}
|
||||
|
||||
/* =========================
|
||||
CARDS (ALLE EINHEITLICH)
|
||||
========================= */
|
||||
.service-card,
|
||||
.bookmark,
|
||||
.widget-card,
|
||||
@@ -38,12 +22,11 @@ div[class*="bookmark_"] {
|
||||
min-height: 90px !important;
|
||||
border-radius: 14px !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;
|
||||
box-shadow: 0 8px 22px rgba(0,0,0,0.35);
|
||||
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) !important;
|
||||
transition: all 0.2s ease !important;
|
||||
}
|
||||
|
||||
/* Hover */
|
||||
.service-card:hover,
|
||||
.bookmark:hover,
|
||||
div[class*="service_"]:hover,
|
||||
@@ -52,9 +35,6 @@ div[class*="bookmark_"]:hover {
|
||||
border-color: rgba(72, 202, 228, 0.35) !important;
|
||||
}
|
||||
|
||||
/* =========================
|
||||
BOOKMARK FIX (WICHTIG!)
|
||||
========================= */
|
||||
.bookmark > a,
|
||||
div[class*="bookmark_"] > a {
|
||||
display: flex !important;
|
||||
@@ -67,16 +47,13 @@ div[class*="bookmark_"] > a {
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
/* inneren Müll entfernen */
|
||||
.bookmark a > div,
|
||||
div[class*="bookmark_"] a > div {
|
||||
background: transparent !important;
|
||||
box-shadow: none !important;
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
/* =========================
|
||||
TYPO
|
||||
========================= */
|
||||
.service-card h3,
|
||||
.bookmark h3,
|
||||
div[class*="service_"] h3,
|
||||
@@ -95,11 +72,6 @@ div[class*="bookmark_"] p {
|
||||
color: #9fb3c8 !important;
|
||||
}
|
||||
|
||||
/* =========================
|
||||
ICONS (SKALIERT)
|
||||
========================= */
|
||||
|
||||
/* Service Icons */
|
||||
.service-card img,
|
||||
.service-card svg,
|
||||
div[class*="service_"] img,
|
||||
@@ -109,7 +81,6 @@ div[class*="service_"] svg {
|
||||
object-fit: contain !important;
|
||||
}
|
||||
|
||||
/* Bookmark Icons kleiner */
|
||||
.bookmark img,
|
||||
.bookmark svg,
|
||||
div[class*="bookmark_"] img,
|
||||
@@ -119,33 +90,24 @@ div[class*="bookmark_"] svg {
|
||||
object-fit: contain !important;
|
||||
}
|
||||
|
||||
/* =========================
|
||||
SEARCH FIELD
|
||||
========================= */
|
||||
input,
|
||||
.search-input {
|
||||
background: rgba(18,24,35,0.8) !important;
|
||||
border: 1px solid rgba(255,255,255,0.08) !important;
|
||||
background: rgba(18, 24, 35, 0.8) !important;
|
||||
border: 1px solid rgba(255, 255, 255, 0.08) !important;
|
||||
border-radius: 12px !important;
|
||||
}
|
||||
|
||||
/* =========================
|
||||
ERROR BARS
|
||||
========================= */
|
||||
[class*="error"] {
|
||||
background: rgba(127,17,17,0.35) !important;
|
||||
border-left: 3px solid rgba(239,68,68,0.6) !important;
|
||||
background: rgba(127, 17, 17, 0.35) !important;
|
||||
border-left: 3px solid rgba(239, 68, 68, 0.6) !important;
|
||||
color: #fecaca !important;
|
||||
}
|
||||
|
||||
/* =========================
|
||||
SCROLLBAR
|
||||
========================= */
|
||||
::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: rgba(0,180,216,0.3);
|
||||
background: rgba(0, 180, 216, 0.3);
|
||||
border-radius: 999px;
|
||||
}
|
||||
+3142
File diff suppressed because it is too large
Load Diff
+2
-2
@@ -18,7 +18,7 @@ quicklaunch:
|
||||
showSearchSuggestions: true
|
||||
|
||||
background:
|
||||
image: /images/bac.jpg
|
||||
image: /images/background_dashboard.png
|
||||
blur: sm
|
||||
saturate: 50
|
||||
brightness: 50
|
||||
@@ -42,4 +42,4 @@ layout:
|
||||
columns: 3
|
||||
"🗄️ Daten & Backends":
|
||||
style: row
|
||||
columns: 4
|
||||
columns: 4
|
||||
Reference in New Issue
Block a user