-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
105 lines (91 loc) · 1.66 KB
/
style.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#map-container {
height: 93vh;
}
body {
margin: 0;
padding: 0;
}
.heading {
text-align: center;
margin: 0;
padding: 10px;
font-family: "Figtree", sans-serif;
font-weight: 600;
font-size: 24px;
border-top: solid black 1.5px;
border-bottom: solid black 1.5px;
}
.old-heading {
background-image: linear-gradient(0deg, rgb(240, 154, 78) 10%, rgb(239, 217, 92) 100%);
}
.new-title {
background-image: linear-gradient(0deg, rgb(176, 122, 252) 10%, rgb(221, 201, 248) 100%);
}
#search {
width: 240px;
padding: 3px 5px;
}
.search-form {
text-align: center;
position: absolute;
top: 70px;
z-index: 999;
right: 1%;
}
.btn {
padding: 3px 7px;
margin-top: -4px;
}
#result-list {
position: absolute;
z-index: 999;
max-width: 650px;
height: 160px;
top: 74%;
overflow-x: scroll;
overflow-y: hidden;
white-space: normal;
background-color: white;
word-break: keep-all;
position: absolute;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
border-radius: 4px;
font-family: "Figtree", sans-serif;
}
.card-text {
font-size: 13px;
word-break: keep-all;
}
.class-title {
font-size: 15px;
word-break: keep-all;
font-weight: 700;
}
.list-items:hover {
background-color: rgb(211, 208, 208);
}
@media screen and (max-width: 800px) {
.search-form {
position: absolute;
top: 80px;
z-index: 999;
text-align: center;
left: 58%;
}
}
@media screen and (max-width: 700px) {
.search-form {
position: absolute;
top: 80px;
z-index: 999;
text-align: center;
left: 15%;
}
}
.leaflet-touch .geocoder-control-input {
height: 45px !important;
font-size: 17px !important;
}