blob: 4b519bcc8f608707e79bc75fef7e0b7e042f57e2 (
plain)
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
|
<html>
<head>
<title>lambdoma</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<style>
html,
body {
overflow: hidden;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica,
Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
"Segoe UI Symbol";
color: white;
text-shadow: 0 0 1px #000;
transition: background-color 100ms;
user-select: none;
}
div {
position: absolute;
cursor: pointer;
box-sizing: border-box;
}
body > div {
width: 50px;
height: 50px;
}
div > div {
width: 20px;
}
div > div:nth-child(1) {
text-align: right;
top: 5px;
left: 3px;
}
div > div:nth-child(2) {
text-align: center;
top: 15px;
left: 16px;
opacity: 0.8;
transform: rotate(20deg);
}
div > div:nth-child(3) {
text-align: left;
top: 29px;
left: 28px;
}
div.playing {
border: 2px solid #fff;
box-shadow: 0 1px 3px #fff;
z-index: 2;
}
div.playing > div {
margin: -2px -2px;
}
</style>
</head>
<body></body>
<script src="bundle.js"></script>
</html>
|