-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresultados.css
68 lines (52 loc) · 927 Bytes
/
resultados.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/**************************/
/* RESULTADOS DA PESQUISA */
/**************************/
.resultados-da-pesquisa {
display: flex;
flex-direction: row;
margin-bottom: 200px;
}
.resultados-da-pesquisa div div {
text-align: center;
}
.filtros {
width: 20%;
}
.resultados {
display: flex;
flex-direction: column;
width: 50%;
}
.mapa {
display: flex;
flex-direction: column;
align-items: flex-end;
width: 30%;
}
.mapa .botao-secundario {
right: 0;
}
#mapa {
margin: 10px;
width: 98%;
}
@media(max-width: 768px) {
.resultados-da-pesquisa {
flex-direction: column;
}
.filtros {
width: 100%;
}
.resultados {
width: 100%;
}
.mapa {
width: 100%;
}
.resultados-da-pesquisa .mapa {
display: none;
}
button[onclick="gradeOuLista()"] {
display: none;
}
}