]> git.openstreetmap.org Git - nominatim.git/blob - website/css/search.css
29ad813f3fb3df3bca308166834ec840a2d47a18
[nominatim.git] / website / css / search.css
1 header {
2   /*position: fixed;*/
3   width: 100%;
4   padding: 15px;
5   z-index: 5;
6 }
7
8 header .brand {
9   white-space: nowrap;
10 }
11
12 header .brand a:hover{
13   text-decoration: none;
14 }
15
16 header .brand h1 {
17   display: inline;
18   font-size: 1.5em;
19   color: #333;
20 }
21
22 header .brand > img {
23   display: inline-block;
24   margin-right: 5px;
25   margin-top: -5px;
26 }
27
28 header #last-updated {
29   font-size: 0.7em;
30   white-space: nowrap;
31   text-align: center;
32 }
33
34
35 form {
36   width: 100%;
37   padding: 1em 15px;
38 }
39 form #q {
40   min-width: 500px;
41 }
42 form .checkbox-inline {
43   margin-left: 10px;  
44 }
45 form label {
46   font-weight: normal;
47 }
48
49 .sidebar {
50   width: 25%;
51   padding: 10px;
52   padding-top: 0;
53   display: inline-block;
54   float: left;
55 }
56
57
58 #map-wrapper {
59   position: relative;
60   min-height: 700px;
61   width: 75%;
62   padding-right: 20px;
63   display: inline-block;
64   float: left;
65 }
66
67 #map {
68   height: 100%;
69   background:#eee;
70 }
71
72 #map-position {
73   position: absolute;
74   top: 0;
75   right: 20px;
76   padding: 0 5px;
77   color: #333;
78   font-size: 11px;
79   background-color: rgba(255, 255, 255, 0.7);
80   z-index: 100;
81 }
82
83 .result {
84   font-size: 0.8em;
85   margin: 5px;
86   margin-top:0px;
87   padding: 4px 8px;
88   border-radius: 2px;
89   background:#F0F7FF;
90   border: 2px solid #D7E7FF;
91   cursor:pointer;
92   min-height: 5em;
93 }
94
95
96 .result.highlight {
97   background-color: #D9E7F7;
98   border-color: #9DB9E4;
99 }
100 .result.highlight .details {
101   margin: 10px auto;
102   display: block;
103   max-width: 10em;
104 }
105 .result img{
106   float: right;
107 }
108 .result .type{
109   color: gray;
110   font-size: 0.8em;
111 }
112 .result .details {
113   display: none;
114 }
115 .noresults{
116   text-align: center;
117   padding: 1em;
118 }
119
120 .more{
121   text-align:center;
122   margin-top: 1em;
123 }
124
125 footer {
126   text-align: center;  
127   padding: 2em 0;
128   font-size: 0.8em;
129   clear: both;
130   color: #333;
131 }
132
133 footer p {
134   margin: 1em;
135 }
136
137 @media (max-width: 768px) {
138   #content {
139     top: 0;
140     position: relative;
141   }
142   #map-wrapper {
143     width: 100%;
144     max-height: 300px;
145     padding: 20px;
146   }
147   #map-position {
148     top: 20px;
149     right: 20px;
150   }
151   .sidebar {
152     width: 100%;
153   }
154 }