Compare commits
2 Commits
bf451393b6
...
1018b4b318
| Author | SHA1 | Date | |
|---|---|---|---|
| 1018b4b318 | |||
| 3c17276e27 |
@@ -175,7 +175,7 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
max-width: 1400px;
|
max-width: 1280px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
margin-top: 40px;
|
margin-top: 40px;
|
||||||
margin-bottom: 60px;
|
margin-bottom: 60px;
|
||||||
@@ -234,7 +234,7 @@ section.register>h1 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
footer>div {
|
footer>div {
|
||||||
max-width: 1400px;
|
max-width: 1280px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
padding: 40px;
|
padding: 40px;
|
||||||
display: flex;
|
display: flex;
|
||||||
@@ -258,7 +258,7 @@ footer>div {
|
|||||||
|
|
||||||
.second-footer>div {
|
.second-footer>div {
|
||||||
display: flex;
|
display: flex;
|
||||||
max-width: 1400px;
|
max-width: 1280px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
height: 60px;
|
height: 60px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@@ -276,7 +276,7 @@ footer>div {
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
height: 60px;
|
height: 60px;
|
||||||
max-width: unset;
|
max-width: unset;
|
||||||
background: white;
|
background: #F8F8F8;
|
||||||
margin-top: -15px;
|
margin-top: -15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -789,7 +789,7 @@ section.login>form>div>div:nth-child(7)>a {
|
|||||||
}
|
}
|
||||||
|
|
||||||
section.profile {
|
section.profile {
|
||||||
max-width: 1400px;
|
max-width: 1280px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
padding: 0px 40px;
|
padding: 0px 40px;
|
||||||
margin-bottom: 120px;
|
margin-bottom: 120px;
|
||||||
@@ -823,6 +823,7 @@ h2.title_new_route{
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
height: 44px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu_profile>div>a {
|
.menu_profile>div>a {
|
||||||
@@ -836,12 +837,16 @@ h2.title_new_route{
|
|||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
position: absolute;
|
||||||
|
top: 22px;
|
||||||
|
left: 0px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu_profile>div>img.svg {
|
.menu_profile>div>img.svg {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 10px;
|
left: 10px;
|
||||||
|
top: 22px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.selected{
|
.selected{
|
||||||
|
|||||||
@@ -182,7 +182,11 @@ function searchTown(el){
|
|||||||
|
|
||||||
timer = null;
|
timer = null;
|
||||||
let form = el.form;
|
let form = el.form;
|
||||||
let type_transport = form['type_transport'].value;
|
let type_transport_el = form['type_transport'];
|
||||||
|
let type_transport = ""
|
||||||
|
if(type_transport_el){
|
||||||
|
type_transport = type_transport_el.value
|
||||||
|
}
|
||||||
let search_str = el.value;
|
let search_str = el.value;
|
||||||
let get_address_point = new Object({type_transport, search_str});
|
let get_address_point = new Object({type_transport, search_str});
|
||||||
get_address_point['ctrl_name'] = el.name;
|
get_address_point['ctrl_name'] = el.name;
|
||||||
|
|||||||
Reference in New Issue
Block a user