Skip to content

Commit 61ab146

Browse files
committed
Added new buttons
Added the following LittleLink buttons:   -  Bandcamp   -  Patreon   -  Signal   -  Venmo   -  Cash App   -  Gitlab   -  Mastodon   -  PayPal   -  WhatsApp   -  Xing
1 parent 2968da4 commit 61ab146

File tree

15 files changed

+417
-0
lines changed

15 files changed

+417
-0
lines changed

database/seeders/ButtonSeeder.php

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,15 +115,58 @@ public function run()
115115
[
116116
'name' => 'skoob'
117117
],
118+
118119
[
119120
'name' => 'tiktok'
120121
],
122+
121123
[
122124
'name' => 'default email'
123125
],
126+
124127
[
125128
'name' => 'default email_alt'
126129
],
130+
131+
[
132+
'name' => 'bandcamp'
133+
],
134+
135+
[
136+
'name' => 'patreon'
137+
],
138+
139+
[
140+
'name' => 'signal'
141+
],
142+
143+
[
144+
'name' => 'venmo'
145+
],
146+
147+
[
148+
'name' => 'cashapp'
149+
],
150+
151+
[
152+
'name' => 'gitlab'
153+
],
154+
155+
[
156+
'name' => 'mastodon'
157+
],
158+
159+
[
160+
'name' => 'paypal'
161+
],
162+
163+
[
164+
'name' => 'whatsapp'
165+
],
166+
167+
[
168+
'name' => 'xing'
169+
],
127170
];
128171

129172
Button::insert($buttons);

littlelink/css/brands.css

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,3 +312,103 @@ button:hover,
312312
.button.button-wordpress:hover,
313313
.button.button-wordpress:focus {
314314
filter: brightness(90%) }
315+
316+
/* Bandcamp */
317+
.button.button-bandcamp {
318+
color: #ffffff;
319+
background-color: #1d9fc3;
320+
}
321+
.button.button-bandcamp:hover,
322+
.button.button-bandcamp:focus {
323+
filter: brightness(90%);
324+
}
325+
326+
/* Patreon */
327+
.button.button-patreon {
328+
color: #ffffff;
329+
background-color: #ff424d;
330+
}
331+
.button.button-patreon:hover,
332+
.button.button-patreon:focus {
333+
filter: brightness(90%);
334+
}
335+
336+
/* Signal */
337+
.button.button-signal {
338+
color: #ffffff;
339+
background-color: #3a76f0;
340+
}
341+
.button.button-signal:hover,
342+
.button.button-signal:focus {
343+
filter: brightness(90%);
344+
}
345+
346+
/* Venmo */
347+
.button.button-venmo {
348+
color: #ffffff;
349+
background-color: #3d95ce;
350+
}
351+
.button.button-venmo:hover,
352+
.button.button-venmo:focus {
353+
filter: brightness(90%);
354+
}
355+
356+
/* Cash App */
357+
.button.button-cashapp {
358+
color: #ffffff;
359+
background-image: linear-gradient(to bottom, #00d64b, #00c244);
360+
}
361+
.button.button-cashapp:hover,
362+
.button.button-cashapp:focus {
363+
filter: brightness(90%);
364+
}
365+
366+
/* Gitlab */
367+
.button.button-gitlab {
368+
color: #ffffff;
369+
background-color: #6151b2;
370+
}
371+
.button.button-gitlab:hover,
372+
.button.button-gitlab:focus {
373+
filter: brightness(90%);
374+
}
375+
376+
/* Mastodon */
377+
.button.button-mastodon {
378+
color: #ffffff;
379+
background-color: #1f232b;
380+
}
381+
.button.button-mastodon:hover,
382+
.button.button-mastodon:focus {
383+
filter: brightness(90%);
384+
}
385+
386+
/* PayPal */
387+
.button.button-paypal {
388+
color: #ffffff;
389+
background-color: #003087;
390+
}
391+
.button.button-paypal:hover,
392+
.button.button-paypal:focus {
393+
filter: brightness(90%);
394+
}
395+
396+
/* WhatsApp */
397+
.button.button-whatsapp {
398+
color: #ffffff;
399+
background-color: #455a64;
400+
}
401+
.button.button-whatsapp:hover,
402+
.button.button-whatsapp:focus {
403+
filter: brightness(90%);
404+
}
405+
406+
/* Xing */
407+
.button.button-xing {
408+
color: #ffffff;
409+
background-color: #026466;
410+
}
411+
.button.button-xing:hover,
412+
.button.button-xing:focus {
413+
filter: brightness(90%);
414+
}

littlelink/icons/bandcamp.svg

Lines changed: 26 additions & 0 deletions
Loading

littlelink/icons/blog.svg

Lines changed: 37 additions & 0 deletions
Loading

littlelink/icons/cashapp_btc.svg

Lines changed: 27 additions & 0 deletions
Loading

littlelink/icons/cashapp_dollar.svg

Lines changed: 28 additions & 0 deletions
Loading

littlelink/icons/cashapp_pound.svg

Lines changed: 28 additions & 0 deletions
Loading

littlelink/icons/gitlab.svg

Lines changed: 69 additions & 0 deletions
Loading

littlelink/icons/mastodon.svg

Lines changed: 4 additions & 0 deletions
Loading

littlelink/icons/patreon.svg

Lines changed: 3 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)