-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.css
More file actions
128 lines (109 loc) · 2.04 KB
/
options.css
File metadata and controls
128 lines (109 loc) · 2.04 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #121212;
color: #e0e0e0;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
min-height: 100vh;
}
.container {
width: 100%;
max-width: 600px;
background-color: #1e1e1e;
padding: 30px;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
h1, h2 {
color: #bb86fc;
margin-top: 0;
}
h2 {
font-size: 1.2rem;
margin-bottom: 15px;
border-bottom: 1px solid #333;
padding-bottom: 8px;
}
.section {
margin-bottom: 30px;
}
.input-group {
display: flex;
gap: 10px;
margin-bottom: 15px;
}
input[type="text"], input[type="number"] {
background-color: #2c2c2c;
border: 1px solid #333;
color: #fff;
padding: 10px;
border-radius: 8px;
flex-grow: 1;
outline: none;
}
input[type="text"]:focus, input[type="number"]:focus {
border-color: #bb86fc;
}
button {
background-color: #bb86fc;
color: #000;
border: none;
padding: 10px 20px;
border-radius: 8px;
cursor: pointer;
font-weight: bold;
transition: background-color 0.2s;
}
button:hover {
background-color: #a370f7;
}
ul {
list-style: none;
padding: 0;
}
li {
background-color: #2c2c2c;
margin-bottom: 8px;
padding: 10px;
border-radius: 8px;
display: flex;
justify-content: space-between;
align-items: center;
}
.remove-btn {
background-color: #cf6679;
color: #000;
padding: 5px 10px;
font-size: 0.8rem;
}
.remove-btn:hover {
background-color: #b00020;
}
.config-item {
margin-bottom: 15px;
display: flex;
justify-content: space-between;
align-items: center;
}
.config-item label {
flex-grow: 1;
}
.config-item input {
width: 80px;
flex-grow: 0;
}
#status {
margin-top: 20px;
text-align: center;
height: 20px;
}
.hint {
color: #777;
font-size: 0.8rem;
margin-top: -10px;
margin-bottom: 15px;
}
.success { color: #03dac6; }
.error { color: #cf6679; }