-
Notifications
You must be signed in to change notification settings - Fork 0
/
text_whklive.html
106 lines (86 loc) · 2.09 KB
/
text_whklive.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>TEXT: Whakatane Live</title>
<style type="text/css">
@import url('https://fonts.googleapis.com/css?family=Fugaz+One');
@import url('https://fonts.googleapis.com/css?family=Fira+Mono:400,700');
body {
font-family: 'Fira Mono', monospace;
font-weight: bold;
}
#overlay {
background-color: rgba(50, 50, 50, 0.8);
padding: 0 18px 0 120px;
-webkit-border-radius: 55px 5px 5px 55px;
-moz-border-radius: 55px 5px 5px 55px;
border-radius: 55px 5px 5px 55px;
position: relative;
height: 103px;
width: 156px;
}
.info_container {
text-align: right;
}
.logo_container {
}
.text {
color: #DDD;
font-size: 32px;
line-height: 1;
}
.whklive_circle {
width: 160px;
height: auto;
position: absolute;
left: -30px;
top: -8px;
}
.weather {
padding: 16px 0 0 0;
}
.weather, .time {
width: 100%;
float: left;
margin: 0 0 0 0px;
display: inline-block;
}
.weather div {
display: inline-block;
margin-right: -4px;
}
.weather div, .time div {
padding: 0 0 10px 0;
}
.time {
}
</style>
</head>
<body>
<div id="overlay">
<div class="logo_container">
<img class="whklive_circle" src="whklive_circle.png" />
</div>
<div class="info_container">
<!-- <div class="date">
<div class="text">NOW 19°</div>
<div class="text">24 JAN</div>
</div> -->
<div class="weather">
<div class="text" id="temp_max">N/A</div>
<div class="text" id="temp_min">N/A</div>
</div>
<div class="time">
<div class="text" id="time">N/A</div>
</div>
</div>
</div>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<!-- Custom scripts for this template -->
<script src="javascript.js"></script>
</body>
</html>