-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (85 loc) · 1.72 KB
/
Copy pathstyle.css
File metadata and controls
99 lines (85 loc) · 1.72 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
93
94
95
96
97
98
99
/* options.css */
body {
font-family: 'Segoe UI', 'Meiryo', sans-serif;
padding: 20px;
background-color: #f4f4f4;
color: #333;
}
h1 {
border-bottom: 2px solid #ddd;
padding-bottom: 10px;
}
.link-config-container {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.engine-row {
display: flex;
align-items: center;
padding: 15px 10px;
border-bottom: 1px solid #eee;
}
.engine-row:last-child {
border-bottom: none;
}
.engine-label {
flex: 0 0 150px; /* 幅を固定 */
font-size: 16px;
font-weight: bold;
display: flex;
align-items: center;
}
.engine-label img {
width: 24px;
height: 24px;
margin-right: 10px;
}
.arrow-separator {
font-size: 24px;
color: #888;
margin: 0 20px;
}
.targets-container {
display: flex;
flex-wrap: wrap;
gap: 15px;
}
.target-selector {
display: flex;
align-items: center;
background-color: #f9f9f9;
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
}
.target-selector input[type="checkbox"] {
width: 18px;
height: 18px;
margin-right: 8px;
cursor: pointer;
}
.target-selector select {
padding: 5px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 14px;
cursor: pointer;
}
.footer-actions {
margin-top: 20px;
text-align: right;
}
.footer-actions button {
padding: 10px 20px;
font-size: 16px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.footer-actions button:hover {
background-color: #0056b3;
}