-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimoFlashMessage.css
More file actions
79 lines (70 loc) · 1.44 KB
/
simoFlashMessage.css
File metadata and controls
79 lines (70 loc) · 1.44 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
76
77
78
79
#simo-flash-message-container {
position: fixed;
top: 0;
right: 0;
left: 0;
display: block;
overflow: hidden;
-webkit-overflow-scrolling: touch;
outline: 0;
margin: 30px 10px auto auto;
width: 25%;
bottom: auto;
z-index: 1000000000;
}
.simo-flash-message {
}
.simo-flash-message-content {
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
}
.simo-flash-message-success {
color: #3c763d;
background-color: #dff0d8;
border-color: #d6e9c6;
}
.simo-flash-message-info {
color: #31708f;
background-color: #d9edf7;
border-color: #bce8f1;
}
.simo-flash-message-warning {
color: #8a6d3b;
background-color: #fcf8e3;
border-color: #faebcc;
}
.simo-flash-message-error {
color: #a94442;
background-color: #f2dede;
border-color: #ebccd1;
}
.simo-flash-message-time {
text-align: right;
}
.simo-flash-message-close {
float: right;
font-size: 21px;
font-weight: bold;
line-height: 1;
color: #000;
text-shadow: 0 1px 0 #fff;
filter: alpha(opacity=20);
opacity: .2;
}
.simo-flash-message-close:hover,
.simo-flash-message-close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
filter: alpha(opacity=50);
opacity: .5;
}
button.simo-flash-message-close {
-webkit-appearance: none;
padding: 0;
cursor: pointer;
background: transparent;
border: 0;
}