forked from ThrivingKings/Sticky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sticky.css
106 lines (88 loc) · 1.6 KB
/
sticky.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
div.sticky-queue {
position:fixed;
background:#fff;
border:1px solid #999;
box-shadow:0px 0px 5px #bbb;
-moz-box-shadow:0px 0px 5px #bbb;
-webkit-box-shadow:0px 0px 5px #bbb;
width:250px;
}
div.sticky-note {
padding-right:20px;
}
div.sticky {
font-size:12px;
color:#555;
display:none;
padding:10px;
position:relative;
}
img.sticky-close {
position:absolute;
top:5px;
right:5px;
height:14px;
width:14px;
cursor:pointer;
}
.top-right {
right:20px;
}
.top-left {
left:20px;
}
.top-right, .top-left {
top:-2px;
border-bottom-right-radius:6px;
border-bottom-left-radius:6px;
-moz-border-radius-bottomright:6px;
-moz-border-radius-bottomleft:6px;
-webkit-border-bottom-right-radius:6px;
-webkit-border-bottom-left-radius:6px;
}
.bottom-right {
right:20px;
}
.bottom-left {
left:20px;
}
.bottom-right, .bottom-left {
bottom:-2px;
border-top-right-radius:6px;
border-top-left-radius:6px;
-moz-border-radius-topright:6px;
-moz-border-radius-topleft:6px;
-webkit-border-top-right-radius:6px;
-webkit-border-top-left-radius:6px;
}
.border-top-right, .border-top-left {
border-top:1px solid #999;
}
.border-bottom-right, .border-bottom-left {
border-bottom:1px solid #999;
}
/*Message*/
.sticky2-message-container {
width : 225px;
}
.sticky2-message-image-container {
float : left;
width : 50px;
}
.sticky2-message-image-container img {
width : 48px;
height : 48px;
}
.sticky2-message-text-container {
float : right;
width : 170px;
}
.sticky2-message-title {
font-weight : bold;
font-size : 14px;
}
.sticky2-message-text {
font-size : 12px;
padding-top : 3px;
}
/*Message*/