-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (46 loc) · 2.82 KB
/
style.css
File metadata and controls
53 lines (46 loc) · 2.82 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
:root {
--bg: #0d1117;
--panel: #161b22;
--accent: #ff3e3e;
--text: #c9d1d9;
--subtext: #8b949e;
--border: #30363d;
--success: #238636;
}
body {
background: var(--bg); color: var(--text);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
margin: 0; display: flex; height: 100vh; overflow: hidden;
}
/* GitHub Loader */
#loader {
position: fixed; top:0; left:0; width:100%; height:100%;
background: #0d1117; z-index: 9999; display: flex;
flex-direction: column; align-items: center; justify-content: center;
transition: opacity 0.5s ease;
}
.loading-bar { width: 200px; height: 3px; background: #30363d; margin-top: 20px; border-radius: 10px; overflow: hidden; }
.progress { height: 100%; width: 0; background: var(--accent); animation: load 1.5s forwards ease-in-out; }
@keyframes load { to { width: 100%; } }
/* Sidebar */
#sidebar { width: 280px; background: var(--panel); border-right: 1px solid var(--border); display: flex; flex-direction: column; padding: 25px; }
.brand h2 { margin: 0; font-size: 24px; color: #f0f6fc; }
.verified { color: var(--success); font-size: 11px; font-weight: bold; margin-top: 5px; }
#sidebar-scroll { flex-grow: 1; overflow-y: auto; margin-top: 20px; }
.shame-section { margin-top: 20px; padding: 12px; background: #00000044; border: 1px solid var(--border); border-radius: 6px; }
.shame-section h4 { font-size: 10px; color: var(--accent); margin: 0 0 10px 0; }
.shame-entry { font-size: 11px; line-height: 1.4; color: var(--subtext); }
/* Main Area */
#content { flex: 1; display: flex; flex-direction: column; }
header { padding: 20px 40px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; background: #161b22; }
.script-title-input { background: transparent; border: 1px solid transparent; color: white; font-size: 18px; font-weight: bold; width: 300px; outline: none; }
.script-title-input:focus { border-bottom: 1px solid var(--accent); }
.dual-pane { flex: 1; display: flex; padding: 0; gap: 0; }
.pane { flex: 1; display: flex; flex-direction: column; border-right: 1px solid var(--border); }
.pane label { background: #0d1117; padding: 10px 20px; font-size: 11px; font-weight: bold; color: var(--subtext); border-bottom: 1px solid var(--border); }
textarea { flex: 1; background: transparent; border: none; color: #79c0ff; padding: 20px; font-family: 'SFMono-Regular', Consolas, monospace; font-size: 13px; resize: none; outline: none; }
#output { color: #d2a8ff; background: #090c10; }
.controls { display: flex; gap: 10px; }
button { background: var(--success); color: white; border: none; padding: 8px 16px; border-radius: 6px; font-weight: 600; cursor: pointer; }
.secondary { background: #21262d; border: 1px solid var(--border); }
button:hover { filter: brightness(1.1); }