-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
88 lines (78 loc) · 1.44 KB
/
Copy pathpopup.css
File metadata and controls
88 lines (78 loc) · 1.44 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
/* AI generated */
body {
font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
width: 300px;
margin: 0;
padding: 16px;
background-color: #f7f7f8;
color: #333;
}
/* Headings */
h1 {
font-size: 18px;
margin: 0 0 12px 0;
text-align: center;
}
/* Paragraphs */
p {
margin: 6px 0;
font-size: 14px;
}
/* Sections */
.page {
padding: 10px;
border-radius: 8px;
background-color: #fff;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
margin-bottom: 12px;
}
/* Preformatted text (matrix display) */
pre {
background-color: #f0f0f3;
padding: 8px;
border-radius: 6px;
font-size: 13px;
overflow-x: auto;
}
/* Buttons */
button {
background-color: #0078d4;
color: white;
border: none;
border-radius: 6px;
padding: 6px 12px;
margin: 4px 2px 0 0;
cursor: pointer;
font-size: 13px;
transition: background-color 0.2s ease;
}
button:hover {
background-color: #005a9e;
}
/* Input file */
input[type="file"] {
display: block;
margin: 8px 0;
font-size: 13px;
}
/* Textarea */
textarea {
padding: 6px;
font-size: 13px;
border-radius: 6px;
border: 1px solid #ccc;
resize: vertical;
font-family: monospace;
}
/* Status messages */
#saveStatus,
#status {
font-size: 13px;
margin-top: 6px;
min-height: 18px;
}
/* Flex container for buttons */
.page div {
display: flex;
flex-wrap: wrap;
}