-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathConnectBoxApp.css
More file actions
75 lines (63 loc) · 1.38 KB
/
ConnectBoxApp.css
File metadata and controls
75 lines (63 loc) · 1.38 KB
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
.navigation-bar {
}
.content-panel {
height: calc(100%);
display: flex;
flex-direction: column;
}
.chat-button {
position: relative;
float: right;
z-index: 1200;
cursor: pointer;
color: #337ab7;
}
.chat-icon {
padding-top: 11px;
}
.chat-offline {
color: grey;
cursor: auto;
}
#scroll-to-top {
position: fixed;
z-index: 2000;
right: 30px;
top: 1.25em;
}
@keyframes shake {
from { transform: translateY(-4px); }
to { transform: translateY(0px); }
}
@keyframes flash-on {
from { opacity: 0; visibility: hidden; }
to { opacity: 1; visibility: visible; }
}
@keyframes flash-off {
to { opacity: 0; visibility: hidden; }
from { opacity: 1; visibility: visible; }
}
.chat-mention {
animation-name: shake;
animation-duration: .3s;
animation-direction: alternate;
animation-iteration-count: infinite;
animation-timing-function: cubic-bezier(.52,.4,.75,-0.01);
}
.chat-new-message-on {
animation-name: flash-on;
animation-duration: 1s;
animation-direction: alternate;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
}
.chat-new-message-off {
animation-name: flash-off;
animation-duration: 1s;
animation-direction: alternate;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
}
a {
text-decoration: none !important;
}