735117fcda
Reorganized the CSS structure to there is some seperation between front facing style and the backend den. Also add the Render class so auth status is included in every template rendering event so login status and select member data is available if needed. will expand if needed.
28 lines
485 B
CSS
28 lines
485 B
CSS
section[role="den-login"] {
|
|
padding: 30px;
|
|
width: 300px;
|
|
color: var(--highlight);
|
|
}
|
|
|
|
section[role="den-login"] div[role="system-notice"] {
|
|
border-radius: 3px;
|
|
padding: 3px;
|
|
background: var(--highlight);
|
|
color: var(--primary);
|
|
}
|
|
|
|
section[role="den-index"] {
|
|
padding: 20px;
|
|
color: var(--white);
|
|
}
|
|
|
|
section a {
|
|
color: var(--white);
|
|
border-bottom: 1px solid var(--highlight);
|
|
}
|
|
|
|
section a:hover {
|
|
border-bottom: 1px solid var(--secondary);
|
|
padding-bottom: 2px;
|
|
}
|