forked from vladtsf/social-buttons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuttons.css
61 lines (52 loc) · 985 Bytes
/
buttons.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
.likes-block {
line-height:24px;
height:24px;
text-align:right;
margin-bottom: 30px;
}
.like {
display:inline-block;
height:24px;
line-height:24px;
position:relative;
font:normal 10px tahoma;
color:#fff;
min-width:29px;
vertical-align:top;
text-align:center;
padding:0;
}
.likes-block .like:first-child {
margin-left:10px;
}
.like .l-ico {
width:24px;
height:24px;
position:absolute;
top:0;
left:-12px;
background-image:url("./images/likes-ico.png");
background-repeat:no-repeat;
}
.l-fb .l-ico {
background-position:0 0;
}
.l-vk .l-ico {
background-position:-29px 0;
}
.l-tw .l-ico {
background-position:-58px 0;
}
.like .l-count {
vertical-align:middle;
line-height:24px;
cursor: default;
}
.like.like-not-empty {
background: url("./images/likes-bg.png") no-repeat 100% 0;
margin-right:14px;
padding:0 0 0 9px;
}
a.like {
text-decoration: none;
}