-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyles.css
71 lines (62 loc) · 1.46 KB
/
styles.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
.twitter-quotes-options {
border-top-style: solid;
border-top-width: 1px;
display: flex;
flex-flow: row wrap;
padding: 8px 0;
}
.twitter-quotes-option {
align-items: center;
border-radius: 6px;
display: inline-flex;
flex-direction: row;
flex-wrap: wrap;
margin-right: 10px;
padding: 5px;
text-decoration: none;
transition: background 0.2s ease-out;
}
.twitter-quotes-option-retweets:hover {
background: rgba(29, 155, 240, 0.1);
color: rgb(29, 155, 240) !important;
}
.twitter-quotes-option-quotes:hover {
background: rgba(0, 186, 124, 0.1);
color: rgb(0, 186, 124) !important;
}
.twitter-quotes-option-likes:hover {
background: rgba(249, 24, 128, 0.1);
color: rgb(249, 24, 128) !important;
}
.twitter-quotes-option-number, .twitter-quotes-option svg {
font-weight: bold;
margin-right: 4px;
}
.twitter-quotes-animate-fadeout {
animation-name: twitter-quotes-fadeout;
animation-duration: 0.2s;
animation-timing-function: ease-in-out;
}
.twitter-quotes-animate-slide-up {
animation-name: twitter-quotes-slide-up;
animation-duration: 0.2s;
animation-timing-function: ease-in-out;
}
@keyframes twitter-quotes-fadeout {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes twitter-quotes-slide-up {
0% {
transform: translateY(10px);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}