-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
82 lines (71 loc) · 1.1 KB
/
styles.css
File metadata and controls
82 lines (71 loc) · 1.1 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
body {
font-family: system-ui, Segoe UI, Roboto, Arial;
margin: 18px;
max-width: 1100px;
}
header {
display: flex;
gap: 12px;
align-items: center;
flex-wrap: wrap;
}
#canvas {
border: 1px solid #ddd;
margin-top: 8px;
cursor: crosshair;
max-width: 100%;
}
.controls {
margin-top: 12px;
display: flex;
gap: 8px;
align-items: center;
flex-wrap: wrap;
}
textarea {
width: 100%;
height: 120px;
margin-top: 8px;
font-family: monospace;
}
button, select {
padding: 8px 10px;
border-radius: 6px;
border: 1px solid #ccc;
background: #fff;
}
#progress {
font-size: 0.95rem;
color: #444;
margin-top: 6px;
white-space: pre-wrap;
}
#progressBar {
width: 260px;
height: 12px;
background: #eee;
border-radius: 6px;
overflow: hidden;
display: none;
border: 1px solid #ddd;
}
#progressFill {
height: 100%;
width: 0;
background: #4caf50;
transition: width 0.2s;
}
.note {
font-size: 0.9rem;
color: #666;
margin-top: 6px;
}
.small {
font-size: 0.85rem;
color: #888;
}
.center-button {
display: flex;
justify-content: center;
margin-top: 8px;
}