Skip to content
Merged
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
28 changes: 28 additions & 0 deletions efile_app/efile/static/css/common.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
:root {
--suffolk-blue: #1e3a5f;
--better-blue: #2c5aa0;
--primary-btn-color: #007bff;
--success: #28a745;
--light-blue-background: #f8f9fa;
}

body {
background-color: var(--light-blue-background);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Custom styles for better spacing and required field styling */
.required {
color: #dc3545 !important;
font-weight: bold;
}

h1 {
color: var(--better-blue);
font-weight: 600;
}

h2 {
color: var(--better-blue);
font-weight: 500;
}
2 changes: 1 addition & 1 deletion efile_app/efile/static/css/components/search-dropdown.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
.search-dropdown-item {
padding: 0.75rem;
cursor: pointer;
border-bottom: 1px solid #f8f9fa;
border-bottom: 1px solid var(--light-blue-background);
transition: background-color 0.15s ease-in-out;
background-color: #ffffff;
color: #212529;
Expand Down
6 changes: 3 additions & 3 deletions efile_app/efile/static/css/confirmation.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}

.success-icon {
color: #28a745;
color: var(--success);
font-size: 4rem;
margin-bottom: 1rem;
}
Expand All @@ -18,8 +18,8 @@
}

.btn-primary.custom-confirm {
background: #2c5aa0;
border-color: #2c5aa0;
background: var(--better-blue);
border-color: var(--better-blue);
}

