Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 26 additions & 32 deletions client/package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions client/src/components/FeedbackModal.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
}

.modal-content {
background: white;
background: var(--bg) ;
padding: 30px;
border-radius: 12px;
width: 90%;
Expand All @@ -36,7 +36,7 @@
.modal-content h2 {
margin-top: 0;
margin-bottom: 20px;
color: #333;
color: var(--text) ;
text-align: center;
}

Expand All @@ -59,15 +59,15 @@
display: block;
margin-bottom: 5px;
font-weight: bold;
color: #555;
color: var(--text) ;
}

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border: 1px solid var(--border) ;
border-radius: 6px;
font-size: 1rem;
box-sizing: border-box; /* Important for padding */
Expand Down
2 changes: 1 addition & 1 deletion client/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ code {
--text: #0f172a; /* Slate-900 */
--muted: #334155; /* Slate-700 for stronger contrast */
--card: #f8fafc; /* Slate-50 */
--border: #e2e8f0; /* Slate-200 */
--border: var(--border) ; /* Slate-200 */
--brand: #2563eb; /* Stronger blue for links/buttons */
--heading: #0a0f1f; /* Deep heading color */
}
Expand Down
42 changes: 21 additions & 21 deletions client/src/pages/About.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.about {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
line-height: 1.6;
color: #333;
color: var(--text) ;
}

.container {
Expand Down Expand Up @@ -58,7 +58,7 @@
/* Mission Section */
.mission {
padding: 6rem 0;
background: #f8fafc;
background: var(--card) ;
}

.mission-content {
Expand All @@ -72,12 +72,12 @@
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 2rem;
color: #333;
color: var(--text) ;
}

.mission-text p {
font-size: 1.1rem;
color: #666;
color: var(--muted) ;
margin-bottom: 1.5rem;
line-height: 1.8;
}
Expand Down Expand Up @@ -113,22 +113,22 @@

.stat-text {
font-size: 0.9rem;
color: #666;
color: var(--muted) ;
font-weight: 500;
}

/* Story Section */
.story {
padding: 4rem 0;
background: white;
background: var(--bg) ;
}

.story h2 {
text-align: center;
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 3rem;
color: #333;
color: var(--text) ;
}

.story-content {
Expand All @@ -138,7 +138,7 @@
}

.story-card {
background: #f8fafc;
background: var(--card) ;
padding: 2.5rem;
border-radius: 15px;
text-align: center;
Expand Down Expand Up @@ -169,26 +169,26 @@
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 1rem;
color: #333;
color: var(--text) ;
}

.story-card p {
color: #666;
color: var(--muted) ;
line-height: 1.7;
}

/* Features Deep Dive */
.features-deep {
padding: 6rem 0;
background: #f8fafc;
background: var(--card) ;
}

.features-deep h2 {
text-align: center;
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 3rem;
color: #333;
color: var(--text) ;
}

.features-deep-grid {
Expand All @@ -198,7 +198,7 @@
}

.feature-deep {
background: white;
background: var(--bg) ;
padding: 2.5rem;
border-radius: 15px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
Expand All @@ -225,12 +225,12 @@
.feature-deep h3 {
font-size: 1.3rem;
font-weight: 600;
color: #333;
color: var(--text) ;
margin: 0;
}

.feature-deep p {
color: #666;
color: var(--muted) ;
margin-bottom: 1.5rem;
line-height: 1.7;
}
Expand All @@ -241,7 +241,7 @@
}

.feature-deep ul li {
color: #555;
color: var(--text) ;
margin-bottom: 0.5rem;
position: relative;
padding-left: 1.5rem;
Expand All @@ -266,15 +266,15 @@
/* Values Section */
.values {
padding: 6rem 0;
background: white;
background: var(--bg) ;
}

.values h2 {
text-align: center;
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 3rem;
color: #333;
color: var(--text) ;
}

.values-grid {
Expand All @@ -286,7 +286,7 @@
.value-item {
text-align: center;
padding: 2rem;
background: #f8fafc;
background: var(--card) ;
border-radius: 15px;
transition: all 0.3s ease;
}
Expand Down Expand Up @@ -423,7 +423,7 @@

.btn-primary {
background: linear-gradient(45deg, #ffd700, #ffed4a);
color: #333;
color: var(--text) ;
box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

Expand All @@ -439,7 +439,7 @@
}

.btn-secondary:hover {
background: white;
background: var(--bg) ;
color: #f5576c;
transform: translateY(-3px);
}
Expand Down
22 changes: 11 additions & 11 deletions client/src/pages/Analytics.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
min-height: 100vh;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
line-height: 1.6;
color: #333;
color: var(--text) ;
}

.container {
Expand Down Expand Up @@ -84,7 +84,7 @@
}

.chart-container {
background: white;
background: var(--bg) ;
padding: 2rem;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
Expand All @@ -95,14 +95,14 @@
.chart-container h2 {
margin-bottom: 1rem;
font-size: 1.4rem;
color: #333;
color: var(--text) ;
text-align: center;
}
select {
border: 2px solid #667eea;
border-radius: 6px;
background-color: white;
color: #333;
background-color: var(--bg) ;
color: var(--text) ;
}

button:hover {
Expand All @@ -119,7 +119,7 @@ button:hover {
.insights-section h2,
.filter-section h2 {
margin-bottom: 1rem;
color: #444;
color: var(--text) ;
}

.insights-section ul {
Expand All @@ -131,7 +131,7 @@ button:hover {
.filter-section select {
padding: 0.6rem 1rem;
font-size: 1rem;
border: 1px solid #ccc;
border: 1px solid var(--border) ;
border-radius: 6px;
}

Expand All @@ -140,7 +140,7 @@ button:hover {
padding: 0.8rem 1.5rem;
font-size: 1rem;
background-color: #ffd700;
color: #333;
color: var(--text) ;
border: none;
border-radius: 8px;
cursor: pointer;
Expand Down Expand Up @@ -173,7 +173,7 @@ button:hover {
.insights-section h2,
.filter-section h2 {
margin-bottom: 1rem;
color: #333;
color: var(--text) ;
font-size: 1.6rem;
font-weight: 600;
border-left: 6px solid #ffda00;
Expand All @@ -185,7 +185,7 @@ button:hover {
list-style: none;
padding-left: 0;
font-size: 1.1rem;
color: #444;
color: var(--text) ;
}

.insights-section ul li {
Expand All @@ -208,7 +208,7 @@ button:hover {
background-color: #fff8d6;
border: 1px solid #e0c000;
border-radius: 8px;
color: #333;
color: var(--text) ;
outline: none;
transition: border-color 0.3s ease;
}
Expand Down
Loading