forked from avargas/dogeweather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (122 loc) · 4.37 KB
/
index.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Such Weather</title>
<meta name="description" content="much weather wow temperature">
<meta name="author" content="Katia + Bennett" />
<link rel="shortcut icon" href="./img/doge/favicon.png" type="image/png">
<meta name="viewport" content="width=device-width">
<style>
body {
min-height:640px;
}
.bg {
background-color: #FFFFCC;
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.container {
width:550px;
height:640px;
position:absolute;
top:50%;
left: 50%;
margin-left:-275px;
margin-top: -320px;
}
.doge-image {
width:550px;
height:550px;
background: url(img/doge/doge-regular.png);
background-repeat: no-repeat;
background-attachment: center center;
background-size: 550px 550px;
}
#all-weather {
height:90px;
position:relative;
top:-100px;
text-align: center;
}
#weather-desc {
font-size: 30px;
color:#33D6FF;
}
#identifiers {
visibility:hidden;
}
#location {
color: #ff3399;
}
.t {
color: #30FFD6;
display: inline-block;
}
.suchlikes {
display:block;
padding: 10px;
}
.much-like {
display:inline-block;
padding:5px;
}
.ourinfo {
display:none;
position:absolute;
bottom:0;
right:0;
padding:0 30px 8px 0;
color: #ffffe6;
font-weight: 100px;
font-size: 11px;
letter-spacing: 2px;
}
.ourinfo p {
margin: 0;
padding:0;
}
.ourinfo a {
text-decoration: none;
color:#FFFF99;
font-weight: bold;
}
.ourinfo a:hover {
color: #FF3399;
}
</style>
</head>
<body class="bg">
<div class="suchlikes">
</div>
<div class="container">
<div class="doge-image"></div>
<div id="all-weather">
<div id="weather-desc"></div>
<div id="location"></div>
<div class="t" id="degreesCelsius"> <span class="number"></span><span class="cel"></span></div>
<div class="t" id="degreesFahrenheit"></div>
</div>
</div>
<div id="identifiers">
<div id="weather-id"></div>
<div id="weather-icon"> </div>
</div>
<div class="ourinfo"> wow <a href="https://github.com/katiaeirin/dogeweather" target="_blank">github</a> such <a href="http://drakeweather.com/" target="_blank">inspired</a>
<p> hello <a href="https://twitter.com/KatiaEirin" target="_blank">Katia</a> & <a href="https://twitter.com/ennsu" target="_blank">Bennett</p>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="./js/vendor/jquery-1.9.0.min.js"><\/script>')</script>
<script src="./js/main.js"></script>
<script src="./js/jquery.dogeweather.js"></script>
</body>
</html>