.btn-primary.custom-confirm:hover {
Expand Down
32 changes: 10 additions & 22 deletions efile_app/efile/static/css/expert_form.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
body {
background-color: #f8f9fa;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.form-container {
background: white;
padding: 2rem;
Expand All @@ -12,7 +7,6 @@ body {
}

.section-header {
color: #007bff;
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 0.5rem;
Expand All @@ -35,6 +29,7 @@ body {

.form-label {
font-weight: 500;
font-size: 1.25rem;
color: #495057;
margin-bottom: 0;
}
Expand All @@ -48,7 +43,7 @@ body {

.form-select:focus,
.form-control:focus {
border-color: #007bff;
border-color: var(--primary-btn-color);
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

Expand All @@ -63,8 +58,8 @@ body {
}

.btn-primary {
background-color: #007bff;
border-color: #007bff;
background-color: var(--primary-btn-color);
border-color: var(--primary-btn-color);
}

.btn-primary {
Expand All @@ -75,7 +70,7 @@ body {
}

.checkbox-group {
background-color: #f8f9fa;
background-color: var(--light-blue-background);
border: 1px solid #e9ecef;
border-radius: 4px;
padding: 1rem;
Expand All @@ -96,7 +91,7 @@ body {
}

.party-section {
background-color: #f8f9fa;
background-color: var(--light-blue-background);
border: 1px solid #e9ecef;
border-radius: 4px;
padding: 1.5rem;
Expand All @@ -110,21 +105,21 @@ body {
}

.loading-spinner {
color: #007bff;
color: var(--primary-btn-color);
font-size: 0.9rem;
margin-top: 0.5rem;
}

.dropdown-field:disabled {
background-color: #f8f9fa;
background-color: var(--light-blue-background);
opacity: 0.65;
}

.recommendation-notice {
font-size: 0.875rem !important;
padding: 8px 12px !important;
margin: 1rem 0 2rem 0 !important;
border: 1px solid #28a745;
border: 1px solid var(--success);
background-color: #d4edda;
color: #155724;
border-radius: 4px;
Expand Down Expand Up @@ -167,17 +162,10 @@ option.recommended {
position: relative;
}

/* Custom styles for better spacing and required field styling */
.required {
color: #dc3545 !important;
font-weight: bold;
}

.subsection-header {
margin-top: 3.5rem !important;
margin-bottom: 1rem !important;
color: #007bff;
font-weight: 600;
}

.subsection-header:first-of-type {
Expand All @@ -199,5 +187,5 @@ option.recommended {
h4 {
margin-top: 2rem;
margin-bottom: 1rem !important;
color: #007bff;
color: var(--primary-btn-color);
}
10 changes: 8 additions & 2 deletions efile_app/efile/static/css/header.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.header {
background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
background: linear-gradient(135deg, var(--suffolk-blue) 0%, var(--better-blue) 100%);
color: white;
padding: 1rem 0;
margin-bottom: 2rem;
Expand All @@ -19,11 +19,17 @@
display: flex;
align-items: center;
justify-content: center;
color: #1e3a5f;
color: var(--suffolk-blue);
cursor: pointer;
}

.scales-icon {
font-size: 1.2rem;
margin-right: 0.5rem;
}

.brand-title {
font-size: 1.8rem;
font-weight: 600;
margin: 0;
}
11 changes: 3 additions & 8 deletions efile_app/efile/static/css/login.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
body {
background-color: #f8f9fa;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.main-container {
max-width: 500px;
margin: 2rem auto;
Expand All @@ -25,7 +20,7 @@ body {
}

.brand-header {
background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
background: linear-gradient(135deg, var(--suffolk-blue) 0%, var(--better-blue) 100%);
color: white;
padding: 1.5rem;
border-radius: 20px 20px 0 0;
Expand Down Expand Up @@ -80,7 +75,7 @@ body {
.btn-sign-in,
.btn-register,
.btn-password-reset {
background: #1e3a5f;
background: var(--suffolk-blue);
border: none;
border-radius: 25px;
padding: 0.75rem 2rem;
Expand All @@ -94,7 +89,7 @@ body {
.btn-sign-in:hover,
.btn-register:hover,
.btn-password-reset:hover {
background: #1e3a5f;
background: var(--suffolk-blue);
filter: brightness(1.5);
transform: translateY(-1px);
}
Expand Down
15 changes: 8 additions & 7 deletions efile_app/efile/static/css/options.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
body {
background-color: #f8f9fa;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.section-title {
color: #333;
font-size: 2rem;
Expand All @@ -20,7 +15,7 @@ body {
}

.option-card:hover {
border-color: #2c5aa0;
border-color: var(--better-blue);
box-shadow: 0 4px 12px rgba(44, 90, 160, 0.15);
transform: translateY(-2px);
}
Expand Down Expand Up @@ -52,7 +47,7 @@ body {
.option-icon {
width: 60px;
height: 60px;
color: #2c5aa0;
color: var(--better-blue);
border-radius: 8px;
display: flex;
align-items: center;
Expand All @@ -74,4 +69,10 @@ body {
font-size: 1.1rem;
margin: 0;
line-height: 1.4;
}

.brand-title {
font-size: 1.8rem;
font-weight: 600;
margin: 0;
}
15 changes: 3 additions & 12 deletions efile_app/efile/static/css/register.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@
font-size: 1.15rem;
}

body {
background-color: #f8f9fa;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.alert-warning {
background-color: #fef3c7;
border: 1px solid #f59e0b;
Expand All @@ -29,7 +24,7 @@ body {
}

.brand-header {
background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
background: linear-gradient(135deg, var(--suffolk-blue) 0%, var(--better-blue) 100%);
color: white;
padding: 1.5rem;
display: flex;
Expand Down Expand Up @@ -69,7 +64,7 @@ body {
}

.btn-register {
background: #1e3a5f;
background: var(--suffolk-blue);
border: none;
border-radius: 25px;
padding: 0.75rem 2.5rem;
Expand All @@ -81,7 +76,7 @@ body {
}

.btn-register:hover {
background: #1e3a5f;
background: var(--suffolk-blue);
filter: brightness(1.5);
transform: translateY(-1px);
color: white;
Expand Down Expand Up @@ -200,10 +195,6 @@ body {
padding: 2rem;
}

.required {
color: #dc3545;
}

.scales-icon {
font-size: 1.5rem;
margin-right: 0.75rem;
Expand Down
17 changes: 11 additions & 6 deletions efile_app/efile/static/css/review.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
}

.review-section {
background: #f8f9fa;
background: var(--light-blue-background);
border-radius: 8px;
padding: 1.5rem;
margin-bottom: 1.5rem;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.review-section h3 {
color: #2c5aa0;
color: var(--better-blue);
margin-bottom: 1rem;
font-size: 1.3rem;
font-weight: 600;
Expand All @@ -27,6 +27,10 @@
border-bottom: 1px solid #e9ecef;
}

.review-item input {
max-width: 400px;
}

.review-item:last-child {
border-bottom: none;
}
Expand All @@ -42,6 +46,7 @@
text-align: right;
color: #212529;
margin-left: 1rem;
word-break: break-word;
}

.review-text {
Expand Down Expand Up @@ -135,7 +140,7 @@
}

.btn-continue {
background: #2c5aa0;
background: var(--better-blue);
color: white;
border: none;
padding: 0.75rem 2rem;
Expand Down Expand Up @@ -277,13 +282,13 @@
margin: 0;
width: 28px;
text-align: center;
color: #2c5aa0;
color: var(--better-blue);
font-size: 1.1rem;
}

.payment-method-name {
font-weight: 600;
color: #2c5aa0;
color: var(--better-blue);
margin-bottom: 0;
}

Expand All @@ -293,7 +298,7 @@
}

.payment-method-item:hover {
background-color: #f8f9fa;
background-color: var(--light-blue-background);
}

.no-payment-methods {
Expand Down
Loading