-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent_script.css
More file actions
57 lines (48 loc) · 767 Bytes
/
content_script.css
File metadata and controls
57 lines (48 loc) · 767 Bytes
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
.slide {
transition: transform 0.7s ease-in, opacity 0.7s ease-in;
opacity: 0;
}
.in {
transform: translateX(-640px);
opacity: 1
}
/*
@keyframes slidein2 {
from {
right: -1000px;
opacity: 0;
}
to {
right: 20px;
opacity: 1;
}
}
@keyframes slideout2 {
from {
right: 20px;
opacity: 1;
}
to {
right: -1000px;
opacity: 0;
}
}
@keyframes slidein {
from {
margin-left: 100%;
width: 200%;
}
to {
margin-left: 0%;
width: 100%;
}
}
.slide {
animation: slidein2 linear 0.75s;
animation-direction: alternate;
}
.slideout {
animation: slideout2 linear 0.75s;
animation-direction: alternate;
}
*/