-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (46 loc) · 1.61 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
<html>
<head>
<meta charset="utf-8">
<title>faceday!</title>
<style type="text/css">
#content{
width:650px;
margin:50px auto;
font-family: Helvetica, Arial;
text-align: center;
}
#bookmarklet{
display:block;
width:200px;
height:40px;
margin:0 auto 30px auto;
border-radius: 10px;
padding-top:20px;
background: #31dfff;
color:#fff;
}
a{
color:#31dfff;
text-decoration: none;
}
#logo{
width:100px;
margin:0 auto;
display:block;
margin-top:30px;
}
#small{
font-size: 11px;
margin-top:30px;
}
</style>
</head>
<body>
<div id="content">
<a id="bookmarklet" href="javascript:(function() {var days = ['sunday','monday','tuesday','wednesday','thursday','friday','saturday'];Date.prototype.getDayName = function() {return days[ this.getDay() ];};})();var now = new Date();var day = now.getDayName();window.location='http://facespac.es/c/'+ day;">faceday!</a>
<p>Faceday takes you to the <a href="http://facespac.es">facespac.es</a> channel for the day of the week!<br/>Drag faceday to your bookmarks bar and click it every day at midnight and beyond!</p>
<a href="http://facespac.es"><img src="facespaces-logo.png" id="logo"/></a>
<p id="small">faceday is brought to you by<br/><a href="http://twitter.com/lauradegroot">@lauradegroot</a> and hosted by <a href="http://twitter.com/taotetek">@taotetek</a><br/><br/><a href="https://twitter.com/adcadien">@adcadien</a> says he thought of this 4 days before me and only told Bryce and didn't do anything about it. 50% credit goes to him.</p>
</div>
</body>
</html>