-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathalertify.default.css
More file actions
42 lines (42 loc) · 956 Bytes
/
alertify.default.css
File metadata and controls
42 lines (42 loc) · 956 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
/**
* Default Look and Feel
*/
.alertify,
.alertify-log {
font-family: sans-serif;
}
.alertify {
background: #FFF;
border: 10px solid #333; /* browsers that don't support rgba */
border: 10px solid rgba(0,0,0,.7);
border-radius: 8px;
box-shadow: 0 3px 3px rgba(0,0,0,.3);
-webkit-background-clip: padding; /* Safari 4? Chrome 6? */
-moz-background-clip: padding; /* Firefox 3.6 */
background-clip: padding-box; /* Firefox 4, Safari 5, Opera 10, IE 9 */
}
.alertify-text {
border: 1px solid #CCC;
padding: 10px;
border-radius: 4px;
}
.alertify-log {
background: #1F1F1F;
background: rgba(45, 45, 45, 0.9);
color: #fff;
padding: 15px;
border-radius: 4px;
text-shadow: -1px -1px 0 rgba(0,0,0,.5);
display: table;
}
.alertify-log-error {
background: #FE1A00;
background: rgba(254,26,0,.9);
}
.alertify-log-success {
background: #5CB811;
background: rgba(92,184,17,.9);
}
.alertify-log-mydevice {
background: blue;
}