-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
56 lines (56 loc) · 1.65 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>
idmp - Probably the most elegant solution to deduplicating requests in the
galaxy. 应该是银河系最优雅解决请求去重方案了
</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
.ribbon {
position: fixed;
top: 42px;
width: 200px;
padding: 1px 0;
background: #000;
color: #eee;
-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
right: -42px;
-moz-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-o-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
.ribbon a,
.ribbon a:visited,
.ribbon a:active,
.ribbon a:hover {
display: block;
padding: 1px 0;
height: 24px;
line-height: 24px;
color: inherit;
text-align: center;
text-decoration: none;
font-family: 'Cabin Condensed', sans-serif;
font-size: 16px;
font-weight: 500;
border: 1px solid rgba(255, 255, 255, 0.3);
-moz-text-shadow: 0 0 10px rgba(0, 0, 0, 0.31);
-webkit-text-shadow: 0 0 10px rgba(0, 0, 0, 0.31);
text-shadow: 0 0 10px rgba(0, 0, 0, 0.31);
}
</style>
</head>
<body>
<div class="ribbon">
<a href="https://github.com/ha0z1/idmp">Fork me on GitHub</a>
</div>
<div id="root"></div>
<script type="module" src="/demo/main.tsx"></script>
</body>
</html>