-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathindex.html
46 lines (42 loc) · 1001 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8" />
<meta name="viewport" content="width=device-width, initial-scale=0.75" />
<title>cubing.js | Sites</title>
<style>
body {
font-family: Helvetica, sans-serif;
font-size: 1.5rem;
display: grid;
place-content: center;
background: rgba(0, 128, 255, 0.1);
}
code {
font-size: 1.25em;
}
h2 {
margin-top: 0;
}
section {
background: white;
padding: 1.5em;
margin-top: 0.5em;
box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.4);
border-radius: 1em;
}
</style>
</head>
<body>
<section>
<h2><code>cubing.js</code><br />Sites</h2>
<div>🌀 <a href="./alpha.twizzle.net/">Twizzle alpha</a></div>
<div>
🧪
<a href="./experiments.cubing.net/cubing.js/"
>experiments.cubing.net/cubing.js</a
>
</div>
</section>
</body>
</html>