Initial commit: Crumbforest Architecture Refinement v1 (Clean)
This commit is contained in:
36
app/static/css/crumbforest_accessible.css
Normal file
36
app/static/css/crumbforest_accessible.css
Normal file
@@ -0,0 +1,36 @@
|
||||
/* Crumbforest Accessible Theme */
|
||||
:root {
|
||||
--pico-font-family: "Atkinson Hyperlegible", "Segoe UI", system-ui, sans-serif;
|
||||
--pico-font-size: 18px;
|
||||
--pico-line-height: 1.6;
|
||||
--pico-primary: #0066cc;
|
||||
--pico-primary-background: #0066cc;
|
||||
--pico-primary-underline: rgba(0, 102, 204, 0.5);
|
||||
--pico-primary-hover: #0052a3;
|
||||
--pico-primary-focus: rgba(0, 102, 204, 0.125);
|
||||
--pico-primary-inverse: #fff;
|
||||
--pico-border-radius: 0.5rem;
|
||||
}
|
||||
|
||||
/* Enhanced focus states */
|
||||
:focus-visible {
|
||||
outline: 3px solid var(--pico-primary);
|
||||
outline-offset: 2px;
|
||||
}
|
||||
|
||||
/* Clearer distinction for links */
|
||||
a {
|
||||
text-decoration: underline;
|
||||
text-underline-offset: 4px;
|
||||
}
|
||||
|
||||
/* Better spacing */
|
||||
p {
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
/* Chat bubble readability */
|
||||
#messages div {
|
||||
line-height: 1.6;
|
||||
letter-spacing: 0.01em;
|
||||
}
|
||||
60
app/static/css/crumbforest_admin.css
Normal file
60
app/static/css/crumbforest_admin.css
Normal file
@@ -0,0 +1,60 @@
|
||||
/* Crumbforest Admin Theme */
|
||||
:root {
|
||||
--pico-font-family: system-ui, -apple-system, "Segoe UI", "Roboto", "Helvetica Neue", sans-serif;
|
||||
--pico-primary: #00d4aa;
|
||||
--pico-primary-background: #00d4aa;
|
||||
--pico-primary-underline: rgba(0, 212, 170, 0.5);
|
||||
--pico-primary-hover: #00a383;
|
||||
--pico-primary-focus: rgba(0, 212, 170, 0.125);
|
||||
--pico-primary-inverse: #000;
|
||||
|
||||
/* Dark Mode Overrides */
|
||||
--pico-background-color: #1a1a1a;
|
||||
--pico-card-background-color: #242424;
|
||||
--pico-color: #e0e0e0;
|
||||
--pico-muted-color: #888888;
|
||||
}
|
||||
|
||||
/* Admin Dashboard Cards */
|
||||
.card {
|
||||
border-left: 4px solid var(--pico-primary);
|
||||
}
|
||||
|
||||
/* Status Indicators */
|
||||
.status-dot {
|
||||
display: inline-block;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
border-radius: 50%;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.status-online {
|
||||
background-color: #00d4aa;
|
||||
}
|
||||
|
||||
.status-offline {
|
||||
background-color: #ff4444;
|
||||
}
|
||||
|
||||
.status-busy {
|
||||
background-color: #ffbb00;
|
||||
}
|
||||
|
||||
/* Terminal-like elements */
|
||||
pre,
|
||||
code {
|
||||
background-color: #000000;
|
||||
color: #00d4aa;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
/* Compact tables */
|
||||
table {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
td,
|
||||
th {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
66
app/static/css/crumbforest_high_contrast.css
Normal file
66
app/static/css/crumbforest_high_contrast.css
Normal file
@@ -0,0 +1,66 @@
|
||||
/* Crumbforest High Contrast Theme */
|
||||
:root {
|
||||
--pico-font-family: "Verdana", "Arial", sans-serif;
|
||||
--pico-font-size: 20px;
|
||||
--pico-line-height: 2.0;
|
||||
|
||||
/* High Contrast Colors */
|
||||
--pico-background-color: #000000;
|
||||
--pico-color: #ffffff;
|
||||
--pico-muted-color: #dddddd;
|
||||
--pico-muted-border-color: #ffffff;
|
||||
|
||||
--pico-primary: #ffff00;
|
||||
--pico-primary-background: #ffff00;
|
||||
--pico-primary-underline: #ffff00;
|
||||
--pico-primary-hover: #ffffcc;
|
||||
--pico-primary-focus: rgba(255, 255, 0, 0.5);
|
||||
--pico-primary-inverse: #000000;
|
||||
|
||||
--pico-card-background-color: #000000;
|
||||
--pico-card-box-shadow: 0 0 0 2px #ffffff;
|
||||
|
||||
--pico-border-radius: 0;
|
||||
}
|
||||
|
||||
/* Force high contrast borders */
|
||||
* {
|
||||
border-width: 2px !important;
|
||||
}
|
||||
|
||||
/* Links */
|
||||
a {
|
||||
color: #ffff00;
|
||||
text-decoration: underline;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #ffffff;
|
||||
background-color: #000000;
|
||||
outline: 2px solid #ffff00;
|
||||
}
|
||||
|
||||
/* Buttons */
|
||||
button,
|
||||
[role="button"] {
|
||||
border: 2px solid #ffffff;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
/* Inputs */
|
||||
input,
|
||||
select,
|
||||
textarea {
|
||||
background-color: #000000 !important;
|
||||
color: #ffffff !important;
|
||||
border: 2px solid #ffffff !important;
|
||||
}
|
||||
|
||||
/* Chat bubbles */
|
||||
#messages div {
|
||||
border: 2px solid #ffffff !important;
|
||||
background-color: #000000 !important;
|
||||
color: #ffffff !important;
|
||||
}
|
||||
39
app/static/css/crumbforest_public.css
Normal file
39
app/static/css/crumbforest_public.css
Normal file
@@ -0,0 +1,39 @@
|
||||
/* Crumbforest Public Theme */
|
||||
:root {
|
||||
--pico-font-family: system-ui, -apple-system, "Segoe UI", "Roboto", "Helvetica Neue", sans-serif;
|
||||
--pico-primary: #1095c1;
|
||||
--pico-primary-background: #1095c1;
|
||||
--pico-primary-underline: rgba(16, 149, 193, 0.5);
|
||||
--pico-primary-hover: #0d7aa0;
|
||||
--pico-primary-focus: rgba(16, 149, 193, 0.125);
|
||||
--pico-primary-inverse: #fff;
|
||||
}
|
||||
|
||||
/* Custom styling for public pages */
|
||||
.hero {
|
||||
background-color: var(--pico-card-background-color);
|
||||
padding: 3rem 1rem;
|
||||
border-radius: var(--pico-border-radius);
|
||||
margin-bottom: 2rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.feature-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
gap: 2rem;
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.feature-card {
|
||||
padding: 1.5rem;
|
||||
border: 1px solid var(--pico-muted-border-color);
|
||||
border-radius: var(--pico-border-radius);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.feature-icon {
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 1rem;
|
||||
display: block;
|
||||
}
|
||||
205
app/static/css/home_forest.css
Normal file
205
app/static/css/home_forest.css
Normal file
@@ -0,0 +1,205 @@
|
||||
/* Crumbforest Forest Theme - Dark & Green */
|
||||
:root {
|
||||
--pico-font-family: "Inter", system-ui, sans-serif;
|
||||
|
||||
/* Forest Colors */
|
||||
--pico-primary: #10b981; /* Emerald */
|
||||
--pico-primary-hover: #059669;
|
||||
--pico-primary-focus: rgba(16, 185, 129, 0.125);
|
||||
|
||||
--pico-background-color: #0f172a; /* Dark Blue-Gray */
|
||||
--pico-color: #e2e8f0; /* Light Gray */
|
||||
|
||||
/* Gradients */
|
||||
--hero-gradient: linear-gradient(135deg, #064e3b 0%, #10b981 100%);
|
||||
--section-accent: #1e293b;
|
||||
}
|
||||
|
||||
/* Hero Section */
|
||||
.hero {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: var(--hero-gradient);
|
||||
text-align: center;
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.hero h1 {
|
||||
font-size: 4rem;
|
||||
margin-bottom: 1rem;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.hero p {
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 2rem;
|
||||
max-width: 600px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.hero .cta-button {
|
||||
background: white;
|
||||
color: black;
|
||||
padding: 1rem 2rem;
|
||||
border-radius: 2rem;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
|
||||
.hero .cta-button:hover {
|
||||
background: #fbbf24; /* Yellow */
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
/* Language Switcher */
|
||||
.lang-switcher {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
justify-content: center;
|
||||
margin-top: 2rem;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.lang-switcher a {
|
||||
background: white;
|
||||
color: #000;
|
||||
padding: 0.5rem 1.5rem;
|
||||
border-radius: 2rem;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
|
||||
.lang-switcher a:hover {
|
||||
background: #fbbf24;
|
||||
color: #000;
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
/* Mission Section */
|
||||
.mission {
|
||||
padding: 4rem 2rem;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.mission h2 {
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.values-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
gap: 2rem;
|
||||
margin-top: 2rem;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.value-card {
|
||||
background: var(--section-accent);
|
||||
padding: 2rem;
|
||||
border-radius: 1rem;
|
||||
}
|
||||
|
||||
.value-card h3 {
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
/* Character Cards */
|
||||
.crew-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 1.5rem;
|
||||
padding: 2rem;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.crew-grid {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.crew-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
.character-card {
|
||||
background: var(--section-accent);
|
||||
padding: 1.5rem;
|
||||
border-radius: 1rem;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s;
|
||||
border: 2px solid transparent;
|
||||
}
|
||||
|
||||
.character-card:hover {
|
||||
background: var(--pico-primary);
|
||||
transform: translateY(-5px);
|
||||
border-color: var(--pico-primary-hover);
|
||||
}
|
||||
|
||||
.character-card .icon {
|
||||
font-size: 3rem;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
/* Modal */
|
||||
dialog {
|
||||
border-radius: 1rem;
|
||||
border: none;
|
||||
padding: 2rem;
|
||||
max-width: 600px;
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
dialog::backdrop {
|
||||
background: rgba(0, 0, 0, 0.8);
|
||||
}
|
||||
|
||||
/* Testimonials */
|
||||
.testimonials {
|
||||
background: #7c3aed; /* Purple */
|
||||
padding: 4rem 2rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.testimonial-slide {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.testimonial-slide p {
|
||||
font-size: 1.25rem;
|
||||
font-style: italic;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
/* Responsive */
|
||||
@media (max-width: 768px) {
|
||||
.hero h1 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
|
||||
.hero p {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
.values-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user