All checks were successful
Build and Push Docker Image / build (push) Successful in 43s
- Created `FaqQuestionForm` in `forms.py` with custom field validations - Added FAQ form to the FAQ section with CSRF protection and error handling - Integrated email notifications to administrator upon FAQ submission - Updated styles and scripts for form inputs, validation messages, and messages UI - Adjusted FAQ section layout in `faq.html` and related CSS for responsiveness - Implemented tests for FAQ form submission and email notifications
34 lines
583 B
CSS
34 lines
583 B
CSS
.warranty {
|
|
padding-bottom: 40px;
|
|
|
|
& > h1 {
|
|
margin: 0;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 50px;
|
|
text-align: left;
|
|
|
|
color: #36213e;
|
|
}
|
|
|
|
& > h2 {
|
|
margin-top: 30px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 30px;
|
|
text-align: left;
|
|
|
|
color: #36213e;
|
|
}
|
|
|
|
& > p {
|
|
display: block;
|
|
margin-top: 30px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 21px;
|
|
text-align: left;
|
|
|
|
color: #36213e;
|
|
}
|
|
} |