User:YvonneDHBW/common.css: Difference between revisions

From semantic-hub.io
mNo edit summary
m Replaced content with "h1 { color: red !important; }"
Tag: Replaced
Line 1: Line 1:
/* ===== DARK MODE ===== */
h1 {
body {
     color: red !important;
    background-color: #0f172a;
    color: #e5e7eb;
    font-family: "Segoe UI", Arial, sans-serif;
}
 
/* Links */
a {
    color: #38bdf8;
}
a:hover {
    color: #0ea5e9;
}
 
/* Überschriften */
h1, h2, h3 {
     color: #f9fafb;
}
 
/* Content Bereich */
.mw-body {
    background: #111827;
    border-radius: 12px;
    padding: 20px;
    max-width: 1100px;
    margin: auto;
}
 
/* Sidebar */
#mw-panel {
    background: #020617;
    border-right: 1px solid #1e293b;
}
 
/* Top Bar */
#mw-head {
    background: #020617;
    border-bottom: 1px solid #1e293b;
}
}

Revision as of 16:41, 12 April 2026

h1 {
    color: red !important;
}