forked from abenzer/represent-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mobile.css
75 lines (68 loc) · 980 Bytes
/
mobile.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
/*
these styles are only loaded on mobile devices
*/
body
{
width: auto;
}
.menu
{
display: none;
}
.menu_mobile
{
display: block;
position: absolute;
z-index: 2;
font-size: 20px;
width: 100%;
font-weight: bold;
left: 0;
top: 0;
background-color: rgba(255,255,255,.8);
border-bottom: 1px solid #aaa;
}
.menu_mobile .wrapper
{
overflow: hidden;
padding: 5px 10px;
}
.menu_mobile .search
{
display: none;
}
.menu_mobile .logo
{
float: left;
overflow: hidden;
}
.menu_mobile .buttons
{
float: right;
overflow: hidden;
}
.menu_mobile .logo img
{
width: 35px;
}
.menu_mobile .btn
{
display: inline-block;
font-size: 11px;
font-weight: bold;
padding: 8px 12px;
}
#modal_info,
#modal_add
{
position: absolute;
margin: 10px 0px;
top: 0;
}
/* landscape styles */
@media screen and (orientation:landscape) {
.menu_mobile
{
display: none;
}
}