-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
86 lines (73 loc) · 1.36 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/* Reset some default browser styles */
html, body, h1, table {
margin: 0;
padding: 0;
border: none;
}
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
width: 800px; /* Increase the width */
padding: 10px;
}
h1 {
font-size: 24px;
color: #333;
margin-bottom: 20px;
text-align: center; /* Center the title */
}
table {
border-collapse: collapse;
width: 100%;
font-size: 14px; /* Increase the font size */
}
thead {
background-color: #007BFF;
}
th {
padding: 8px;
font-size: 14px;
color: #ffffff;
text-align: left;
border-bottom: 1px solid #007BFF;
}
td {
padding: 8px;
font-size: 14px;
color: #333;
border-bottom: 1px solid #eee;
}
tr:nth-child(even) {
background-color: #f0f0f0;
}
/* Add the following to your existing popup.css */
.action-button {
background-color: #007BFF;
border: none;
border-radius: 4px;
color: white;
cursor: pointer;
font-size: 12px;
margin-right: 5px;
padding: 5px 10px;
}
.action-button:hover {
background-color: #0056b3;
}
/* Add the following to your existing popup.css */
th[data-sort] {
cursor: pointer;
}
th[data-sort]:hover {
text-decoration: underline;
}
/* Add a style for the input search box */
input#search-input {
display: block;
width: 100%;
padding: 8px;
margin-bottom: 20px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
}