This commit is contained in:
2023-08-04 14:48:35 +03:00
parent 5ff0b100c5
commit 139cf7eed1
4 changed files with 55 additions and 14 deletions

View File

@@ -6,6 +6,26 @@
width: 100% !important;
}
.text-align-center{
text-align: center;
width: 100%;
}
.title_page{
font-size: 44px;
color: #272424;
font-weight: 700;
}
.cut-width{
max-width: 1280px;
margin: auto;
}
/**/
.title-profile-cont{
@@ -638,4 +658,18 @@
width: 100%;
}
/*p_results_find_route*/
/*p_results_find_route*/
.container_form_search_carrier{
height: 120px;
width: 100%;
background: #FFF;
box-shadow: -1px 4px 10px 0 rgba(198, 199, 203, 0.20), 0 -1px 10px 0 rgba(198, 199, 203, 0.20);
margin-top: 60px;
margin-bottom: 40px;
border-radius: 10px;
}
.block-filters-find-route{
min-height: 660px;
}

View File

@@ -106,15 +106,8 @@ html, body{
height: 100%;
}
/*uni-classes (boris)*/
.text-align-center{
text-align: center;
}
/*uno classes end (boris)*/
/*Стилизация radio button */

View File

@@ -254,7 +254,7 @@ function sendRoute(el, routeID = null){
},
error: function (data, exception){
document.querySelector(".info_profile").innerHTML = data.responseText;
document.querySelector(".info_profile").innerHTML = data.responseJSON.html;

View File

@@ -1,7 +1,21 @@
{% extends "tb_base.html" %}
{% load static %}
<div>
<h1>Поиск перевозчика</h1>
</div>
<div class="container_form_search_carrier">
</div>
{% block content %}
<div class="cut-width">
<div class="text-align-center">
<h1 class="title_page">Поиск перевозчика</h1>
</div>
<div class="container_form_search_carrier">
</div>
<div class="block-find-route">
<div class="block-filters-find-route">
</div>
<div class="block-finded-routes">
</div>
</div>
</div>
{% endblock %}