forked from ladjs/express-cdn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (76 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Express CDN</title>
<style>
::-moz-selection {
background: #b3d4fc;
text-shadow: none;
}
::selection {
background: #b3d4fc;
text-shadow: none;
}
html {
padding: 30px 10px;
font-size: 20px;
line-height: 1.4;
color: #737373;
background: #f0f0f0;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
background: #CFF191;
}
body {
max-width: 500px;
_width: 500px;
padding: 30px 20px 50px;
border-radius: 4px;
margin: 0 auto;
}
h1 {
margin: 0 10px;
font-size: 50px;
text-align: center;
}
img {
margin-top: 30px;
-webkit-transition-duration: 0.8s;
-moz-transition-duration: 0.8s;
-o-transition-duration: 0.8s;
transition-duration: 0.8s;
-webkit-transition-property: -webkit-transform;
-moz-transition-property: -moz-transform;
-o-transition-property: -o-transform;
transition-property: transform;
overflow:hidden;
}
img:hover {
-webkit-transform:rotate(360deg);
-moz-transform:rotate(360deg);
-o-transform:rotate(360deg);
}
a {
color: #c83737;
text-shadow: 0 -1px 0 rgba(0,0,0,0.75);
}
a, a:visited, a:active, a:focus, a:hover {
text-decoration: none;
}
.container {
max-width: 380px;
_width: 380px;
margin: 0 auto;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<h1><a href="https://github.com/niftylettuce/express-cdn">Express CDN</a></h1>
<a href="https://github.com/niftylettuce"><img src="https://secure.gravatar.com/avatar/bab3bf4d998bb4605602134e8027b558?s=200" alt="Created by @niftylettuce" /></a>
</div>
</body>
</html>