-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathextension.css
55 lines (50 loc) · 831 Bytes
/
extension.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
.updateContent {
top: 20%;
left: 20%;
width: 60%;
height: 60%;
background-color: rgba(0, 0, 0, 0.6);
z-index: 100;
overflow-y: scroll;
}
.updateContentClose {
position: absolute;
right: 0px;
width: 50px;
height: 50px;
background: silver;
border-radius: 25px;
box-shadow: 2px 2px 5px 0px black;
cursor: pointer;
z-index: 100;
}
.updateContentClose:hover {
background: red;
}
.updateContentClose:before {
position: absolute;
content: '';
width: 30px;
height: 10px;
background: white;
transform: rotate(45deg);
top: 20px;
left: 10px;
}
.updateContentClose:after {
content: '';
position: absolute;
width: 30px;
height: 10px;
background: white;
transform: rotate(-45deg);
top: 20px;
left: 10px;
}
.updateContentButton {
z-index: 100;
position: absolute;
bottom: 15px;
width: 30%;
left: 35%;
}