-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
69 lines (61 loc) · 1.1 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
body {
font-family: Arial, sans-serif;
margin: 0;
width: 460px;
height: 250px;
background-image: url('bg.png');
background-size: cover;
color: #FFFFFF;
display: flex;
flex-direction: column;
padding-bottom: 8px;
}
h1 {
font-size: 24px;
margin: 16px;
}
button {
background-color: #4CAF50;
border: none;
color: white;
padding: 8px 16px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 18px;
margin: 4px 16px;
cursor: pointer;
border-radius: 4px;
width: 45%;
box-sizing: border-box;
}
#loading-animation {
width: 100px;
height: 100px;
display: block;
margin: 0 auto;
}
.animation-container {
display: flex;
justify-content: center;
}
.loading-text {
font-size: 18px;
text-align: center;
margin-top: 16px;
}
.hidden {
display: none;
}
.summary-point {
font-size: 14px;
margin: 8px 16px;
margin-bottom: 20px;
margin-top: 30px;
}
.copyright {
font-size: 12px;
margin-top: auto;
margin-bottom: 8px;
text-align: center;
}