forked from embeddedsamurai/DeepLopener_PRO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
48 lines (47 loc) · 758 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
body {
font-size: 1rem;
min-width: 300px;
max-height: 10%;
text-align: center;
user-select: none;
}
img {
margin-right: 4px;
margin-left: 10px;
}
#title {
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
}
#pagetrans {
cursor: pointer;
margin-top: 1rem;
}
#message {
text-align: center;
height: 1rem;
}
#close {
font-size: 100%;
font-weight: 1000;
border: 1px solid #999;
color: #999;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
border-radius: 100%;
width: 1.3em;
line-height: 1.3em;
cursor: pointer;
transition: 0.2s;
position: relative;
float: right;
}
#close:hover {
background: #333;
border-color: #333;
color: white;
}