blob: 581e279d8ed5d0600fdff934c8c8f02b57fa3877 (
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
|
<html>
<head>
<title>triangle</title>
<style>
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 2px #000;
transition: background-color 100ms;
user-select: none;
overflow: hidden;
}
div {
position: absolute;
cursor: pointer;
}
body > div {
width: 51px;
height: 51px;
border-left: 1px solid #888;
border-bottom: 1px solid #888;
}
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; }
</style>
</head>
<body>
</body>
<script src='bundle.js'></script>
</html>
|