-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
93 lines (76 loc) · 1.3 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
87
88
89
90
91
92
93
/* Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
body{
width: 240px;
padding: 10px;
display: flex;
flex-direction: column;
align-items: center;
}
/* Header */
.header{
margin-bottom: 10px;
}
.header h1{
font-size: 16px;
text-align: center;
}
/* Divider */
.divider {
border-top: 1.5px solid black;
width: 100%;
margin-bottom: 10px;
}
/* Container */
.container{
display: flex;
width: 100%;
flex-direction: column;
align-items: start;
}
/* Row */
.row{
width: 100%;
display: flex;
margin-bottom: 10px;
justify-content: center;
}
/* Buttons */
button {
padding: 5px 10px;
width: 110px;
color: rgb(255, 255, 255);
border-radius: 8px;
transition: background-color 1s ease;
}
button:hover{
background-color: red;
}
button#add-checkbox{
background-color: rgba(8, 183, 66, 0.8);
}
button#remove-checkbox{
background-color: rgba(106, 119, 119, 0.8);
}
button#toggle-checkbox{
background-color: rgba(22, 157, 229, 0.8);
}
button#bulk-delete{
height: 40px;
background-color: rgba(219, 22, 22, 0.8);
}
.row button:first-child {
margin-right: 10px;
}
/* Footer */
.footer {
}
/* Link */
a {
text-decoration-line: none;
}