-
Notifications
You must be signed in to change notification settings - Fork 0
/
replaces.css
62 lines (51 loc) · 963 Bytes
/
replaces.css
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
body {
font-family: Arial, sans-serif;
margin: 20px;
line-height: 1.6;
visibility: hidden; /* 初期状態で非表示 */
}
body.loaded {
visibility: visible; /* JavaScriptがロードされてから表示。チラツキ防止のため。 */
}
textarea, input {
padding: 10px;
font-size: 16px;
box-sizing: border-box;
}
textarea {
width: 100%;
}
input {
flex: 1; /* 入力フィールドを均等に広げる */
margin-right: 4px;
margin-left: 4px;
}
label {
font-weight: bold;
}
label.inline {
display: inline-flex;
align-items: center;
gap: 5px;
margin-right: 10px;
}
.replace-pair {
display: flex; /* 横並びに配置 */
align-items: center; /* 縦方向で中央揃え */
margin-bottom: 4px;
}
button {
font-size: 16px;
padding: 10px;
margin: 4px 0;
}
.file-upload-container {
text-align: right; /* 右端に配置 */
}
#statics {
margin-left: 40px;
}
.note {
margin: 10px;
font-size: 12px;
}