forked from cferdinandi/social-sharing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsocial-sharing.css
75 lines (62 loc) · 1.53 KB
/
social-sharing.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
/* =============================================================
Social Sharing v1.1
Social sharing links and buttons without the bloat by Chris Ferdinandi.
http://gomakethings.com
Free to use under the MIT License.
http://gomakethings.com/mit/
* ============================================================= */
/* Twitter button color */
.btn-tweet {
background-color: #41b7d8;
border-color: #41b7d8;
}
/* Twitter button color on hover */
.btn-tweet:hover,
a .btn-tweet:hover {
background-color: #3697b2;
border-color: #3697b2;
}
/* Facebook button color */
.btn-facebook {
background-color: #3b5997;
border-color: #3b5997;
}
/* Facebook button color on hover */
.btn-facebook:hover,
a .btn-facebook:hover {
background-color: #2c4370;
border-color: #2c4370;
}
/* Google button color */
.btn-google {
background-color: #d64937;
border-color: #d64937;
}
/* Facebook button color on hover */
.btn-google:hover,
a .btn-google:hover {
background-color: #b03d2e;
border-color: #b03d2e;
}
/* LinkedIn button color */
.btn-linkedin {
background-color: #0073b2;
border-color: #0073b2;
}
/* LinkedIn button color on hover */
.btn-linkedin:hover,
a .btn-linkedin:hover {
background-color: #005b8c;
border-color: #005b8c;
}
/* Pinterest button color */
.btn-pinterest {
background-color: #cb2027;
border-color: #cb2027;
}
/* Pinterest button color on hover */
.btn-pinterest:hover,
a .btn-pinterest:hover {
background-color: #a61a20;
border-color: #a61a20;
}