-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (107 loc) · 2.73 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>𝓞𝓛𝓓 𝓘𝓝𝓣𝓔𝓡𝓝𝓔𝓣 𝓒𝓞𝓜𝓟𝓞𝓝𝓔𝓝𝓣𝓢</title>
<style>
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
all: unset;
display: revert;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
width: 100%;
min-height: 100vh;
background-color: #f0f0f0;
}
h1 {
font-size: 2rem;
font-weight: 700;
text-align: center;
}
h2 {
font-size: 1.5rem;
font-weight: 600;
text-align: center;
}
main {
display: flex;
flex-direction: column;
height: 100%;
margin: 0 auto;
}
section {
margin-top: 2rem;
}
</style>
</head>
<body>
<main>
<section>
<h1
style="
max-width: 640px;
width: 100%;
height: 10rem;
margin: 0 auto;
background: blue;
display: flex;
justify-content: center;
align-items: center;
"
>
<old-title>𝓞𝓛𝓓 𝓘𝓝𝓣𝓔𝓡𝓝𝓔𝓣 𝓒𝓞𝓜𝓟𝓞𝓝𝓔𝓝𝓣𝓢</old-title>
</h1>
</section>
<div style="width: 100%; margin: 20px auto 0; background-color: yellow">
<old-marquee>ようこそ</old-marquee>
</div>
<div style="width: 100%; margin: 20px auto 0">
<old-sorry-japanese-only />
</div>
<section>
<h2>アクセスカウンター</h2>
<div
style="
max-width: 640px;
width: 100%;
margin: 20px auto 0;
padding: 0 20px;
"
>
<old-access-counter count="7776" />
</div>
</section>
<section>
<h2>▼ エロあるよ(笑) ▼</h2>
<div
style="
max-width: 640px;
width: 100%;
margin: 20px auto 0;
padding: 0 20px;
"
>
<old-link
href="https://dic.nicovideo.jp/a/%E3%82%A8%E3%83%AD%E3%81%82%E3%82%8B%E3%82%88%28%E7%AC%91%29"
target="_blank"
></old-link>
</div>
</section>
</main>
<script type="module" src="/src/main.ts"></script>
<script>
const count = Math.floor(Math.random() * 10000);
const counter = document.querySelector("old-access-counter");
counter.setAttribute("count", count);
</script>
</body>
</html>