-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.css
More file actions
120 lines (109 loc) · 1.93 KB
/
Copy pathoptions.css
File metadata and controls
120 lines (109 loc) · 1.93 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
body {
background: #181828;
color: #fff;
font-family: 'Segoe UI', Arial, sans-serif;
margin: 0;
padding: 0;
}
main {
max-width: 450px;
margin: 2rem auto;
background: #222233;
border-radius: 12px;
box-shadow: 0 0 24px #00fff7aa;
padding: 2rem;
}
h1 {
text-align: center;
color: #00fff7;
text-shadow: 0 0 8px #00fff7, 0 0 2px #000;
}
fieldset {
border: 1.5px solid #00fff7;
border-radius: 8px;
margin-bottom: 1.5rem;
}
legend {
color: #ff00ff;
font-weight: bold;
}
label {
display: block;
margin-bottom: 0.7rem;
}
input[type="color"] {
border: none;
width: 36px;
height: 36px;
border-radius: 6px;
margin-left: 0.5rem;
box-shadow: 0 0 6px #00fff7;
}
input[type="checkbox"] {
accent-color: #00fff7;
margin-right: 0.5rem;
}
button {
background: linear-gradient(90deg, #00fff7, #ff00ff);
color: #fff;
border: none;
border-radius: 8px;
padding: 0.7rem 1.5rem;
margin-right: 1rem;
font-weight: bold;
box-shadow: 0 0 10px #00fff7aa;
cursor: pointer;
transition: background 0.3s;
}
button:hover {
background: linear-gradient(90deg, #ff00ff, #00fff7);
}
#status {
margin-top: 1rem;
text-align: center;
color: #00fff7;
font-weight: bold;
}
/* New styles moved from inline */
.presets-row {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
#importFile {
display: none;
}
.live-preview {
margin-top: 2rem;
}
.live-preview-title {
font-size: 1.1rem;
color: #00fff7;
}
.preview-box {
padding: 1rem;
border-radius: 10px;
border: 2.5px solid #00fff7;
background: #23232b;
color: #fff;
margin-top: 0.5rem;
}
.preview-search {
margin-top: 1rem;
width: 100%;
}
.mt-1 { margin-top: 0.5rem; }
.mb-1 { margin-bottom: 1rem; }
.about-help { margin-top: 2rem; }
.log-viewer {
width: 100%;
margin-top: 0.5rem;
display: none;
font-family: monospace;
font-size: 0.8rem;
}
.schedule-inputs {
margin-left: 1.5rem;
margin-top: 0.5rem;
}
.full-width { width: 100%; }