-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoast.css
58 lines (49 loc) · 861 Bytes
/
toast.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
/*
* toast.js CSS
*/
.toast {
padding: 8px 35px 8px 14px;
margin-bottom: 8px;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
border: 2px solid;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
box-shadow:#999 0 0 8px;
}
.toast:hover {
cursor: pointer;
box-shadow:#666 0 0 8px;
}
#toast-container {
width: 300px;
top: 12px;
left: 12px;
position: fixed;
z-index: 9999;
}
.toast-title {
font-weight: bold;
}
.toast-message {
}
.toast-success {
color: #468847;
background-color: #dff0d8;
border-color: #d6e9c6;
}
.toast-error {
color: #b94a48;
background-color: #f2dede;
border-color: #eed3d7;
}
.toast-info {
color: #3a87ad;
background-color: #d9edf7;
border-color: #bce8f1;
}
.toast-warning {
color: #c09853;
background-color: #fcf8e3;
border-color: #fbeed5;
}