-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnotiJ.css
76 lines (63 loc) · 973 Bytes
/
notiJ.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
div.notij-que {
position: fixed;
width: 200px;
left:10px;
bottom:30px;
}
div.notij-long {
width: 500px !important;
}
div.notij-que * {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
div.notij {
font-size:12px;
color:#555;
display:none;
padding:10px;
position:relative;
margin-bottom:5px;
/*adding border radius*/
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
div.notij-msg{
padding-right: 20px;
font-size: 12px;
color: #FFF;
}
.notij-close {
position:absolute;
top:10px;
right:10px;
height:14px;
width:14px;
cursor:pointer;
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
font-weight:800;
}
.theme_default {
background:#414141;
}
.close_default {
color:#999;
}
.theme_error {
background:#C11B17;
}
.close_error {
color:#FFEDFD;
}
.theme_info {
background:#4863A0;
}
.close_info {
color:#33CCFF;
}
.theme_succuess {
background:#3C9300;
}
.close_succuess {
color:#00FF66;
}