-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.css
More file actions
96 lines (94 loc) · 1.49 KB
/
options.css
File metadata and controls
96 lines (94 loc) · 1.49 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
* { box-sizing: border-box; }
body {
margin: 0;
font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
background: #f5f5f5;
color: #333;
}
.container {
max-width: 800px;
padding: 30px;
margin: 0 auto;
background: #fff;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
header {
text-align: center;
margin-bottom: 30px;
}
h1 {
margin: 0 0 10px;
color: #4a4a4a;
}
header p {
margin: 0;
color: #666;
}
.section {
margin-bottom: 30px;
}
.section h2 {
font-size: 18px;
margin: 0 0 15px;
color: #555;
}
.rule {
border: 1px solid #eee;
border-radius: 10px;
padding: 15px;
margin: 15px 0;
background: #fafafa;
}
.rule .row {
display: flex;
gap: 10px;
margin: 8px 0;
align-items: center;
flex-wrap: wrap;
}
.rule input[type=text] {
width: 280px;
padding: 8px 10px;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 14px;
}
.rule input[type=text].wide {
width: 100%;
}
.rule select {
padding: 8px 10px;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 14px;
}
.btn-primary {
background: #007bff;
color: white;
border: none;
padding: 10px 15px;
border-radius: 8px;
cursor: pointer;
font-weight: bold;
transition: background 0.3s;
}
.btn-primary:hover {
background: #0056b3;
}
.actions {
display: flex;
gap: 15px;
align-items: center;
flex-wrap: wrap;
}
.note {
font-size: 12px;
color: #666;
margin-top: 10px;
}
.button-row {
display: flex;
gap: 12px;
margin: 15px 0;
}