-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.css
49 lines (42 loc) · 849 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
.popup-container {
width: 256px;
height: 256px;
padding: 16px;
background-color: #FDF4F5;
animation: mymove 3s infinite;
border-radius: 8px;
}
@keyframes mymove {
50% {box-shadow: 8px 8px 8px rgba(207, 122, 177, 0.50);}
}
.popup-header {
display: flex;
align-items: center;
margin-bottom: 16px;
}
.popup-header img {
width: 48px;
height: 48px;
margin-right: 16px;
}
.popup-header h1 {
font-size: 28px;
font-weight: bold;
margin: 0;
}
.popup-content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.popup-content p {
font-size: 15px;
margin-bottom: 15px;
}
.popup-content a {
color: #0d9eab;
font-size: 20px;
text-decoration: none;
margin-bottom: 3px;
}