-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmobile.css
More file actions
113 lines (95 loc) · 2.06 KB
/
mobile.css
File metadata and controls
113 lines (95 loc) · 2.06 KB
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
106
107
108
109
110
111
112
113
@media (max-width:750px) {
body {
margin:0;
padding:0;
width:100%;
height:100%;
}
.AppView {
position:absolute;
overflow:scroll;
}
.SearchBox .innerSearchBox, .SearchBox .innerSearchBox .input_search {
height: 45px;
}
.SearchBox .innerSearchBox .input_search{
font-size: 16px;
margin-left: 20px;
}
.WeatherInfo {
position: absolute;
top: 57px;
left: 10px;
display: flex;
width: 76%;
max-width: 300px;
padding: 3px;
}
.WeatherInfo .temperature {
margin-bottom: 0px;
}
.WeatherInfo .temperature .current {
font-size: 20px;
margin-right: 10px;
}
.WeatherInfo .other_info {
position: absolute;
right: 10px;
margin-bottom: 0px;
margin-left: 3px;
}
.WeatherInfo .other_info div img {
width: 12px !important;
}
.WeatherInfo .other_info > div {
padding: 5px;
font-size: 10px;
}
.InfoBox .specific_information .node {
width: 130px;
}
.SearchPanel {
position: absolute;
width: 100%;
}
.SearchBox {
position: absolute;
}
.ResultsBox {
margin-top: 56px;
}
.InfoBox {
position: absolute;
top: 90%;
height: auto;
}
.InfoBox .top_img {
width: 100%;
height: auto;
display: none;
}
.InfoBox .profile .img {
margin-top: 0px;
}
.NavControls {
top: 70px;
bottom: auto;
}
}
@media (min-width:320px) { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
}
@media (min-width:480px) { /* smartphones, Android phones, landscape iPhone */
}
@media (min-width:600px) { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
}
@media (min-width:801px) { /* tablet, landscape iPad, lo-res laptops ands desktops */
}
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */
}
@media (min-width:1281px) { /* hi-res laptops and desktops */
}
/*
.WeatherInfo {
display: none;
}
*/