-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
56 lines (49 loc) · 940 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
50
51
52
53
54
55
56
.popup-container {
background: #181818;
width: 300px;
padding: 20px;
text-align: center;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
color: white;
border: none;
}
.popup-icon {
width: 80px;
height: 80px;
margin: 0 auto;
display: block;
border-radius: 15%;
margin-bottom: 15px;
background: #181818;
}
h1 {
font-size: 24px;
margin: 0 0 10px;
background: #181818;
}
p {
font-size: 14px;
margin: 10px 0;
line-height: 1.5;
background: #181818;
}
.popup-link {
color: #007bff;
text-decoration: none;
font-weight: bold;
background: #181818;
}
.popup-link:hover {
text-decoration: underline;
}
.github-link {
margin-top: 10px;
background: #181818;
}
.github-icon {
width: 32px;
height: 32px;
display: inline-block;
margin-top: 5px;
background: #181818;
}