mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-05-06 11:09:18 +02:00
fix serve recipe: filter output to Development Server start + [200] requests only
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
This commit is contained in:
@@ -2,11 +2,13 @@
|
||||
À PROPOS PAGE (apropos.php) + LICENCE PAGE (licence.php)
|
||||
============================================================ */
|
||||
|
||||
@import url("./variables.css");
|
||||
|
||||
.apropos-body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 100vh;
|
||||
background: var(--white);
|
||||
background: var(--bg-primary);
|
||||
}
|
||||
|
||||
.apropos-main {
|
||||
@@ -36,7 +38,7 @@
|
||||
font-family: "Courier New", Courier, monospace;
|
||||
font-size: 1.55rem;
|
||||
line-height: 1.45;
|
||||
color: var(--black);
|
||||
color: var(--text-primary);
|
||||
font-weight: 400;
|
||||
margin: 0 0 2rem 0;
|
||||
}
|
||||
@@ -58,7 +60,7 @@
|
||||
.prose h3 { font-size: 1.1rem; }
|
||||
|
||||
.prose a {
|
||||
color: var(--purple);
|
||||
color: var(--accent-primary);
|
||||
text-underline-offset: 2px;
|
||||
}
|
||||
|
||||
@@ -78,7 +80,7 @@
|
||||
.prose code {
|
||||
font-family: "Courier New", Courier, monospace;
|
||||
font-size: 0.9em;
|
||||
background: rgba(0,0,0,.06);
|
||||
background: var(--bg-tertiary);
|
||||
padding: .1em .3em;
|
||||
border-radius: 2px;
|
||||
}
|
||||
@@ -97,7 +99,7 @@
|
||||
font-family: "Courier New", Courier, monospace;
|
||||
font-size: 1.55rem;
|
||||
font-weight: 400;
|
||||
color: var(--black);
|
||||
color: var(--text-primary);
|
||||
margin: 0 0 0.5rem 0;
|
||||
line-height: 1.2;
|
||||
}
|
||||
@@ -117,7 +119,7 @@
|
||||
.apropos-aside address strong {
|
||||
font-weight: 700;
|
||||
font-size: 0.95rem;
|
||||
color: var(--black);
|
||||
color: var(--text-primary);
|
||||
display: block;
|
||||
margin-bottom: 0.15rem;
|
||||
}
|
||||
@@ -125,7 +127,7 @@
|
||||
.apropos-aside address span,
|
||||
.apropos-aside address a {
|
||||
font-size: 0.9rem;
|
||||
color: var(--black);
|
||||
color: var(--text-primary);
|
||||
line-height: 1.4;
|
||||
display: block;
|
||||
}
|
||||
@@ -137,7 +139,7 @@
|
||||
|
||||
.apropos-credits-text {
|
||||
font-size: 0.9rem;
|
||||
color: var(--black);
|
||||
color: var(--text-primary);
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
@@ -155,7 +157,7 @@
|
||||
|
||||
.apropos-licences p {
|
||||
font-size: 0.9rem;
|
||||
color: var(--black);
|
||||
color: var(--text-primary);
|
||||
line-height: 1.6;
|
||||
margin: 0 0 0.75rem 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user