-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpanel.css
77 lines (67 loc) · 1.38 KB
/
panel.css
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
body {
font-family: sans-serif;
padding: 10px;
background-color: #f0f0f0; /* Match DevTools theme slightly */
color: #333;
}
h1, h2 {
border-bottom: 1px solid #ccc;
padding-bottom: 5px;
margin-top: 15px;
}
.section {
margin-bottom: 20px;
background-color: #fff;
padding: 15px;
border-radius: 5px;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
button {
padding: 8px 15px;
margin-right: 10px;
margin-bottom: 10px; /* Add space below buttons */
cursor: pointer;
border: 1px solid #ccc;
border-radius: 3px;
background-color: #e0e0e0;
}
button:hover {
background-color: #d5d5d5;
}
button:disabled {
cursor: not-allowed;
opacity: 0.6;
}
textarea, input[type="password"] {
width: 95%;
padding: 8px;
margin-top: 5px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 3px;
font-family: monospace;
}
label {
display: block;
margin-bottom: 3px;
font-weight: bold;
}
.response-box {
background-color: #e9e9e9;
padding: 10px;
border: 1px solid #ccc;
min-height: 50px;
white-space: pre-wrap; /* Preserve formatting */
font-family: monospace;
margin-top: 5px;
}
.status {
margin-top: 10px;
font-style: italic;
color: #555;
}
small {
color: #666;
display: block; /* Ensure it takes its own line */
margin-top: -5px; /* Adjust spacing */
}