-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathnotify-osd.css
49 lines (49 loc) · 982 Bytes
/
notify-osd.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
img {
border:none;
}
.notify-osd {
font-family:Helvetica Neue,Helvetica,Arial,'Liberation Sans',FreeSans,sans-serif;
font-size:14px;
position:fixed;
top:20px;
right:20px;
width:350px;
background-color:#222222;
color:#ffffff;
border-radius:4px;
box-shadow:0 0 10px #222;
-webkit-border-radius:4px;
-moz-border-radius:4px;
z-index:900;
}
.notify-osd:hover {
cursor:default !important;
}
.notify-osd > div {
padding:10px;
position:relative;
}
.notify-osd table {
width:100%;
padding:0;
-webkit-border-horizontal-spacing:0;
-webkit-border-vertical-spacing:0;
}
.notify-osd .notify-osd-dismiss {
color:#ccc;
font-size:15px;
position:absolute;
top:3px;
right:10px;
z-index:999;
cursor:pointer;
}
.notify-osd td.notify-osd-icon {
height:48px;
width:48px;
vertical-align:top;
}
.notify-osd td.notify-osd-content {
padding-left:10px;
vertical-align:center;
}