-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmobile-test1.html
57 lines (36 loc) · 1.22 KB
/
mobile-test1.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset='UTF-8'>
<meta name="viewport" content="width=device-width, user-scalable=no">
<title>Viewport Sized Typography</title>
<style>
html,body { margin:0px; padding:0px }
h1.city {font-size: 1.1em; }
div, p {margin-top: 0px; margin-bottom:0px;}
.daybar {width:100%; padding-top:2px; padding-bottom:2px; text-align:center; background:gray;
margin-top:10px;margin-bottom:10px;}
.daybar p {font-size: 1em; color:white;}
.sunny {width:100%; padding-top:10px; padding-bottom:10px; text-align:center; background:yellow;
margin-top:10px;margin-bottom:20px;}
.sunny h1 {font-size: 3em; margin-bottom:0px;}
</style>
</head>
<body>
<h1 class="city">Canberra</h1>
<div class="daybar"><p>Today</p></div>
<div class="sunny">
<h1>Sunny.</h1>
<div><img src="http://www.gettyicons.com/free-icons/157/android-weather/png/256/sunny_256.png" /></div>
<p>Max 27</p>
<p>Chance of Rain 0%</p>
</div>
<div class="daybar"><p>Tomorrow</p></div>
<div class="sunny">
<h1>Sunny.</h1>
<img src="http://www.gettyicons.com/free-icons/157/android-weather/png/256/sunny_256.png" />
<p>Max 27</p>
<p>Chance of Rain 0%</p>
</div>
</body>
</html>