generated from B1NARY-GR0UP/.github
-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.css
93 lines (86 loc) · 1.62 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
body {
width: 370px;
}
.tab-count {
font-family: 'Arial', sans-serif;
font-size: 13px;
color: #333;
}
.snapshot-text {
max-width: 130px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-family: 'Arial', sans-serif;
font-size: 13px;
font-weight: bold;
color: #000000;
}
.snapshot-item {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 5px;
background-color: #f1f1f1;
padding: 10px;
border-radius: 5px;
transition: background-color 0.3s;
}
.snapshot-item:hover {
background-color: #dcdcdc;
}
.red-button {
background-color: #000000;
color: white;
border: none;
padding: 5px 10px;
border-radius: 5px;
cursor: pointer;
}
.red-button:hover {
background-color: #EA4335;
}
.blue-button {
background-color: #000000;
color: white;
border: none;
padding: 5px 10px;
border-radius: 5px;
cursor: pointer;
}
.blue-button:hover {
background-color: #4285F4;
}
.green-button {
background-color: #000000;
color: white;
border: none;
padding: 5px 10px;
border-radius: 5px;
cursor: pointer;
}
.green-button:hover {
background-color: #34A853;
}
.yellow-button {
background-color: #000000;
color: white;
border: none;
padding: 5px 10px;
border-radius: 5px;
cursor: pointer;
}
.yellow-button:hover {
background-color: #FBBC05;
}
.about-link {
color: #000000;
text-decoration: none;
font-weight: bold;
font-size: 19px;
margin-left: 3px;
transition: color 0.3s;
}
.about-link:hover {
color: #ff0000;
}