-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathjsShare.css
73 lines (72 loc) · 1.69 KB
/
jsShare.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
.social-media-share
{
margin: 0;
padding: 0;
height: 39px;
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#E5E5E5), to(#CFCFCF));
background-image: -moz-linear-gradient(#E5E5E5, #CFCFCF);
background-image: -webkit-linear-gradient(#E5E5E5, #CFCFCF);
background-image: -o-linear-gradient(#E5E5E5, #CFCFCF);
border: solid 1px #B5B5B5;
border-radius: 6px;
-moz-border-radius: 6px;
background: #CFCFCF url(images/bg.jpg) repeat-x;
position: relative;
overflow: hidden;
-webkit-box-shadow: 0px 1px 1px gray;
-moz-box-shadow: 0px 1px 1px gray;
box-shadow: 0px 1px 1px gray;
}
.social-media-share .inner
{
position: relative;
float: left;
width: 32px;
height: 30px;
border: solid 1px #B5B5B5;
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#E5E5E5), to(#CFCFCF));
background-image: -moz-linear-gradient(#E5E5E5, #CFCFCF);
background-image: -webkit-linear-gradient(#E5E5E5, #CFCFCF);
background-image: -o-linear-gradient(#E5E5E5, #CFCFCF);
border-radius: 6px;
-moz-border-radius: 6px;
margin: 3px;
text-align: center;
background-image: url(images/plus.png);
background-repeat: no-repeat;
background-position: center;
cursor: pointer;
-webkit-box-shadow: 0px 1px 1px gray;
-moz-box-shadow: 0px 1px 1px gray;
box-shadow: 0px 1px 1px gray;
}
.social-media-share-tooltip
{
position: absolute;
z-index: 200;
color: #b5B5B5;
font-size: 10pt;
}
.social-media-share ul
{
position: relative;
float: left;
list-style: none;
margin: 0;
padding: 0;
margin-top: 4px;
margin-left: -8px;
height: 24px;
overflow: hidden;
width: 88%;
}
.social-media-share ul li
{
display: inline;
float: left;
margin-left: 18px;
}
.social-media-share ul li img
{
border: none;
}