-
Notifications
You must be signed in to change notification settings - Fork 103
/
social-buttons.less
182 lines (135 loc) · 5.55 KB
/
social-buttons.less
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
//
// Bootstrap Social Buttons v1.0.0
// --------------------------------------------------
// The colours
// --------------------------------------------------
// Facebook colours from ???
@btnFacebookBackground: #3B5998;
@btnFacebookBackgroundHighlight: #133783;
// Twitter colours from https://twitter.com/
@btnTwitterBackground: #2daddc;
@btnTwitterBackgroundHighlight: #0271bf;
// Github colours from http://ghbtns.com/
@btnGithubBackground: #fafafa;
@btnGithubBackgroundHighlight: #e6e6e6;
@btnGithubText: #000000;
@btnGithubTextShadow: 0 0.7px 0 rgba(0,0,0,.1);
// Pinterest colours from http://pinterest.com/
@btnPinterestBackground: #d62229;
@btnPinterestBackgroundHighlight: #ab171e;
// Linkedin colours from http://www.linkedin.com/
@btnLinkedinBackground: #73b8db;
@btnLinkedinBackgroundHighlight: #4393BB;
// Google Plus colours from https://accounts.google.com/ServiceLogin?service=oz&continue=https://plus.google.com/?gpsrc%3Dgplp0%26partnerid%3Dgplp0&hl=en-GB
@btnGooglePlusBackground: #dd4b39;
@btnGooglePlusBackgroundHighlight: #c53727;
// Instagram colours from http://instagram.com
@btnInstagramBackground: #6f97b6;
@btnInstagramBackgroundHighlight: #3f729b;
// Instagram colours from http://instagram.com
@btnDropboxBackground: #37a3eb;
@btnDropboxBackgroundHighlight: #2181cf;
// Bitbucket colours from https://bitbucket.org/dashboard/overview
@btnBitbucketBackground: #2D5F9C;
@btnBitbucketBackgroundHighlight: #205081;
// Dribbble colours from https://dribbble.com/session/new
@btnDribbbleBackground: #ea4c89;
@btnDribbbleBackgroundHighlight: #CB396F;
// Flickr colours from http://www.flickr.com/about
@btnFlickrBackground: #F051A5;
@btnFlickrBackgroundHighlight: #ff0084;
// Foursquare colours from https://playfoursquare.s3.amazonaws.com/press/foursquare-brandbook.pdf
@btnFoursquareBackground: #0cbadf;
@btnFoursquareBackgroundHighlight: #0072b1;
// Renren colours from http://a.xnimg.cn/n/apps/login/v6/cssimg/bg.png
@btnRenrenBackground: #397CB6;
@btnRenrenBackgroundHighlight: #33669A;
// Skype colours from http://issuu.com/bondo/docs/skype_brand_book_-_look
@btnSkypeBackground: #70C3E2;
@btnSkypeBackgroundHighlight: #00AFF0;
// Stack Exchange colours from http://cdn.sstatic.net/stackexchange/img/sprites.png?v=8
@btnStackExchangeBackground: #5184C1;
@btnStackExchangeBackgroundHighlight: #185397;
// Trello colours from http://cdn.sstatic.net/stackexchange/img/sprites.png?v=8
@btnTrelloBackground: #569cc4;
@btnTrelloBackgroundHighlight: #27709b;
// Tumblr colours from http://assets.tumblr.com/images/background.png?a33896dcf50d40a936025aeb074d8707
@btnTumblrBackground: #3A5976;
@btnTumblrBackgroundHighlight: #2A4763;
// VK colours from http://vk.com/images/hat.gif
@btnVkBackground: #5A7FA6;
@btnVkBackgroundHighlight: #426187;
// Weibo colours from http://img.t.sinajs.cn/t5/style/images/register/form_login.png?id=1370232467958
@btnWeiboBackground: #F85959;
@btnWeiboBackgroundHighlight: #E64141;
// XING colours from https://www.xing.com/img/s/sprite_zero_r9.png
@btnXingBackground: #1F6768;
@btnXingBackgroundHighlight: #074C4D;
// Youtube colours from http://www.youtube.com/yt/brand/color.html
@btnYoutubeBackground: #CD332D;
@btnYoutubeBackgroundHighlight: #6E0610;
// The social buttons
// --------------------------------------------------
.btn-facebook {
.buttonBackground(@btnFacebookBackground, @btnFacebookBackgroundHighlight);
}
.btn-twitter {
.buttonBackground(@btnTwitterBackground, @btnTwitterBackgroundHighlight);
}
.btn-github {
.buttonBackground(@btnGithubBackground, @btnGithubBackgroundHighlight, @btnGithubText, @btnGithubTextShadow);
}
.btn-pinterest {
.buttonBackground(@btnPinterestBackground, @btnPinterestBackgroundHighlight);
}
.btn-linkedin {
.buttonBackground(@btnLinkedinBackground, @btnLinkedinBackgroundHighlight);
}
.btn-google-plus {
.buttonBackground(@btnGooglePlusBackground, @btnGooglePlusBackgroundHighlight);
}
.btn-instagram {
.buttonBackground(@btnInstagramBackground, @btnInstagramBackgroundHighlight);
}
.btn-dropbox {
.buttonBackground(@btnDropboxBackground, @btnDropboxBackgroundHighlight);
}
.btn-bitbucket {
.buttonBackground(@btnBitbucketBackground, @btnBitbucketBackgroundHighlight);
}
.btn-dribbble {
.buttonBackground(@btnDribbbleBackground, @btnDribbbleBackgroundHighlight);
}
.btn-flickr {
.buttonBackground(@btnFlickrBackground, @btnFlickrBackgroundHighlight);
}
.btn-foursquare {
.buttonBackground(@btnFoursquareBackground, @btnFoursquareBackgroundHighlight);
}
.btn-renren {
.buttonBackground(@btnRenrenBackground, @btnRenrenBackgroundHighlight);
}
.btn-skype {
.buttonBackground(@btnSkypeBackground, @btnSkypeBackgroundHighlight);
}
.btn-stackexchange {
.buttonBackground(@btnStackExchangeBackground, @btnStackExchangeBackgroundHighlight);
}
.btn-trello {
.buttonBackground(@btnTrelloBackground, @btnTrelloBackgroundHighlight);
}
.btn-tumblr {
.buttonBackground(@btnTumblrBackground, @btnTumblrBackgroundHighlight);
}
.btn-vk {
.buttonBackground(@btnVkBackground, @btnVkBackgroundHighlight);
}
.btn-weibo {
.buttonBackground(@btnWeiboBackground, @btnWeiboBackgroundHighlight);
}
.btn-xing {
.buttonBackground(@btnXingBackground, @btnXingBackgroundHighlight);
}
.btn-youtube {
.buttonBackground(@btnYoutubeBackground, @btnYoutubeBackgroundHighlight);
}