mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-05-06 11:09:18 +02:00
refactor: unify CSS color variables across public and admin - Replace old variable structure with new standardized naming: - Background: --bg-primary, --bg-secondary, --bg-tertiary, --bg-active - Text: --text-primary, --text-secondary, --text-tertiary - Border: --border-primary, --border-secondary - Status: --success, --error, --warning - Accent: --accent-primary, --accent-secondary, --accent-foreground, --accent-muted - Remove admin-specific color variables (--admin-*) - Update all CSS files to use shared variables: - variables.css, common.css, main.css, admin.css - tfe.css, search.css, apropos.css, system.css, colors.css
189 lines
3.6 KiB
CSS
189 lines
3.6 KiB
CSS
@import url("./variables.css");
|
|
|
|
@font-face {
|
|
font-family: "police1";
|
|
src: url("../fonts/Combinedd.otf");
|
|
font-display: swap;
|
|
}
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
font-family:
|
|
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
|
|
Arial, sans-serif;
|
|
background: var(--bg-primary);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* ============================================================
|
|
HEADER / NAV BAR (public pages)
|
|
============================================================ */
|
|
header {
|
|
flex-shrink: 0;
|
|
background: linear-gradient(
|
|
180deg,
|
|
var(--gradient-start) 0%,
|
|
var(--gradient-2) 20%,
|
|
var(--gradient-3) 40%,
|
|
var(--gradient-4) 60%,
|
|
var(--gradient-4) 88%,
|
|
rgba(149, 87, 181, 0) 96%
|
|
);
|
|
}
|
|
|
|
header nav {
|
|
padding: 1rem 1.5rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
header nav > a {
|
|
font-family: "police1", sans-serif;
|
|
font-size: 0.95rem;
|
|
letter-spacing: 0.12em;
|
|
text-transform: uppercase;
|
|
color: var(--accent-foreground);
|
|
text-decoration: none;
|
|
/* font-weight: 400; */
|
|
}
|
|
|
|
header nav ul {
|
|
display: flex;
|
|
gap: 3rem;
|
|
align-items: center;
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
header nav ul a {
|
|
font-size: 0.85rem;
|
|
letter-spacing: 0.12em;
|
|
text-transform: uppercase;
|
|
color: var(--accent-foreground);
|
|
text-decoration: none;
|
|
/* font-weight: 400; */
|
|
transition: opacity 0.15s;
|
|
}
|
|
|
|
header nav ul a:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
header nav ul a[aria-current="page"] {
|
|
opacity: 1;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.6);
|
|
padding-bottom: 1px;
|
|
}
|
|
|
|
/* ============================================================
|
|
SEARCH BAR (shared)
|
|
============================================================ */
|
|
header form[role="search"] {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.25rem 1.5rem;
|
|
border: 1px solid var(--accent-primary);
|
|
border-radius: 8px;
|
|
background: var(--bg-primary);
|
|
flex-shrink: 0;
|
|
color: var(--accent-primary);
|
|
}
|
|
|
|
header form[role="search"] svg {
|
|
color: var(--text-tertiary);
|
|
flex-shrink: 0;
|
|
width: 16px;
|
|
height: 16px;
|
|
stroke: var(--accent-primary);
|
|
}
|
|
|
|
header form[role="search"] input {
|
|
flex: 1;
|
|
border: none;
|
|
font-size: 0.95rem;
|
|
color: var(--text-primary);
|
|
background: transparent;
|
|
padding: 0.15rem 0;
|
|
font-family: inherit;
|
|
}
|
|
|
|
header form[role="search"] input::placeholder {
|
|
color: var(--accent-primary);
|
|
}
|
|
|
|
/* ============================================================
|
|
ACCESSIBILITY UTILITIES
|
|
============================================================ */
|
|
|
|
/* Visually-hidden but screen-reader-accessible */
|
|
.sr-only {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
padding: 0;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
clip: rect(0, 0, 0, 0);
|
|
white-space: nowrap;
|
|
border: 0;
|
|
}
|
|
|
|
/* Skip-to-content link (visible only on keyboard focus) */
|
|
.skip-link {
|
|
position: absolute;
|
|
top: -999px;
|
|
left: 1rem;
|
|
z-index: 9999;
|
|
padding: 0.5rem 1rem;
|
|
background: var(--accent-primary);
|
|
color: var(--text-primary);
|
|
font-size: 0.9rem;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
border-radius: 0 0 4px 4px;
|
|
}
|
|
|
|
.skip-link:focus {
|
|
top: 0;
|
|
}
|
|
|
|
/* Consistent keyboard-focus outline for all interactive elements */
|
|
:focus-visible {
|
|
outline: 2px solid var(--accent-primary);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
/* Respect user motion preferences */
|
|
@media (prefers-reduced-motion: reduce) {
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
transition-duration: 0.01ms !important;
|
|
animation-duration: 0.01ms !important;
|
|
}
|
|
}
|