banao-tech commited on
Commit
35af086
·
verified ·
1 Parent(s): 42a0abe

Update frontend/style.css

Browse files
Files changed (1) hide show
  1. frontend/style.css +35 -5
frontend/style.css CHANGED
@@ -1,13 +1,43 @@
1
  body {
2
  margin: 0;
3
- background: #111;
 
4
  color: white;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  display: flex;
 
 
6
  }
7
- #ui {
8
- padding: 20px;
 
 
 
 
 
 
 
9
  }
10
- input, button {
11
- padding: 10px;
 
12
  font-size: 16px;
 
 
 
 
 
13
  }
 
1
  body {
2
  margin: 0;
3
+ background: #0b0f14;
4
+ font-family: system-ui;
5
  color: white;
6
+ }
7
+
8
+ #layout {
9
+ display: grid;
10
+ grid-template-columns: 2fr 1fr;
11
+ height: 100vh;
12
+ }
13
+
14
+ #viewer {
15
+ background: #111;
16
+ }
17
+
18
+ #panel {
19
+ padding: 24px;
20
  display: flex;
21
+ flex-direction: column;
22
+ gap: 12px;
23
  }
24
+
25
+ textarea {
26
+ flex: 1;
27
+ background: #141a22;
28
+ color: white;
29
+ border: 1px solid #2a3442;
30
+ border-radius: 8px;
31
+ padding: 12px;
32
+ font-size: 16px;
33
  }
34
+
35
+ button {
36
+ padding: 14px;
37
  font-size: 16px;
38
+ background: #3b82f6;
39
+ border: none;
40
+ border-radius: 8px;
41
+ color: white;
42
+ cursor: pointer;
43
  }