forked from ReDEnergy/SessionSync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotification-system.css
More file actions
55 lines (48 loc) · 929 Bytes
/
Copy pathnotification-system.css
File metadata and controls
55 lines (48 loc) · 929 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
/**
* Notification System
*/
#session-sync .notification-system {
width: 100%;
height: 0px;
font-size: 16px;
position: absolute;
top: 1px;
left: 50%;
z-index: 3000;
transform: translateX(-50%);
}
#session-sync .notification-system .info
{
width: 100%;
padding: 0.5em 2em;
padding-left: 3.5em;
background: #2D92EB;
color: #FFF;
/* background: #F5F5F5; */
/* color: #333; */
word-break: break-all;
text-align: center;
position: absolute;
top: -150px;
opacity: 0;
transition: all 0.2s ease-out;
box-sizing: border-box;
transform: translateX(0);
}
#session-sync .notification-system .info[active]
{
opacity: 1;
top: -1px;
border: 1px solid #CCC;
}
#session-sync .notification-system .info:after {
content: " ";
width: 24px;
height: 24px;
background: url("images/logo.png") center no-repeat;
background-size: contain;
top: 50%;
left: 20px;
position: absolute;
transform: translateY(-50%);
}