-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (73 loc) · 2.11 KB
/
Copy pathindex.html
File metadata and controls
87 lines (73 loc) · 2.11 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Webツール集</title>
<style>
body {
padding: 0px;
margin: 0px;
background-color: #f8fafc;
font-family: sans-serif;
}
.top {
padding: 20px;
margin: 20px;
}
.top h3 {
margin-bottom: 12px;
color: #333;
}
.box {
border-radius: 8px;
background-color: #ffffff;
border: 1px solid #e2e8f0;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
overflow: hidden;
}
.box ul {
padding: 0px;
margin: 0px;
list-style: none;
}
.box li {
margin: 0px;
padding: 0px;
border-bottom: 1px solid #edf2f7;
}
.box li:last-child {
border-bottom: none;
}
.box li a {
display: block;
padding: 16px 20px;
text-decoration: none;
color: #2d3748;
font-weight: bold;
transition: background-color 0.2s;
}
.box li a:hover {
background-color: #f7fafc;
}
</style>
</head>
<body>
<div id="header"></div>
<div class="top">
<h1>Webツール集</h1>
<h3>Discord系</h3>
<div class="box">
<ul>
<li><a href="/discord/emoji_image.html">絵文字を画像URL化</a></li>
</ul>
</div>
<h3>カウンター</h3>
<div class="box">
<ul>
<li><a href="/counter/string.html">文字数カウント</a></li>
</ul>
</div>
</div>
</body>
<script src="/header.js"></script>
</html>