-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotif.css
66 lines (58 loc) · 1.52 KB
/
notif.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
.notif_container {
position:fixed;
border-radius: 3px 3px 3px 3px;
box-shadow: 0 2px 3px rgba(255, 255, 255, 0.5) inset, 0 2px 3px rgba(0, 0, 0, 0.1);
margin-bottom: 10px;
padding: 15px 15px;
min-width: 200px;
max-width:300px;
cursor:pointer;
min-height: 40px;
z-index: 9999 !important;
}
.notif_container.notif-left {
left: 30px;
}
.notif_container.notif-right {
right: 30px;
}
.notif_container h3 {
font-size: 14px;
font-weight: bold;
margin-top: 0;
line-height: 20px;
color: inherit;
}
.notif_container p {
margin-bottom: 0;
font-size: 13px;
margin-top: 5px;
}
.notif_container.notif-error {
background-color: #FAE2E2;
background-image: -moz-linear-gradient(center top , #FAE2E2, #F2CACB);
border: 1px solid #EEB7BA;
color: #BE4741;
text-shadow: 0 1px 1px #FFFFFF;
}
.notif_container.notif-info {
background-color: #CCDDFF;
background-image: -moz-linear-gradient(center top , #EEEEFF, #CCDDFF);
border: 1px solid #CADCEA;
color: #225B86;
text-shadow: 0 1px 1px #FFFFFF;
}
.notif_container.notif-warning {
background-color: #FFFFC0;
background-image: -moz-linear-gradient(center top , #FFFFC0, #F9EE9C);
border: 1px solid #E5DBAA;
color: #6D7829;
text-shadow: 0 1px 1px #FFFFFF;
}
.notif_container.notif-success {
background-color: #E5EDC4;
background-image: -moz-linear-gradient(center top , #E5EDC4, #D9E4AC);
border: 1px solid #B8C97B;
color: #3F7227;
text-shadow: 0 1px 1px #FFFFFF;
}