littlelink/css/brands.css

593 lines
11 KiB
CSS
Raw Normal View History

2019-12-21 22:30:05 -05:00
/*
2024-11-13 01:04:11 -05:00
* LittleLink Button Styles
* https://littlelink.io
* Free to use under the MIT license
2019-12-21 22:30:05 -05:00
* http://www.opensource.org/licenses/mit-license.php
*/
2024-11-13 01:04:11 -05:00
/* Brand Button Base Styles
2019-12-21 22:30:05 -05:00
*/
2024-11-13 01:04:11 -05:00
/* Only include brand-specific button styling here */
.button,button {
color:var(--button-text,#000000);
background-color:var(--button-background,transparent);
border:var(--button-border,none);
transition:filter 0.2s ease,transform 0.2s ease;
}
2019-12-21 22:30:05 -05:00
2024-11-13 01:04:11 -05:00
/* Global Button Hover Effect
2019-12-21 22:30:05 -05:00
*/
2024-11-13 01:04:11 -05:00
.button:hover,button:hover {
filter:brightness(90%);
transform:translateY(-1px);
}
2019-12-21 22:30:05 -05:00
2024-11-13 01:04:11 -05:00
/* Button Icons
*/
2019-12-21 22:30:05 -05:00
.icon {
2024-11-13 01:04:11 -05:00
filter:var(--icon-filter,none);
2019-12-21 22:30:05 -05:00
}
2024-11-13 01:04:11 -05:00
/* Brand-Specific Styles
2019-12-21 22:30:05 -05:00
*/
2024-11-13 01:04:11 -05:00
/* Default */
.button.button-default {
2024-11-13 01:04:11 -05:00
--button-text:#ffffff;
--button-background:#2457F5;
--button-border:1px solid #ffffff;
}
/* Amazon */
2024-11-13 01:04:11 -05:00
.button-amazon {
--button-text:#000000;
--button-background:#FFFFFF;
--button-border:1px solid #212121;
}
/* Amazon Music */
2024-11-13 01:04:11 -05:00
.button-amazon-music {
--button-text:#000000;
--button-background:#25D1DA;
}
/* Apple App Store */
2024-11-13 01:04:11 -05:00
.button-appstore {
--button-text:#FFFFFF;
--button-background:#000000;
--button-border:1px solid #FFFFFF;
}
/* Apple Music */
2024-11-13 01:04:11 -05:00
.button-apple-music {
--button-text:#ffffff;
--button-background:#000000;
--button-border:1px solid #FFFFFF;
}
/* Apple Music Alt */
2024-11-13 01:04:11 -05:00
.button-apple-music-alt {
--button-text:#ffffff;
background-image:linear-gradient(to bottom,#FB5C74,#FA233B);
}
/* Apple Podcasts */
2024-11-13 01:04:11 -05:00
.button-apple-podcasts {
--button-text:#ffffff;
--button-background:#000000;
--button-border:1px solid #FFFFFF;
}
/* Apple Podcasts Alt */
2024-11-13 01:04:11 -05:00
.button-apple-podcasts-alt {
--button-text:#ffffff;
background-image:linear-gradient(to bottom,#F452FF,#832BC1);
}
2021-11-09 18:34:32 -05:00
/* Bandcamp */
2024-11-13 01:04:11 -05:00
.button-bandcamp {
--button-text:#ffffff;
--button-background:#1d9fc3;
}
/* Behance */
2024-11-13 01:04:11 -05:00
.button-behance {
--button-text:#ffffff;
--button-background:#0057FF;
--button-border:1px solid #FFFFFF;
}
/* Bluesky */
2024-11-13 01:04:11 -05:00
.button-bluesky {
--button-text:#FFFFFF;
--button-background:#1185FE;
}
2024-02-24 19:47:04 -05:00
/* Bluesky Alt */
2024-11-13 01:04:11 -05:00
.button-bluesky-alt {
--button-text:#000000;
--button-background:#FFFFFF;
--button-border:1px solid #000000;
2024-02-24 19:47:04 -05:00
}
/* Buy Me a Coffee */
2024-11-13 01:04:11 -05:00
.button-coffee {
--button-text:#000000;
--button-background:#ffdd00;
}
/* Cal.com */
2024-11-13 01:04:11 -05:00
.button-cal {
--button-text:#FFFFFF;
--button-background:#292929;
--button-border:1px solid #FFFFFF;
}
/* Calendly */
2024-11-13 01:04:11 -05:00
.button-calendly {
--button-text:#FFFFFF;
--button-background:#006BFF;
}
/* Cash App */
2024-11-13 01:04:11 -05:00
.button-cash-app {
--button-text:#ffffff;
background-image:linear-gradient(to bottom,#00d64b,#00c244);
}
2022-05-02 16:26:30 -04:00
/* dev.to */
2024-11-13 01:04:11 -05:00
.button-dev-to {
--button-text:#000000;
--button-background:#f5f5f5;
--button-border:1px solid #212121;
2022-05-02 16:26:30 -04:00
}
2024-01-10 04:59:35 -05:00
/* Discogs */
2024-11-13 01:04:11 -05:00
.button-discogs {
--button-text:#000000;
--button-background:#FFFFFF;
--button-border:1px solid #000000;
2024-01-10 04:59:35 -05:00
}
/* Discogs Alt */
2024-11-13 01:04:11 -05:00
.button-discogs-alt {
--button-text:#FFFFFF;
--button-background:#000000;
--button-border:1px solid #FFFFFF;
2024-01-10 05:20:43 -05:00
}
2019-12-21 22:30:05 -05:00
/* Discord */
2024-11-13 01:04:11 -05:00
.button-discord {
--button-text:#ffffff;
--button-background:#5865F2;
}
2019-12-21 22:30:05 -05:00
/* Dribbble */
2024-11-13 01:04:11 -05:00
.button-dribbble {
--button-text:#000000;
--button-background:#FFFFFF;
--button-border:1px solid #212121;
}
/* Etsy */
2024-11-13 01:04:11 -05:00
.button-etsy {
--button-text:#ffffff;
--button-background:#F45800;
}
2019-12-21 22:30:05 -05:00
/* Facebook */
2024-11-13 01:04:11 -05:00
.button-faceb {
--button-text:#ffffff;
--button-background:#1877f2;
}
2019-12-21 22:30:05 -05:00
/* Facebook Messenger */
2024-11-13 01:04:11 -05:00
.button-messenger {
--button-text:#ffffff;
background-image:linear-gradient(25deg,#0099ff,#5f5dff,#a033ff,#c740cc,#ff5280,#ff7061);
}
2019-12-21 22:30:05 -05:00
/* Figma */
2024-11-13 01:04:11 -05:00
.button-figma {
--button-text:#ffffff;
--button-background:#000000;
--button-border:1px solid #FFFFFF;
}
2019-12-21 22:30:05 -05:00
/* Fiverr */
2024-11-13 01:04:11 -05:00
.button-fiverr {
--button-text:#ffffff;
--button-background:#1DBF73;
}
2022-06-05 06:13:34 -04:00
/* Flickr */
2024-11-13 01:04:11 -05:00
.button-flickr {
--button-text:#ffffff;
--button-background:#000000;
--button-border:1px solid #FFFFFF;
2022-06-05 06:13:34 -04:00
}
/* GitHub */
2024-11-13 01:04:11 -05:00
.button-github {
--button-text:#ffffff;
--button-background:#000000;
--button-border:1px solid #FFFFFF;
}
2019-12-21 22:30:05 -05:00
/* GitLab */
2024-11-13 01:04:11 -05:00
.button-gitlab {
--button-text:#ffffff;
--button-background:#6151b2;
}
2021-09-19 12:46:30 -04:00
2023-06-12 11:25:26 -04:00
/* GoFundMe */
2024-11-13 01:04:11 -05:00
.button-gofundme {
--button-text:#ffffff;
--button-background:#02A95C;
2023-06-12 11:25:26 -04:00
}
/* Goodreads */
2024-11-13 01:04:11 -05:00
.button-goodreads {
--button-text:#333333;
--button-background:#f3f1e6;
--button-border:1px solid #212121;
}
/* Google Black */
2024-11-13 01:04:11 -05:00
.button-google-black {
--button-text:#FFFFFF;
--button-background:#000000;
--button-border:1px solid #FFFFFF;
}
/* Google Play Store */
2024-11-13 01:04:11 -05:00
.button-playstore {
--button-text:#FFFFFF;
--button-background:#000000;
--button-border:1px solid #FFFFFF;
}
2022-12-20 16:22:58 -05:00
/* Google Scholar */
2024-11-13 01:04:11 -05:00
.button-google-scholar {
--button-text:#000000;
--button-background:#FFFFFF;
--button-border:1px solid #212121;
2022-12-20 16:22:58 -05:00
}
/* Hashnode */
2024-11-13 01:04:11 -05:00
.button-hashnode {
--button-text:#000000;
--button-background:#ffffff;
--button-border:1px solid #212121;
}
2019-12-21 22:30:05 -05:00
/* Instagram */
2024-11-13 01:04:11 -05:00
.button-instagram {
--button-text:#ffffff;
background-image:linear-gradient(-135deg,#1400c8,#b900b4,#f50000);
}
2019-12-21 22:30:05 -05:00
/* Kick */
2024-11-13 01:04:11 -05:00
.button-kick {
--button-text:#ffffff;
--button-background:#000000;
--button-border:1px solid #ffffff;
2023-06-29 03:10:17 -04:00
}
/* Kick Alt */
2024-11-13 01:04:11 -05:00
.button-kick-alt {
--button-text:#000000;
--button-background:#01e701;
}
/* Kickstarter */
2024-11-13 01:04:11 -05:00
.button-kickstarter {
--button-text:#ffffff;
--button-background:#05ce78;
}
2019-12-21 22:30:05 -05:00
/* Kit */
2024-11-13 01:04:11 -05:00
.button-kit {
--button-text:#ffffff;
--button-background:#000000;
--button-border:1px solid #FFFFFF;
}
2019-12-21 22:30:05 -05:00
/* Ko-fi */
2024-11-13 01:04:11 -05:00
.button-ko-fi {
--button-text:#ffffff;
--button-background:#000000;
--button-border:1px solid #FFFFFF;
}
/* Last.fm */
2024-11-13 01:04:11 -05:00
.button-last-fm {
--button-text:#ffffff;
--button-background:#D51007;
}
/* Letterboxd */
2024-11-13 01:04:11 -05:00
.button-letterboxd {
--button-text:#ffffff;
--button-background:#2c3440;
--button-border:1px solid #FFFFFF;
}
/* Line */
2024-11-13 01:04:11 -05:00
.button-line {
--button-text:#FFFFFF;
--button-background:#06C755;
}
2019-12-21 22:30:05 -05:00
/* LinkedIn */
2024-11-13 01:04:11 -05:00
.button-linked {
--button-text:#ffffff;
--button-background:#2867b2;
}
2019-12-21 22:30:05 -05:00
/* Mailchimp */
2024-11-13 01:04:11 -05:00
.button-mailchimp {
--button-text:#000000;
--button-background:#FFE01B;
}
2021-08-10 09:48:56 -04:00
/* Mastodon */
2024-11-13 01:04:11 -05:00
.button-mastodon {
--button-text:#ffffff;
--button-background:#17063B;
--button-border:1px solid #FFFFFF;
}
2021-08-10 09:48:56 -04:00
2019-12-21 22:30:05 -05:00
/* Medium */
2024-11-13 01:04:11 -05:00
.button-medium {
--button-text:#ffffff;
--button-background:#000000;
--button-border:1px solid #FFFFFF;
}
2019-12-21 22:30:05 -05:00
2024-03-06 12:04:16 -05:00
/* Microsoft */
2024-11-13 01:04:11 -05:00
.button-microsoft {
--button-text:#ffffff;
--button-background:#000000;
--button-border:1px solid #FFFFFF;
2023-06-28 21:17:07 -04:00
}
/* Notion */
2024-11-13 01:04:11 -05:00
.button-notion {
--button-text:#000000;
--button-background:#ffffff;
--button-border:1px solid #212121;
}
/* OnlyFans */
2024-11-13 01:04:11 -05:00
.button-onlyfans {
--button-text:#ffffff;
--button-background:#00AEEF;
}
/* Patreon */
2024-11-13 01:04:11 -05:00
.button-patreon {
--button-text:#ffffff;
--button-background:#000000;
--button-border:1px solid #FFFFFF;
}
/* PayPal */
2024-11-13 01:04:11 -05:00
.button-paypal {
--button-text:#ffffff;
--button-background:#002991;
--button-border:1px solid #FFFFFF;
}
2019-12-21 22:30:05 -05:00
/* Pinterest */
2024-11-13 01:04:11 -05:00
.button-pinterest {
--button-text:#000000;
2024-11-13 11:51:51 -05:00
--button-background:#ffffff;
2024-11-13 01:04:11 -05:00
--button-border:1px solid #212121;
2022-12-23 21:45:36 -05:00
}
/* Product Hunt */
2024-11-13 01:04:11 -05:00
.button-product-hunt {
--button-text:#000000;
--button-background:#ffffff;
--button-border:1px solid #212121;
}
/* Read.cv */
2024-11-13 01:04:11 -05:00
.button-read-cv {
--button-text:#FFFFFF;
--button-background:#000000;
--button-border:1px solid #FFFFFF;
}
2019-12-21 22:30:05 -05:00
/* Reddit */
2024-11-13 01:04:11 -05:00
.button-reddit {
--button-text:#FFFFFF;
--button-background:#FF4500;
}
2019-12-21 22:30:05 -05:00
/* Shop */
2024-11-13 01:04:11 -05:00
.button-shop {
--button-text:#ffffff;
--button-background:#5A31F4;
}
/* Signal */
2024-11-13 01:04:11 -05:00
.button-signal {
--button-text:#ffffff;
--button-background:#3a76f0;
}
/* Slack */
2024-11-13 01:04:11 -05:00
.button-slack {
--button-text:#000000;
--button-background:#FFFFFF;
--button-border:1px solid #212121;
}
2019-12-21 22:30:05 -05:00
/* Snapchat */
2024-11-13 01:04:11 -05:00
.button-snapchat {
--button-text:#000000;
--button-background:#fffc00;
}
2019-12-21 22:30:05 -05:00
/* SoundCloud */
2024-11-13 01:04:11 -05:00
.button-soundcloud {
--button-text:#ffffff;
--button-background:#ff5500;
}
2019-12-21 22:30:05 -05:00
/* Spotify */
2024-11-13 01:04:11 -05:00
.button-spotify {
--button-text:#191414;
--button-background:#1db954;
}
2019-12-21 22:30:05 -05:00
/* Spotify Alt */
2024-11-13 01:04:11 -05:00
.button-spotify-alt {
--button-text:#FFFFFF;
--button-background:#191414;
--button-border:1px solid #FFFFFF;
}
/* Square */
2024-11-13 01:04:11 -05:00
.button-square {
--button-text:#FFFFFF;
--button-background:#006AFF;
}
/* Stack Overflow */
2024-11-13 01:04:11 -05:00
.button-stack-overflow {
--button-text:#000000;
--button-background:#FFFFFF;
--button-border:1px solid #000000;
}
2019-12-21 22:30:05 -05:00
/* Steam */
2024-11-13 01:04:11 -05:00
.button-steam {
--button-text:#ffffff;
background-image:linear-gradient(90deg,#08BBFF,#2B75FF);
}
/* Steam Alt */
2024-11-13 01:04:11 -05:00
.button-steam-alt {
--button-text:#ffffff;
background-image:linear-gradient(90deg,#09172a,#072a57,#0c5085);
--button-border:1px solid #FFFFFF;
}
/* Strava */
2024-11-13 01:04:11 -05:00
.button-strava {
--button-text:#ffffff;
--button-background:#fc5200;
}
/* Substack */
2024-11-13 01:04:11 -05:00
.button-substack {
--button-text:#ffffff;
--button-background:#FF6719;
}
2019-12-21 22:30:05 -05:00
/* Telegram */
2024-11-13 01:04:11 -05:00
.button-telegram {
--button-text:#ffffff;
--button-background:#3faee8;
}
2019-12-21 22:30:05 -05:00
/* Threads */
2024-11-13 01:04:11 -05:00
.button-threads {
--button-text:#FFFFFF;
--button-background:#000000;
--button-border:1px solid #FFFFFF;
}
/* Threema */
2024-11-13 01:04:11 -05:00
.button-threema {
--button-text:#000000;
--button-background:#3fe669;
}
/* TikTok */
2024-11-13 01:04:11 -05:00
.button-tiktok {
--button-text:#ffffff;
--button-background:#000000;
--button-border:1px solid #FFFFFF;
}
/* Trello */
2024-11-13 01:04:11 -05:00
.button-trello {
--button-text:#ffffff;
--button-background:#0065ff;
}
2019-12-21 22:30:05 -05:00
/* Tumblr */
2024-11-13 01:04:11 -05:00
.button-tumb {
--button-text:#ffffff;
--button-background:#131313;
--button-border:1px solid #FFFFFF;
}
2019-12-21 22:30:05 -05:00
/* Twitch */
2024-11-13 01:04:11 -05:00
.button-twitch {
--button-text:#ffffff;
--button-background:#9146ff;
}
2019-12-21 22:30:05 -05:00
/* Unsplash */
2024-11-13 01:04:11 -05:00
.button-unsplash {
--button-text:#000000;
--button-background:#ffffff;
--button-border:1px solid #212121;
}
/* Venmo */
2024-11-13 01:04:11 -05:00
.button-venmo {
--button-text:#ffffff;
--button-background:#008CFF;
}
/* Vimeo */
2024-11-13 01:04:11 -05:00
.button-vimeo {
--button-text:#ffffff;
--button-background:#1ab7ea;
}
2019-12-21 22:30:05 -05:00
/* VSCO */
2024-11-13 01:04:11 -05:00
.button-vsco {
--button-text:#FFFFFF;
--button-background:#000000;
--button-border:1px solid #FFFFFF;
}
2024-11-13 01:04:11 -05:00
/* WhatsApp */
.button-whatsapp {
--button-text:#ffffff;
--button-background:#455a64;
}
2024-11-13 01:04:11 -05:00
/* WordPress */
.button-wordpress {
--button-text:#ffffff;
2024-11-13 11:51:51 -05:00
--button-background:#3858E9;
}
2024-11-13 01:04:11 -05:00
/* X */
.button-x {
--button-text:#FFFFFF;
--button-background:#000000;
--button-border:1px solid #FFFFFF;
}
2024-11-13 01:04:11 -05:00
/* YouTube */
.button-yt {
--button-text:#ffffff;
--button-background:#282828;
--button-border:1px solid #FFFFFF;
}
2024-11-13 01:04:11 -05:00
/* Zoom */
.button-zoom {
--button-text:#ffffff;
--button-background:#0B5CFF;
--button-border:1px solid #FFFFFF;
2024-11-13 11:51:51 -05:00
}