-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.css
67 lines (59 loc) · 1.11 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
body {
font-family: Arial, sans-serif;
background-color: #f7f7f7;
margin: 0;
padding: 0;
width: 300px;
height: 200px;
}
.container {
text-align: center;
padding: 20px;
}
h1 {
font-size: 20px;
color: #4CAF50;
margin-bottom: 10px;
}
p {
font-size: 14px;
color: #555;
margin-bottom: 20px;
}
button {
background-color: #4CAF50;
color: white;
border: none;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 4px;
}
button:hover {
background-color: #45a049;
}
footer {
text-align: center;
padding: 10px;
background-color: #e0e0e0;
position: absolute;
bottom: 0;
width: 100%;
box-sizing: border-box;
}
footer p {
font-size: 12px;
margin: 0;
color: #333;
}
footer a {
color: #4CAF50;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}