Auto-sync: 2026-03-20 10:35:24
This commit is contained in:
+133
-87
@@ -1,112 +1,158 @@
|
||||
/* KalliLab custom.css
|
||||
Cyber-dark look with electric cyan accents */
|
||||
|
||||
:root {
|
||||
--kalilab-bg-1: #0d1117;
|
||||
--kalilab-bg-2: #0f1923;
|
||||
--kalilab-bg-3: #071018;
|
||||
--kalilab-primary: #00b4d8;
|
||||
--kalilab-primary-2: #0077b6;
|
||||
--kalilab-text: #e6f7ff;
|
||||
--kalilab-muted: #8fb8c7;
|
||||
--kalilab-bg: #0b1220;
|
||||
--kalilab-bg-2: #0f1726;
|
||||
--kalilab-card: rgba(16, 24, 38, 0.82);
|
||||
--kalilab-card-hover: rgba(20, 31, 49, 0.9);
|
||||
--kalilab-border: rgba(0, 180, 216, 0.18);
|
||||
--kalilab-glow: 0 0 18px rgba(0, 180, 216, 0.16);
|
||||
--kalilab-border-strong: rgba(0, 180, 216, 0.35);
|
||||
--kalilab-glow: 0 0 0 1px rgba(0, 180, 216, 0.08), 0 8px 24px rgba(0, 0, 0, 0.32);
|
||||
--kalilab-glow-hover: 0 0 0 1px rgba(0, 180, 216, 0.18), 0 14px 30px rgba(0, 0, 0, 0.42);
|
||||
--kalilab-text: #e6f7ff;
|
||||
--kalilab-text-soft: #9fb7c9;
|
||||
--kalilab-accent: #00b4d8;
|
||||
--kalilab-accent-2: #48cae4;
|
||||
--kalilab-danger: #b91c1c;
|
||||
--kalilab-danger-bg: rgba(185, 28, 28, 0.14);
|
||||
}
|
||||
|
||||
body {
|
||||
/* Gesamthintergrund */
|
||||
body,
|
||||
html,
|
||||
#page_container {
|
||||
background:
|
||||
radial-gradient(circle at top left, rgba(0, 180, 216, 0.12), transparent 26%),
|
||||
radial-gradient(circle at top right, rgba(0, 119, 182, 0.14), transparent 22%),
|
||||
linear-gradient(135deg, var(--kalilab-bg-1) 0%, var(--kalilab-bg-2) 48%, var(--kalilab-bg-3) 100%) !important;
|
||||
color: var(--kalilab-text);
|
||||
radial-gradient(circle at top left, rgba(0, 180, 216, 0.08), transparent 28%),
|
||||
radial-gradient(circle at top right, rgba(72, 202, 228, 0.06), transparent 24%),
|
||||
linear-gradient(180deg, #08111d 0%, #0b1220 45%, #0a0f18 100%) !important;
|
||||
color: var(--kalilab-text) !important;
|
||||
}
|
||||
|
||||
#page_container::before {
|
||||
content: "";
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
pointer-events: none;
|
||||
background-image:
|
||||
linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
|
||||
linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
|
||||
background-size: 36px 36px;
|
||||
mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
|
||||
opacity: 0.35;
|
||||
/* Gruppenüberschriften */
|
||||
h2, .group-title {
|
||||
color: #dff6ff !important;
|
||||
font-weight: 700 !important;
|
||||
letter-spacing: 0.2px;
|
||||
}
|
||||
|
||||
.group-title,
|
||||
.services-group .group-name,
|
||||
.bookmark-group .group-name {
|
||||
letter-spacing: 0.04em;
|
||||
text-transform: uppercase;
|
||||
color: #d9f7ff !important;
|
||||
}
|
||||
|
||||
.service,
|
||||
.bookmark {
|
||||
background: linear-gradient(180deg, rgba(15, 25, 35, 0.82) 0%, rgba(13, 17, 23, 0.88) 100%) !important;
|
||||
/* Service-Karten */
|
||||
.service-card,
|
||||
.bookmark,
|
||||
.information-widget,
|
||||
.widget-card,
|
||||
div[class*="service_"],
|
||||
div[class*="bookmark_"] {
|
||||
background: linear-gradient(180deg, rgba(18, 27, 43, 0.88) 0%, rgba(12, 19, 31, 0.92) 100%) !important;
|
||||
border: 1px solid var(--kalilab-border) !important;
|
||||
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28), var(--kalilab-glow);
|
||||
border-radius: 18px !important;
|
||||
}
|
||||
|
||||
.service:hover,
|
||||
.bookmark:hover {
|
||||
transform: translateY(-2px);
|
||||
border-color: rgba(0, 180, 216, 0.34) !important;
|
||||
box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34), 0 0 22px rgba(0, 180, 216, 0.22);
|
||||
}
|
||||
|
||||
.service-name,
|
||||
.bookmark-name,
|
||||
.information-widget .widget-title,
|
||||
.information-widget .title {
|
||||
color: var(--kalilab-text) !important;
|
||||
}
|
||||
|
||||
.service-description,
|
||||
.bookmark-description,
|
||||
.information-widget .description,
|
||||
p,
|
||||
span {
|
||||
color: var(--kalilab-muted);
|
||||
}
|
||||
|
||||
.status .status-dot {
|
||||
box-shadow: 0 0 10px currentColor;
|
||||
}
|
||||
|
||||
.information-widget {
|
||||
background: rgba(10, 19, 28, 0.72) !important;
|
||||
border: 1px solid rgba(0, 180, 216, 0.14) !important;
|
||||
border-radius: 18px !important;
|
||||
box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
|
||||
}
|
||||
|
||||
.search-container input,
|
||||
.quick-launch input {
|
||||
background: rgba(8, 15, 24, 0.88) !important;
|
||||
border: 1px solid rgba(0, 180, 216, 0.22) !important;
|
||||
color: var(--kalilab-text) !important;
|
||||
border-radius: 16px !important;
|
||||
box-shadow: var(--kalilab-glow) !important;
|
||||
backdrop-filter: blur(10px);
|
||||
-webkit-backdrop-filter: blur(10px);
|
||||
transition:
|
||||
transform 0.18s ease,
|
||||
box-shadow 0.18s ease,
|
||||
border-color 0.18s ease,
|
||||
background 0.18s ease !important;
|
||||
}
|
||||
|
||||
.search-container input:focus,
|
||||
.quick-launch input:focus {
|
||||
border-color: rgba(0, 180, 216, 0.55) !important;
|
||||
box-shadow: 0 0 0 1px rgba(0, 180, 216, 0.25), 0 0 18px rgba(0, 180, 216, 0.16) !important;
|
||||
/* Hover */
|
||||
.service-card:hover,
|
||||
.bookmark:hover,
|
||||
.widget-card:hover,
|
||||
div[class*="service_"]:hover,
|
||||
div[class*="bookmark_"]:hover {
|
||||
transform: translateY(-2px);
|
||||
background: linear-gradient(180deg, rgba(22, 33, 52, 0.94) 0%, rgba(14, 22, 36, 0.96) 100%) !important;
|
||||
border-color: var(--kalilab-border-strong) !important;
|
||||
box-shadow: var(--kalilab-glow-hover) !important;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #b8f3ff;
|
||||
/* Titel in Karten */
|
||||
.service-card h3,
|
||||
.service-card .title,
|
||||
.bookmark h3,
|
||||
div[class*="service_"] h3 {
|
||||
color: #f2fbff !important;
|
||||
font-weight: 700 !important;
|
||||
font-size: 1rem !important;
|
||||
}
|
||||
|
||||
/* Beschreibungen */
|
||||
.service-card p,
|
||||
.service-card .description,
|
||||
.bookmark p,
|
||||
div[class*="service_"] p {
|
||||
color: var(--kalilab-text-soft) !important;
|
||||
font-size: 0.88rem !important;
|
||||
}
|
||||
|
||||
/* Statuspunkte oben rechts cleaner */
|
||||
.status,
|
||||
div[class*="status_"] {
|
||||
filter: saturate(1.05) brightness(1.02);
|
||||
}
|
||||
|
||||
/* API-Fehler / Warnbalken entschärfen */
|
||||
.error,
|
||||
[class*="error"],
|
||||
[class*="failed"],
|
||||
[class*="danger"] {
|
||||
background: var(--kalilab-danger-bg) !important;
|
||||
color: #fecaca !important;
|
||||
border: 1px solid rgba(239, 68, 68, 0.22) !important;
|
||||
border-radius: 10px !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
/* Suche oben */
|
||||
input,
|
||||
input[type="text"],
|
||||
.search-input {
|
||||
background: rgba(20, 25, 35, 0.86) !important;
|
||||
border: 1px solid rgba(255, 255, 255, 0.08) !important;
|
||||
border-radius: 12px !important;
|
||||
color: #eefaff !important;
|
||||
}
|
||||
|
||||
input:focus,
|
||||
input[type="text"]:focus,
|
||||
.search-input:focus {
|
||||
border-color: rgba(0, 180, 216, 0.45) !important;
|
||||
box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.12) !important;
|
||||
outline: none !important;
|
||||
}
|
||||
|
||||
/* Obere Widget-Leiste etwas ruhiger */
|
||||
.info-widget,
|
||||
div[class*="resources"],
|
||||
div[class*="datetime"],
|
||||
div[class*="search"] {
|
||||
background: transparent !important;
|
||||
border: none !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
/* Icons in den Karten etwas cleaner */
|
||||
.service-card svg,
|
||||
.service-card img,
|
||||
.bookmark svg,
|
||||
.bookmark img {
|
||||
opacity: 0.95;
|
||||
}
|
||||
|
||||
/* Scrollbar */
|
||||
::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background: #0b1220;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: linear-gradient(180deg, rgba(0, 180, 216, 0.65), rgba(0, 119, 182, 0.75));
|
||||
background: rgba(0, 180, 216, 0.25);
|
||||
border-radius: 999px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background: rgba(0, 180, 216, 0.4);
|
||||
}
|
||||
Reference in New Issue
Block a user