forked from sakshigandhi/daily
-
Notifications
You must be signed in to change notification settings - Fork 0
/
daily.html
71 lines (62 loc) · 1.2 KB
/
daily.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
<html>
<head>
<script src="daily.js"></script>
<title>Daily</title>
<style>
.share-buttons {
margin-top: 30px;
}
.share-buttons a {
text-decoration: none;
}
.share-buttons img {
height: 30px;
}
.share-buttons img:not(:hover) {
opacity: 0.5;
}
@font-face {
font-family: Calvin;
src: url(/CALVINN.TTF);
}
div {
color: #cccccc;
vertical-align: 50%;
text-align: center;
font-family: sans-serif;
font-size: 300%;
}
#comicTitle {
color: #23475E;
text-decoration: none;
margin: 50 50 25 50;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
cursor: auto;
font-size: 22px;
font-family: Calvin, Helvetica, sans-serif;
}
</style>
</head>
<body>
<center><div>
<div id="comicTitle"></div>
<img id = "comicImage" />
</div>
<div class="share-buttons">
<!-- Facebook -->
<a id="facebookShare" target="_blank">
<img src="/facebook.png" alt="Facebook" />
</a>
<!-- Twitter -->
<a id="twitterShare" target="_blank">
<img src="/twitter.png" alt="Twitter" />
</a>
</div>
</center>
</body>
</html>