-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
62 lines (53 loc) · 1.12 KB
/
popup.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
/* General body styles */
body {
font-family: Arial, sans-serif;
padding: 10px;
}
h1 {
font-size: 1.5rem;
text-align: center;
}
/* Style for the buttons */
button {
margin: 5px 0;
padding: 10px;
width: 100%;
background-color: #007bff;
color: white;
border: none;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
/* Style for the Clear History button (smaller button) */
#clearHistoryBtn {
width: auto; /* Allow the width to adjust to the content */
padding: 5px 10px; /* Smaller padding for a smaller button */
font-size: 0.875rem; /* Slightly smaller font */
background-color: #f44336; /* Red background for the "Clear" button */
}
#clearHistoryBtn:hover {
background-color: #d32f2f; /* Darker red on hover */
}
/* Style for the status message */
#status {
margin: 10px 0;
color: green;
font-weight: bold;
}
/* Style for the summary content */
#summary {
border: 1px solid #ccc;
padding: 10px;
min-height: 50px;
max-height: 200px;
overflow-y: auto;
}
strong {
color: #333;
}
em {
font-size: 0.9rem;
color: #666;
}