-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
72 lines (61 loc) · 951 Bytes
/
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
body {
width: 350px;
padding: 16px;
font-family: Arial, sans-serif;
}
.container {
display: flex;
flex-direction: column;
gap: 16px;
}
h1 {
font-size: 18px;
color: #333;
margin: 0 0 16px 0;
}
h2 {
font-size: 16px;
color: #444;
margin: 0 0 12px 0;
}
.add-site {
display: flex;
gap: 8px;
}
input {
flex: 1;
padding: 8px;
border: 1px solid #ddd;
border-radius: 4px;
}
button {
background-color: #4CAF50;
color: white;
padding: 8px 16px;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
.whitelist {
margin-top: 16px;
}
.site-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 8px;
background-color: #f5f5f5;
border-radius: 4px;
margin-bottom: 8px;
}
.site-item button {
background-color: #dc3545;
padding: 4px 8px;
font-size: 12px;
}
.site-item button:hover {
background-color: #c82333;
}