-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (65 loc) · 1.4 KB
/
index.html
File metadata and controls
73 lines (65 loc) · 1.4 KB
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
<!doctype html>
<html>
<head>
<title>Newton's Cradle — CSS-only loading animation</title>
<style>
@import "cradle.css";
body {
font-family: Consolas, sans-serif;
background: #dfe4ea;
color: #666;
}
dialog {
position: fixed;
left: 50%;
top: 30%;
width: 300px;
margin-left: -150px;
background: #fff;
border: 1px solid #ccc;
border-radius: 5px;
padding: 20px;
text-align: center;
box-shadow: 0 5px 15px 2px #aaa;
}
h1 {
margin: 0;
border-bottom: 1px solid #ddd;
}
hr {
margin: 20px 0;
}
a {
color: #64d1ff;
text-decoration: none;
}
a:visited {
color: #1a76bc;
}
a:hover {
color: #2ea3df;
}
</style>
</head>
<body>
<dialog class="container">
<h1>
<a href="https://github.com/zetorama/cradle">Newton's Cradle</a></h1>
<div class="cradle">
<div><b></b></div>
<div><b></b></div>
<div><b></b></div>
<div><b></b></div>
<div><b></b></div>
</div>
<hr>
<div class="cradle nostrings attached">
<div><b></b></div>
<div><b></b></div>
<div><b></b></div>
<div><b></b></div>
<div><b></b></div>
</div>
</dialog>
</body>
</html>