-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (104 loc) · 3.19 KB
/
index.html
File metadata and controls
121 lines (104 loc) · 3.19 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RedStoneJS (ウェブ版レッドストーン)</title>
<meta name="description" content="Play redstone online on your browser! ダウンロード不要!懐かしのレッドストーンをブラウザだけでプレイしよう!">
<meta property="og:site_name" content="RedStoneJS">
<meta property="og:url" content="https://rs.sigr.io/">
<meta property="og:title" content="RedStoneJS">
<meta property="og:description" content="">
<meta property="og:image" content="https://rs.sigr.io/card.jpg">
<meta property="og:image:width" content="1280">
<meta property="og:image:height" content="720">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@LostMyCode">
<link rel="shortcut icon" href="/favicon.ico" />
<style>
html,
body {
padding: 0;
margin: 0;
overflow: hidden;
overflow-x: hidden;
-webkit-text-size-adjust: none;
width: 100%;
height: 100%;
position: fixed;
}
#log-container {
position: fixed;
top: 5px;
left: 5px;
color: #fff;
font-size: 12px;
text-shadow: 1px 1px 2px rgb(46, 46, 46), 0 0 1em rgb(42, 42, 42), 0 0 0.2em rgb(45, 45, 45);
}
.water-mark {
position: fixed;
font-size: 24px;
font-weight: bold;
color: #fff;
opacity: 0.5;
bottom: 10px;
right: 15px;
}
.water-mark:hover {
opacity: 0.8;
cursor: pointer;
}
.flex {
display: flex;
}
.align-items-center {
align-items: center;
}
.fixed-top-right {
position: fixed;
top: 10px;
right: 10px;
}
.button-base {
opacity: 0.7;
}
.button-base:hover {
opacity: 1;
}
.map-list-panel {
font-weight: bold;
color: rgb(190, 190, 190);
background-color: rgba(0, 0, 0, 0.6);
padding: 10px;
transition: all 0.5s;
}
.map-list-item:hover {
color: rgb(255, 255, 255);
cursor: pointer;
}
.map-list-container {
font-size: 12px;
}
.map-list-expander {
display: flex;
justify-content: space-between;
color: #fff;
background: rgba(42, 42, 42, 0.6);
padding: 10px;
border: 1px solid rgb(230, 230, 230);
cursor: pointer;
}
.map-list-expander a {
color: rgb(185, 185, 185);
}
</style>
<script src="/unzip.min.js"></script>
</head>
<body>
<div class="water-mark">LostMyCode</div>
<div id="root"></div>
<canvas id="canvas"></canvas>
<script type="module" src="/src/index.jsx"></script>
</body>
</html>