File size: 581 Bytes
0c6540b
 
35af086
 
0c6540b
35af086
 
 
 
 
 
 
 
 
 
 
 
 
 
0c6540b
35af086
 
0c6540b
35af086
 
 
 
 
 
 
 
 
0c6540b
35af086
 
 
0c6540b
35af086
 
 
 
 
0c6540b
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
body {
  margin: 0;
  background: #0b0f14;
  font-family: system-ui;
  color: white;
}

#layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  height: 100vh;
}

#viewer {
  background: #111;
}

#panel {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

textarea {
  flex: 1;
  background: #141a22;
  color: white;
  border: 1px solid #2a3442;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
}

button {
  padding: 14px;
  font-size: 16px;
  background: #3b82f6;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
}