From 17f98ed96b24cf84098667498d2892ef6e8592fe Mon Sep 17 00:00:00 2001 From: SBD Date: Sat, 9 Dec 2023 16:00:44 +0300 Subject: [PATCH] 0.0.97 --- static/aerbimCSS.css | 24 +++++++++++++++++-- templates/forms/f_project_request.html | 2 +- .../widgets/w_input_form_project_request.html | 9 +++++-- 3 files changed, 30 insertions(+), 5 deletions(-) diff --git a/static/aerbimCSS.css b/static/aerbimCSS.css index 5a6b4c6..75adc36 100644 --- a/static/aerbimCSS.css +++ b/static/aerbimCSS.css @@ -1141,7 +1141,7 @@ body.n_scroll{ .first_title_project_request{ width: 100%; text-align: left; - font-weight: 400; + font-weight: 500; font-size: 20px; margin-bottom: 40px; } @@ -1157,6 +1157,26 @@ body.n_scroll{ margin-top: 40px; } -.label_f_project_request{ +.title_of_group_from_p_j{ + font-weight: 400; + font-size: 20px; + padding-bottom: 10px; +} +.content_group_inputs_f_p_j{ + padding: 30px 70px 0 70px; + border-top: 1px solid #9CDDF7; +} + +.label_f_project_request{ + font-size: 16px; + font-weight: 400; + display: block; +} + +.input_f_project_request{ + border-radius: 1px; + border: 1px solid #E3E3E3; + background: #FFF; + box-shadow: 1px 1px 2px 0 rgba(151, 167, 176, 0.20); } \ No newline at end of file diff --git a/templates/forms/f_project_request.html b/templates/forms/f_project_request.html index 27eaf4b..c0fdaab 100644 --- a/templates/forms/f_project_request.html +++ b/templates/forms/f_project_request.html @@ -7,7 +7,7 @@ {% trans "Личные данные" %}
- {% with label=project_request_form.fields.firstname.label %} + {% with field=project_request_form.fields.firstname %} {% include "widgets/w_input_form_project_request.html" %} {% endwith %}
diff --git a/templates/widgets/w_input_form_project_request.html b/templates/widgets/w_input_form_project_request.html index a2fbda9..eeb38f2 100644 --- a/templates/widgets/w_input_form_project_request.html +++ b/templates/widgets/w_input_form_project_request.html @@ -1,4 +1,9 @@ {% load static %} \ No newline at end of file + {{ field.label }} + + \ No newline at end of file