Skip to content

Commit 72cb64f

Browse files
Merge pull request #646 from Realmlist/main
Added buttons - BOOTH, HearThis.at, Pronouns.page and Throne
2 parents 9796c09 + 509b6bc commit 72cb64f

File tree

6 files changed

+250
-0
lines changed

6 files changed

+250
-0
lines changed

assets/linkstack/css/brands.css

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,16 @@ button:hover,
257257
filter: brightness(90%);
258258
}
259259

260+
/* Booth */
261+
.button.button-booth {
262+
color: #FFFFFF;
263+
background-color: #FC4D50;
264+
}
265+
.button.button-booth:hover,
266+
.button.button-booth:focus {
267+
filter: brightness(90%);
268+
}
269+
260270
/* Bluesky */
261271
.button.button-bluesky {
262272
color: #000000;
@@ -558,6 +568,16 @@ button:hover,
558568
filter: brightness(90%);
559569
}
560570

571+
/* HearThis.at */
572+
.button.button-hearthisat {
573+
color: #FFFFFF;
574+
background-color: #000000;
575+
}
576+
.button.button-hearthisat:hover,
577+
.button.button-hearthisat:focus {
578+
filter: brightness(90%);
579+
}
580+
561581
/* Humble Bundle */
562582
.button.button-humble-bundle {
563583
color: #FFFFFF;
@@ -887,6 +907,16 @@ button:hover,
887907
filter: brightness(90%);
888908
}
889909

910+
/* PronounsPage */
911+
.button.button-pronounspage {
912+
color: #ffffff;
913+
background-color: #ff95bb;
914+
}
915+
.button.button-pronounspage:hover,
916+
.button.button-pronounspage:focus {
917+
filter: brightness(90%);
918+
}
919+
890920
/* Reddit */
891921
.button.button-reddit {
892922
color: #000000;
@@ -1017,6 +1047,16 @@ button.button-scribd{
10171047
filter: brightness(90%);
10181048
}
10191049

1050+
/* Throne */
1051+
.button.button-throne {
1052+
color: #FFFFFF;
1053+
background-color: #805AD5;
1054+
}
1055+
.button.button-throne:hover,
1056+
.button.button-throne:focus {
1057+
filter: brightness(90%);
1058+
}
1059+
10201060
/* TikTok */
10211061
.button.button-tiktok {
10221062
color: #FFFFFF;

assets/linkstack/icons/booth.svg

Lines changed: 93 additions & 0 deletions
Loading

assets/linkstack/icons/hearthisat.svg

Lines changed: 85 additions & 0 deletions
Loading
Lines changed: 4 additions & 0 deletions
Loading

assets/linkstack/icons/throne.svg

Lines changed: 12 additions & 0 deletions
Loading

database/seeders/ButtonSeeder.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -445,6 +445,22 @@ public function run()
445445
[
446446
'name' => 'streams'
447447
],
448+
449+
[
450+
'name' => 'pronounspage'
451+
],
452+
453+
[
454+
'name' => 'booth'
455+
],
456+
457+
[
458+
'name' => 'hearthisat'
459+
],
460+
461+
[
462+
'name' => 'throne'
463+
],
448464
];
449465

450466
Button::insert($buttons);

0 commit comments

Comments
 (0)