-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathextension.css
133 lines (114 loc) · 2.08 KB
/
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
.nudge {
position: absolute;
}
.nudge-container {
position: relative;
}
.nudge-content {
box-shadow: 0px 2px 5px rgba(0,0,0,0.15);
padding: 10px;
border-radius: 10px;
min-width: 100px;
max-width: 200px;
}
.arrow-left-container {
position: absolute;
left: 0;
height: 100%;
display: flex;
width: 0;
align-items: center;
justify-content: center;
flex-direction: row;
}
.arrow-up-container {
position: absolute;
left: 0;
width: 100%;
display: flex;
align-items: center;
flex-direction: row;
justify-content: center;
}
.arrow-right-container {
position: absolute;
left: 100%;
height: 100%;
display: flex;
align-items: center;
flex-direction: row;
justify-content: center;
}
.arrow-down-container {
width: 100%;
position: absolute;
bottom: 0;
height: 0;
display: flex;
justify-content: center;
flex-direction: row;
}
.arrow-left {
width: 0;
height: 0;
margin-left: -7px;
border-top: 7px solid transparent;
border-bottom: 7px solid transparent;
border-right: 7px solid;
}
.arrow-up {
width: 0;
height: 0;
margin-top: -7px;
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-bottom: 7px solid;
}
.arrow-down {
width: 0;
height: 0;
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-top: 7px solid;
}
.arrow-right {
width: 0;
height: 0;
border-top: 7px solid transparent;
border-bottom: 7px solid transparent;
border-left: 7px solid;
}
.text {
font-weight: bold;
}
.close {
position: absolute;
padding: 5px 10px 10px 10px;
right: 0;
top: 0;
font-size: 14px;
font-weight: bold;
color: white;
}
.wiggler {
animation: wiggle 0.75s ease-in-out infinite alternate, fade-in 0.33s ease-in forwards;
}
.bouncer {
animation: bounce 0.75s ease-in-out infinite alternate, fade-in 0.33s ease-in forwards;
}
@keyframes wiggle {
0% {
transform: translate(0px,0);
}
100% {
transform: translate(10px,0);
}
}
@keyframes bounce {
0% {
transform: translate(0px,0);
}
100% {
transform: translate(0px,10px);
}
}