0.0.97
This commit is contained in:
@@ -1141,7 +1141,7 @@ body.n_scroll{
|
|||||||
.first_title_project_request{
|
.first_title_project_request{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
font-weight: 400;
|
font-weight: 500;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
margin-bottom: 40px;
|
margin-bottom: 40px;
|
||||||
}
|
}
|
||||||
@@ -1157,6 +1157,26 @@ body.n_scroll{
|
|||||||
margin-top: 40px;
|
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);
|
||||||
}
|
}
|
||||||
@@ -7,7 +7,7 @@
|
|||||||
{% trans "Личные данные" %}
|
{% trans "Личные данные" %}
|
||||||
</div>
|
</div>
|
||||||
<div class="content_group_inputs_f_p_j">
|
<div class="content_group_inputs_f_p_j">
|
||||||
{% with label=project_request_form.fields.firstname.label %}
|
{% with field=project_request_form.fields.firstname %}
|
||||||
{% include "widgets/w_input_form_project_request.html" %}
|
{% include "widgets/w_input_form_project_request.html" %}
|
||||||
{% endwith %}
|
{% endwith %}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,4 +1,9 @@
|
|||||||
{% load static %}
|
{% load static %}
|
||||||
<label class="label_f_project_request">
|
<label class="label_f_project_request">
|
||||||
{{ label }}
|
{{ field.label }}
|
||||||
</label>
|
</label>
|
||||||
|
<input
|
||||||
|
class="input_f_project_request"
|
||||||
|
name="{{ field.name }}"
|
||||||
|
id="id_{{ field.name }}"
|
||||||
|
>
|
||||||
Reference in New Issue
Block a user