-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathoptions.html
More file actions
92 lines (80 loc) · 2.91 KB
/
Copy pathoptions.html
File metadata and controls
92 lines (80 loc) · 2.91 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Options</title>
<style>
body {
height: 420px;
overflow: hidden
}
p {
margin: 0;
color: #322f31;
}
label,
div,
button,
span,
input {
color: #322f31;
}
input {
accent-color: #4D97FE;
}
button {
background-color: #4D97FE;
color: #fff;
border: none;
border-radius: 9999px;
padding: 8px 20px;
margin: 5px 0px;
}
.small {
font-size: 5px;
}
textarea {
color: #888;
resize: none;
border: 2px solid transparent;
background: transparent;
}
textarea:hover {
border: 2px dashed #CCCCCC;
}
#container {
margin: 5px auto auto;
background-image: url("https://cdn.scratch.mit.edu/scratchr2/static/__e65d8a7c03267938d906e22792610478__/images/scratch-bg.png")
}
</style>
</head>
<body>
<div id="container">
<label><input type="radio" name="a" id="bio">私について</label><br>
<label><input type="radio" name="a" id="status">私が取り組んでいること</label><br>
<div>を置き換える<br>内容:</div>
<details>
<summary>解説</summary>%ALL %YE(年) %MO(月) %DA(日) %HO(時) %MI(分) %SE(秒) %MS(ミリ秒)
でそれぞれ表示できます。最初にUをつければ(%UHOのように)UTCで表示できます"
</details>
<textarea id="data" cols="40" rows="9">
サンプルテキスト
最終ログイン:%ALL(JST)
この表示はJavaScriptで自動更新されています。</textarea><br>
<p id="count" style="color:gray;"></p>
<button id="save">保存</button>
<br><span style="color:gray;" class="small"><a href="https://github.com/Yukkku">@Yukkku</a>さん感謝です</span>
<body>
<form id="form">
<label><input type="radio" name="bioOrStatus" id="bio" value="bio">私について</label><br>
<label><input type="radio" name="bioOrStatus" id="status" value="status">私が取り組んでいること</label><br>
<div>を置き換える<br>内容:</div>
<textarea id="data" cols="40" rows="9" name="data"
placeholder="%ALL %YE %MO %DA %HO %MI %SE %MS でそれぞれ表示できます。最初にUをつければ(%UHOのように)UTCで表示できます"></textarea><br>
<p id="count" style="color:gray;"></p>
<button id="save">保存</button>
</form>
<script src="options.js"></script>
</body>
</html>