forked from stratease/dGrowl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dGrowl.css
executable file
·84 lines (83 loc) · 1.79 KB
/
dGrowl.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
.dGrowl-main {
position: fixed;
max-height: 100%;
overflow-y: auto;
overflow-x: hidden;
z-index: 999;
}
.dGrowl-notification {
margin: 5px;
padding: 5px;
width: 190px;
opacity: 0;
-webkit-transition: margin-left 1.5s ease, opacity 1s linear;
-moz-transition: margin-left 1.5s ease, opacity 1s linear;
-o-transition: margin-left 1.5s ease, opacity 1s linear;
transition: margin-left 1.5s ease, opacity 1s linear;
-webkit-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 5px 5px 12px -10px , 1);
box-shadow: 5px 5px 12px -10px , 1);
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
color: #222;
}
.dGrowl-topRight {
top: 10px;
right: 5px;
}
/* -- CHANNELS -- */
.dGrowl-channel {
z-index: 999;
position: relative;
padding: 0 4px;
overflow: hidden;
width: 220px;
display: block;
}
/* -- NOTIFICATIONS -- */
.dGrowl-title {
font-weight: bold;
font-size: 0.9em;
}
.dGrowl-topRight .dGrowl-notification {
margin-left: 235px;
}
.dGrowl-notification.dGrowl-visible {
opacity: 1;
margin-left: 0;
margin-right: 0;
}
a.dGrowl-close-btn {
color: inherit;
font-variant: normal;
text-decoration: none;
cursor: pointer;
float: right;
margin: 0 4px;
opacity: 0.4;
font-size: 18px;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-weight: bold;
font-style: normal;
}
a.dGrowl-close-btn:hover {
opacity: 0.85;
color: inherit;
font-variant: normal;
text-decoration: none;
cursor: pointer;
font-size: 18px;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-weight: bold;
font-style: normal;
}
/* default notification*/
.dGrowl-notification {
background-color: rgb(217, 237, 247);
border: 1px solid #BCE8F1;
}
/* Custom notification styles! */
.dGrowl-channel-error .dGrowl-notification {
background-color: rgb(242, 222, 222);
border: 1px solid #B94A48;
}