-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathjquery.notifications.css
48 lines (48 loc) · 1.01 KB
/
jquery.notifications.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
/* jQuery Notifications plugin - http://programmingmind.com */
/* notification container */
#jquery-notifications {
position: relative;
width: 100%;
left: 0;
top: 0;
z-index: 100000;
}
#jquery-notifications p {
text-align: center;
position: relative;
margin: 0;
padding: 5px;
padding-left: 10px;
border-bottom: 2px solid;
/* style property for the close text */
}
#jquery-notifications p a {
position: absolute;
right: 10px;
margin-right: 10px;
color: black;
text-decoration: none;
border: 1px solid black;
padding-right: 5px;
padding-left: 5px;
}
#jquery-notifications .notice {
background: #6c9ffc;
color: #061a72;
border-color: #061a72;
}
#jquery-notifications .success {
background: #96f96f;
color: #045419;
border-color: #045419;
}
#jquery-notifications .warning {
background: #f7ae57;
color: #753903;
border-color: #753903;
}
#jquery-notifications .error {
background: #f97c6f;
color: #570f01;
border-color: #570f01;
}