-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
53 lines (45 loc) · 1.1 KB
/
popup.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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>削除されたコメント数</title>
<style>
/*ダークモード対応系*/
:root {
color-scheme: light dark;
}
/* フォント設定 */
@font-face {
font-family: "LINE_Rg";
font-weight: 400;
src: url(https://koromoko10.github.io/fonts/LINESeed_JP/LINESeedJP_OTF_Rg.woff) format("woff");
}
body {
font-family: "LINE_Rg",Arial, sans-serif;
margin: 20px;
/*ダークモード対応系*/
background-color: light-dark(#ffffff,#1f1f1f);
color: light-dark(#000000,#bbbbbb);
}
/*文字選択色*/
body ::selection {
background-color : rgba(153, 153, 153, 0.60); /* 選択時の背景色 */
}
#deleteCount {
font-size: 24px;
font-weight: bold;
}
body {
max-width: 200px;
min-width: 145px;
}
</style>
</head>
<body>
<center>
<h3>削除されたコメント数</h3>
<div id="deleteCount">0</div>
</center>
<script src="popup.js"></script>
</body>
</html>