-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (59 loc) · 1.39 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>mismo - github</title>
<style type="text/css">
html,body {
margin: 0;
padding: 0;
height: 100%;
text-align: center;
}
#wrap {
width: 100%;
height: 100%;
margin: 0 auto;
background: #c0c0c0;
}
.content {
position: relative;
top: 35%;
color: #fff;
font-size: 120px;
font-family: georgia, serif;
text-shadow: 1px 1px rgba(197, 223, 248, 0.8), 2px 2px
rgba(197, 223, 248, 0.8), 3px 3px rgba(197, 223, 248, 0.8), 4px 4px
rgba(197, 223, 248, 0.8), 5px 5px rgba(197, 223, 248, 0.8), 6px 6px
rgba(197, 223, 248, 0.8);
}
</style>
<!-- <script type="text/javascript" src="js/ga.js" id="UA-31604259-1"></script> -->
</head>
<body onload="setup();">
<div id="wrap">
<div class="content">Today is what year?</div>
</div>
<script type="text/javascript">
function setup() {
var year = new Date().getFullYear() + '', len = year.length, pos = 0;
document.onkeypress = function(event) {
event = event || window.event;
if (year.charCodeAt(pos++) === event.keyCode) {
if (pos === len) {
pos = 0;
document.location = 'list.html';
}
} else {
pos = 0;
}
};
document.body.focus();
}
</script>
<!-- UY BEGIN -->
<div id="uyan_frame"></div>
<script type="text/javascript" id="UYScript" src="http://v1.uyan.cc/js/iframe.js?UYUserId=1640483" async=""></script>
<!-- UY END -->
</body>
</html>