-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.css
More file actions
81 lines (71 loc) · 1.31 KB
/
Copy pathpopup.css
File metadata and controls
81 lines (71 loc) · 1.31 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
/* Reset & Base */
* {
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, sans-serif;
background: #f4f7fa;
margin: 0;
padding: 0;
width: 400px;
color: #333;
font-size: 13px; /* smaller global font */
}
/* Container */
#popup-container {
padding: 12px;
}
/* Header */
header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
}
h2 {
font-size: 1rem;
margin: 0;
color: #2c3e50;
}
.primary-btn {
background-color: #007bff;
color: white;
border: none;
padding: 6px 12px;
border-radius: 6px;
font-size: 0.8rem;
cursor: pointer;
transition: background-color 0.2s ease;
}
.primary-btn:hover {
background-color: #0056b3;
}
/* IOC Output Area */
.ioc-output {
background: white;
border-radius: 6px;
padding: 10px;
min-height: 80px;
max-height: 280px;
overflow-x: auto;
overflow-y: auto;
box-shadow: 0 2px 6px rgba(0,0,0,0.05);
font-family: Consolas, monospace;
font-size: 12px; /* compact */
white-space: pre; /* keeps formatting */
word-break: normal; /* avoid breaking inside words */
}
/* Footer */
footer {
margin-top: 10px;
font-size: 11px;
text-align: center;
color: #666;
}
footer a {
color: #007bff;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}