This commit is contained in:
john aperkat
2025-07-30 04:18:44 +00:00
parent 3206db6010
commit afe9b24f56
19 changed files with 1983 additions and 657 deletions

View File

@@ -14,7 +14,7 @@
--neutral-800: #262626;
--neutral-900: #171717;
--white: #ffffff;
--success-green: #10b981;
--success-green: #43a0a7;
--warning-amber: #f59e0b;
--error-red: #ef4444;
--text-primary: #0f172a;
@@ -59,7 +59,7 @@ body {
justify-content: space-between;
align-items: center;
box-shadow: var(--shadow-sm);
border-bottom: 3px solid #ef4444;
border-bottom: 3px solid #43a0a7;
position: sticky;
top: 0;
z-index: 50;
@@ -81,10 +81,18 @@ body {
}
.dashboardHeader .h1 {
margin: 2px;
font-size: 1.5rem;
font-weight: 700;
color: #43a0a7;
letter-spacing: -0.025em;
}
.data {
margin: 0;
font-size: 1.5rem;
font-weight: 700;
color: #ed4344;
color: #154666;
letter-spacing: -0.025em;
}
@@ -207,7 +215,7 @@ body {
.summaryCard p {
font-size: 2rem;
font-weight: 700;
color: #ef4444;
color: #43a0a7;
margin: 0;
line-height: 1;
}
@@ -270,7 +278,7 @@ body {
}
.submitButton {
background-color: #ef4444;
background-color: #43a0a7;
color: var(--text-light);
border: none;
padding: 0.75rem 1.5rem;
@@ -285,7 +293,7 @@ body {
}
.submitButton:hover {
background-color: #d03b3b;
background-color: #357734;
transform: translateY(-1px);
box-shadow: var(--shadow-md);
}
@@ -296,9 +304,9 @@ body {
/* Messages */
.success {
background-color: rgb(16 185 129 / 0.1);
background-color: rgb(67 160 167 / 0.1);
color: var(--success-green);
border: 1px solid rgb(16 185 129 / 0.2);
border: 1px solid rgb(67 160 167 / 0.2);
padding: 0.75rem 1rem;
border-radius: 0.5rem;
margin-top: 1rem;
@@ -318,9 +326,9 @@ body {
}
.warning {
background-color: #ef444417;
color: #ef4444;
border: 1px solid #ef444433;
background-color: rgb(67 160 167 / 0.1);
color: #43a0a7;
border: 1px solid rgb(67 160 167 / 0.2);
padding: 1rem;
border-radius: 0.5rem;
margin-top: 1rem;