Merge pull request #40 from EEkebin/main

Added Cash App and Auto Theme
main
Seth Cottle 2022-02-15 11:19:18 -05:00 committed by GitHub
commit 8448510270
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 739 additions and 278 deletions

View File

@ -18,7 +18,6 @@
* 12/29/2014 * 12/29/2014
*/ */
/* Table of contents /* Table of contents
@ -27,7 +26,6 @@
*/ */
/* Buttons /* Buttons
*/ */
@ -46,20 +44,22 @@ button {
white-space: wrap; white-space: wrap;
border-radius: 8px; border-radius: 8px;
cursor: pointer; cursor: pointer;
} }
button:hover, button:hover,
.button:focus { .button:focus {
color: #333; color: #333;
border-color: #888; border-color: #888;
outline: 0; } outline: 0;
}
.button.button-primary { .button.button-primary {
color: #FFF; color: #fff;
filter: brightness(90%) } filter: brightness(90%);
}
.button.button-primary:hover, .button.button-primary:hover,
.button.button-primary:focus { .button.button-primary:focus {
color: #FFF; color: #fff;
filter: brightness(90%) } filter: brightness(90%);
}
/* Brand Icons /* Brand Icons
*/ */
@ -71,297 +71,386 @@ button:hover,
height: 20px; height: 20px;
} }
/* Brand Styles /* Brand Styles
*/ */
/* Default (this is great for your own brand color!) */ /* Default (this is great for your own brand color!) */
.button.button-default { .button.button-default {
color: #FFFFFF; color: #ffffff;
background-color: #0085FF } background-color: #0085ff;
}
.button.button-default:hover, .button.button-default:hover,
.button.button-default:focus { .button.button-default:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Bandcamp */ /* Bandcamp */
.button.button-bandcamp { .button.button-bandcamp {
color: #FFFFFF; color: #ffffff;
background-color: #1d9fc3 } background-color: #1d9fc3;
}
.button.button-bandcamp:hover, .button.button-bandcamp:hover,
.button.button-bandcamp:focus { .button.button-bandcamp:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Patreon */ /* Patreon */
.button.button-patreon { .button.button-patreon {
color: #FFFFFF; color: #ffffff;
background-color: #ff424d } background-color: #ff424d;
}
.button.button-patreon:hover, .button.button-patreon:hover,
.button.button-patreon:focus { .button.button-patreon:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Signal */ /* Signal */
.button.button-signal { .button.button-signal {
color: #FFFFFF; color: #ffffff;
background-color: #3a76f0 } background-color: #3a76f0;
}
.button.button-signal:hover, .button.button-signal:hover,
.button.button-signal:focus { .button.button-signal:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Venmo */ /* Venmo */
.button.button-venmo { .button.button-venmo {
color: #FFFFFF; color: #ffffff;
background-color: #3d95ce } background-color: #3d95ce;
}
.button.button-venmo:hover, .button.button-venmo:hover,
.button.button-venmo:focus { .button.button-venmo:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Cash App */
.button.button-cashapp {
color: #ffffff;
background-image: linear-gradient(to bottom, #00d64b, #00c244);
}
.button.button-cashapp:hover,
.button.button-cashapp:focus {
filter: brightness(90%);
}
/* Discord */ /* Discord */
.button.button-discord { .button.button-discord {
color: #FFFFFF; color: #ffffff;
background-color: #5865F2 } background-color: #5865f2;
}
.button.button-discord:hover, .button.button-discord:hover,
.button.button-discord:focus { .button.button-discord:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Facebook */ /* Facebook */
.button.button-faceb { .button.button-faceb {
color: #FFFFFF; color: #ffffff;
background-color: #1877f2 } background-color: #1877f2;
}
.button.button-faceb:hover, .button.button-faceb:hover,
.button.button-faceb:focus { .button.button-faceb:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Facebook Messenger */ /* Facebook Messenger */
.button.button-messenger { .button.button-messenger {
color: #FFFFFF; color: #ffffff;
background-image: linear-gradient(25deg,#0099FF, #5F5DFF,#A033FF, #C740CC, #FF5280, #FF7061) } background-image: linear-gradient(
25deg,
#0099ff,
#5f5dff,
#a033ff,
#c740cc,
#ff5280,
#ff7061
);
}
.button.button-messenger:hover, .button.button-messenger:hover,
.button.button-messenger:focus { .button.button-messenger:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Figma */ /* Figma */
.button.button-figma { .button.button-figma {
color: #FFFFFF; color: #ffffff;
background-color: #000000 } background-color: #000000;
}
.button.button-figma:hover, .button.button-figma:hover,
.button.button-figma:focus { .button.button-figma:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Github */ /* Github */
.button.button-github { .button.button-github {
color: #FFFFFF; color: #ffffff;
background-color: #000000 } background-color: #000000;
}
.button.button-github:hover, .button.button-github:hover,
.button.button-github:focus { .button.button-github:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Gitlab */ /* Gitlab */
.button.button-gitlab { .button.button-gitlab {
color: #ffffff; color: #ffffff;
background-color: #6151b2 } background-color: #6151b2;
}
.button.button-gitlab:hover, .button.button-gitlab:hover,
.button.button-gitlab:focus { .button.button-gitlab:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Goodreads */ /* Goodreads */
.button.button-goodreads { .button.button-goodreads {
color: #333333; color: #333333;
background-color: #F3F1E6 } background-color: #f3f1e6;
}
.button.button-goodreads:hover, .button.button-goodreads:hover,
.button.button-goodreads:focus { .button.button-goodreads:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Instagram */ /* Instagram */
.button.button-instagram { .button.button-instagram {
color: #FFFFFF; color: #ffffff;
background-image: linear-gradient(-135deg,#1400c8,#b900b4,#f50000) } background-image: linear-gradient(-135deg, #1400c8, #b900b4, #f50000);
}
.button.button-instagram:hover, .button.button-instagram:hover,
.button.button-instagram:focus { .button.button-instagram:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Kit */ /* Kit */
.button.button-kit { .button.button-kit {
color: #FFFFFF; color: #ffffff;
background-color: #000000 } background-color: #000000;
}
.button.button-kit:hover, .button.button-kit:hover,
.button.button-kit:focus { .button.button-kit:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* LinkedIn */ /* LinkedIn */
.button.button-linked { .button.button-linked {
color: #FFFFFF; color: #ffffff;
background-color: #2867B2 } background-color: #2867b2;
}
.button.button-linked:hover, .button.button-linked:hover,
.button.button-linked:focus { .button.button-linked:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Mastodon */ /* Mastodon */
.button.button-mastodon { .button.button-mastodon {
color: #FFFFFF; color: #ffffff;
background-color: #1F232B } background-color: #1f232b;
}
.button.button-mastodon:hover, .button.button-mastodon:hover,
.button.button-mastodon:focus { .button.button-mastodon:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Medium */ /* Medium */
.button.button-medium { .button.button-medium {
color: #FFFFFF; color: #ffffff;
background-color: #000000 } background-color: #000000;
}
.button.button-medium:hover, .button.button-medium:hover,
.button.button-medium:focus { .button.button-medium:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Pinterest */ /* Pinterest */
.button.button-pinterest { .button.button-pinterest {
color: #000000; color: #000000;
background-color: #FFE2EB } background-color: #ffe2eb;
}
.button.button-pinterest:hover, .button.button-pinterest:hover,
.button.button-pinterest:focus { .button.button-pinterest:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Producthunt */ /* Producthunt */
.button.button-producthunt { .button.button-producthunt {
color: #DA552F; color: #da552f;
border-style: solid; border-style: solid;
border-color: #DA552F; border-color: #da552f;
border-width: 2px; border-width: 2px;
background-color: #FFFFFF } background-color: #ffffff;
}
.button.button-producthunt:hover, .button.button-producthunt:hover,
.button.button-producthunt:focus { .button.button-producthunt:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Reddit */ /* Reddit */
.button.button-reddit { .button.button-reddit {
color: #000000; color: #000000;
background-color: #D7DFE2 } background-color: #d7dfe2;
}
.button.button-reddit:hover, .button.button-reddit:hover,
.button.button-reddit:focus { .button.button-reddit:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Skoob */ /* Skoob */
.button.button-skoob { .button.button-skoob {
color: #FFFFFF; color: #ffffff;
background-color: #3189C8 } background-color: #3189c8;
}
.button.button-skoob:hover, .button.button-skoob:hover,
.button.button-skoob:focus { .button.button-skoob:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Snapchat */ /* Snapchat */
.button.button-snapchat { .button.button-snapchat {
color: #000000; color: #000000;
background-color: #fffc00 } background-color: #fffc00;
}
.button.button-snapchat:hover, .button.button-snapchat:hover,
.button.button-snapchat:focus { .button.button-snapchat:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* SoundCloud */ /* SoundCloud */
.button.button-soundcloud { .button.button-soundcloud {
color: #FFFFFF; color: #ffffff;
background-color: #ff5500 } background-color: #ff5500;
}
.button.button-soundcloud:hover, .button.button-soundcloud:hover,
.button.button-soundcloud:focus { .button.button-soundcloud:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Spotify */ /* Spotify */
.button.button-spotify { .button.button-spotify {
color: #FFFFFF; color: #ffffff;
background-color: #000000 } background-color: #000000;
}
.button.button-spotify:hover, .button.button-spotify:hover,
.button.button-spotify:focus { .button.button-spotify:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Steam */ /* Steam */
.button.button-steam { .button.button-steam {
color: #FFFFFF; color: #ffffff;
background-color: #171a21 } background-color: #171a21;
}
.button.button-steam:hover, .button.button-steam:hover,
.button.button-steam:focus { .button.button-steam:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Telegram */ /* Telegram */
.button.button-telegram { .button.button-telegram {
color: #FFFFFF; color: #ffffff;
background-color: #3faee8 } background-color: #3faee8;
}
.button.button-telegram:hover, .button.button-telegram:hover,
.button.button-telegram:focus { .button.button-telegram:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* TikTok */ /* TikTok */
.button.button-tiktok { .button.button-tiktok {
color: #FFFFFF; color: #ffffff;
background-color: #000000 } background-color: #000000;
}
.button.button-tiktok:hover, .button.button-tiktok:hover,
.button.button-tiktok:focus { .button.button-tiktok:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Tumblr */ /* Tumblr */
.button.button-tumb { .button.button-tumb {
color: #FFFFFF; color: #ffffff;
background-color: #131313 } background-color: #131313;
}
.button.button-tumb:hover, .button.button-tumb:hover,
.button.button-tumb:focus { .button.button-tumb:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Twitch */ /* Twitch */
.button.button-twitch { .button.button-twitch {
color: #FFFFFF; color: #ffffff;
background-color: #9146ff } background-color: #9146ff;
}
.button.button-twitch:hover, .button.button-twitch:hover,
.button.button-twitch:focus { .button.button-twitch:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Twitter */ /* Twitter */
.button.button-twit { .button.button-twit {
color: #FFFFFF; color: #ffffff;
background-color: #1DA1F2 } background-color: #1da1f2;
}
.button.button-twit:hover, .button.button-twit:hover,
.button.button-twit:focus { .button.button-twit:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Vimeo */ /* Vimeo */
.button.button-vimeo { .button.button-vimeo {
color: #FFFFFF; color: #ffffff;
background-color: #1ab7ea } background-color: #1ab7ea;
}
.button.button-vimeo:hover, .button.button-vimeo:hover,
.button.button-vimeo:focus { .button.button-vimeo:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* PayPal */ /* PayPal */
.button.button-paypal { .button.button-paypal {
color: #FFFFFF; color: #ffffff;
background-color: #003087 } background-color: #003087;
}
.button.button-paypal:hover, .button.button-paypal:hover,
.button.button-paypal:focus { .button.button-paypal:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* YouTube */ /* YouTube */
.button.button-yt { .button.button-yt {
color: #FFFFFF; color: #ffffff;
background-color: #000000 } background-color: #000000;
}
.button.button-yt:hover, .button.button-yt:hover,
.button.button-yt:focus { .button.button-yt:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* WhatsApp */ /* WhatsApp */
.button.button-whatsapp { .button.button-whatsapp {
color: #FFFFFF; color: #ffffff;
background-color: #455A64 } background-color: #455a64;
}
.button.button-whatsapp:hover, .button.button-whatsapp:hover,
.button.button-whatsapp:focus { .button.button-whatsapp:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Wordpress */ /* Wordpress */
.button.button-wordpress { .button.button-wordpress {
color: #FFFFFF; color: #ffffff;
background-color: #21759b } background-color: #21759b;
}
.button.button-wordpress:hover, .button.button-wordpress:hover,
.button.button-wordpress:focus { .button.button-wordpress:focus {
filter: brightness(90%) } filter: brightness(90%);
}
/* Xing */ /* Xing */
.button.button-xing { .button.button-xing {
color: #FFFFFF; color: #ffffff;
background-color: #026466 } background-color: #026466;
}
.button.button-xing:hover, .button.button-xing:hover,
.button.button-xing:focus { .button.button-xing:focus {
filter: brightness(90%) } filter: brightness(90%);
}

View File

@ -0,0 +1,187 @@
/*
* littlelink V1
* https://littlelink.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/21/2019
*
* Built using:
*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/
/* Table of contents
- Grid
- Base Styles
- Typography
- Links
- Code
- Spacing
- Utilities
*
* You'll find the button css in css/brands.css.
*
*/
/* Grid
*/
.container {
position: relative;
width: 100%;
max-width: 600px;
text-align: center;
margin: 0 auto;
padding: 0 20px;
box-sizing: border-box;
}
.column {
position: center;
width: 100%;
float: center;
box-sizing: border-box;
}
/* For devices larger than 400px */
@media (min-width: 400px) {
.container {
width: 85%;
padding: 0;
}
}
/* For devices larger than 550px */
@media (min-width: 550px) {
.container {
width: 80%;
}
.column,
.columns {
margin-left: 0;
}
.column:first-child,
.columns:first-child {
margin-left: 0;
}
}
/* Base Styles
*/
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
font-size: 100%;
color-scheme: light dark;
}
body {
font-size: 18px;
line-height: 24px;
font-weight: 400;
font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial,
sans-serif;
}
/* Typography
*/
h1 {
margin-top: 0;
margin-bottom: 16px;
font-weight: 800;
}
h1 {
font-size: 24px;
line-height: 64px;
letter-spacing: 0;
}
/* Larger than phablet */
@media (min-width: 550px) {
h1 {
font-size: 48px;
line-height: 96px;
}
}
p {
margin-top: 0;
}
/* Links
*/
a {
color: #0085ff;
}
a:hover {
color: #0085ff;
}
/* Code
*/
code {
padding: 0.2rem 0.5rem;
margin: 0 0.2rem;
font-size: 90%;
white-space: nowrap;
background: #f1f1f1;
border: 1px solid #e1e1e1;
border-radius: 4px;
}
pre > code {
display: block;
padding: 1rem 1.5rem;
white-space: pre;
}
/* Spacing
*/
button,
.button {
margin-bottom: 1rem;
}
input,
textarea,
select,
fieldset {
margin-bottom: 1.5rem;
}
pre,
blockquote,
dl,
figure,
p,
ol {
margin-bottom: 2.5rem;
}
/* Utilities
*/
.u-full-width {
width: 100%;
box-sizing: border-box;
}
.u-max-full-width {
max-width: 100%;
box-sizing: border-box;
}
.u-pull-right {
float: right;
}
.u-pull-left {
float: left;
}
/* Misc
*/
hr {
margin-top: 3rem;
margin-bottom: 3.5rem;
border-width: 0;
border-top: 1px solid #e1e1e1;
}

View File

@ -15,7 +15,6 @@
* 12/29/2014 * 12/29/2014
*/ */
/* Table of contents /* Table of contents
- Grid - Grid
@ -30,7 +29,6 @@
* *
*/ */
/* Grid /* Grid
*/ */
.container { .container {
@ -40,34 +38,38 @@
text-align: center; text-align: center;
margin: 0 auto; margin: 0 auto;
padding: 0 20px; padding: 0 20px;
box-sizing: border-box; } box-sizing: border-box;
}
.column { .column {
position: center; position: center;
width: 100%; width: 100%;
float: center; float: center;
box-sizing: border-box; } box-sizing: border-box;
}
/* For devices larger than 400px */ /* For devices larger than 400px */
@media (min-width: 400px) { @media (min-width: 400px) {
.container { .container {
width: 85%; width: 85%;
padding: 0; } padding: 0;
}
} }
/* For devices larger than 550px */ /* For devices larger than 550px */
@media (min-width: 550px) { @media (min-width: 550px) {
.container { .container {
width: 80%; } width: 80%;
}
.column, .column,
.columns { .columns {
margin-left: 0; } margin-left: 0;
}
.column:first-child, .column:first-child,
.columns:first-child { .columns:first-child {
margin-left: 0; } margin-left: 0;
}
} }
/* Base Styles /* Base Styles
*/ */
/* NOTE /* NOTE
@ -75,90 +77,105 @@ html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */ are based on 10px sizing. So basically 1.5rem = 15px :) */
html { html {
font-size: 100%; } font-size: 100%;
color-scheme: dark;
}
body { body {
background-color: #292929;
font-size: 18px; font-size: 18px;
line-height: 24px; line-height: 24px;
font-weight: 400; font-weight: 400;
font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial,
color: #FFFFFF; } sans-serif;
}
/* Typography /* Typography
*/ */
h1 { h1 {
margin-top: 0; margin-top: 0;
margin-bottom: 16px; margin-bottom: 16px;
font-weight: 800; } font-weight: 800;
h1 { font-size:24px; line-height: 64px; letter-spacing: 0;} }
h1 {
font-size: 24px;
line-height: 64px;
letter-spacing: 0;
}
/* Larger than phablet */ /* Larger than phablet */
@media (min-width: 550px) { @media (min-width: 550px) {
h1 { font-size: 48px; line-height: 96px;} h1 {
font-size: 48px;
line-height: 96px;
}
} }
p { p {
margin-top: 0; } margin-top: 0;
}
/* Links /* Links
*/ */
a { a {
color: #0085FF; } color: #0085ff;
}
a:hover { a:hover {
color: #0085FF; } color: #0085ff;
}
/* Code /* Code
*/ */
code { code {
padding: .2rem .5rem; padding: 0.2rem 0.5rem;
margin: 0 .2rem; margin: 0 0.2rem;
font-size: 90%; font-size: 90%;
color: #000000;
white-space: nowrap; white-space: nowrap;
background: #F1F1F1; background: #f1f1f1;
border: 1px solid #E1E1E1; border: 1px solid #e1e1e1;
border-radius: 4px; } border-radius: 4px;
}
pre > code { pre > code {
display: block; display: block;
padding: 1rem 1.5rem; padding: 1rem 1.5rem;
white-space: pre; } white-space: pre;
}
/* Spacing /* Spacing
*/ */
button, button,
.button { .button {
margin-bottom: 1rem; } margin-bottom: 1rem;
}
input, input,
textarea, textarea,
select, select,
fieldset { fieldset {
margin-bottom: 1.5rem; } margin-bottom: 1.5rem;
}
pre, pre,
blockquote, blockquote,
dl, dl,
figure, figure,
p, p,
ol { ol {
margin-bottom: 2.5rem; } margin-bottom: 2.5rem;
}
/* Utilities /* Utilities
*/ */
.u-full-width { .u-full-width {
width: 100%; width: 100%;
box-sizing: border-box; } box-sizing: border-box;
}
.u-max-full-width { .u-max-full-width {
max-width: 100%; max-width: 100%;
box-sizing: border-box; } box-sizing: border-box;
}
.u-pull-right { .u-pull-right {
float: right; } float: right;
}
.u-pull-left { .u-pull-left {
float: left; } float: left;
}
/* Misc /* Misc
*/ */
@ -166,5 +183,5 @@ hr {
margin-top: 3rem; margin-top: 3rem;
margin-bottom: 3.5rem; margin-bottom: 3.5rem;
border-width: 0; border-width: 0;
border-top: 1px solid #E1E1E1; } border-top: 1px solid #e1e1e1;
}

View File

@ -15,7 +15,6 @@
* 12/29/2014 * 12/29/2014
*/ */
/* Table of contents /* Table of contents
- Grid - Grid
@ -30,7 +29,6 @@
* *
*/ */
/* Grid /* Grid
*/ */
.container { .container {
@ -40,122 +38,144 @@
text-align: center; text-align: center;
margin: 0 auto; margin: 0 auto;
padding: 0 20px; padding: 0 20px;
box-sizing: border-box; } box-sizing: border-box;
}
.column { .column {
position: center; position: center;
width: 100%; width: 100%;
float: center; float: center;
box-sizing: border-box; } box-sizing: border-box;
}
/* For devices larger than 400px */ /* For devices larger than 400px */
@media (min-width: 400px) { @media (min-width: 400px) {
.container { .container {
width: 85%; width: 85%;
padding: 0; } padding: 0;
}
} }
/* For devices larger than 550px */ /* For devices larger than 550px */
@media (min-width: 550px) { @media (min-width: 550px) {
.container { .container {
width: 80%; } width: 80%;
}
.column, .column,
.columns { .columns {
margin-left: 0; } margin-left: 0;
}
.column:first-child, .column:first-child,
.columns:first-child { .columns:first-child {
margin-left: 0; } margin-left: 0;
}
} }
/* Base Styles /* Base Styles
*/ */
/* NOTE /* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */ are based on 10px sizing. So basically 1.5rem = 15px :) */
html { html {
font-size: 100%; } font-size: 100%;
color-scheme: light;
}
body { body {
font-size: 18px; font-size: 18px;
line-height: 24px; line-height: 24px;
font-weight: 400; font-weight: 400;
font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial,
color: #222; } sans-serif;
}
/* Typography /* Typography
*/ */
h1 { h1 {
margin-top: 0; margin-top: 0;
margin-bottom: 16px; margin-bottom: 16px;
font-weight: 800; } font-weight: 800;
h1 { font-size:24px; line-height: 64px; letter-spacing: 0;} }
h1 {
font-size: 24px;
line-height: 64px;
letter-spacing: 0;
}
/* Larger than phablet */ /* Larger than phablet */
@media (min-width: 550px) { @media (min-width: 550px) {
h1 { font-size: 48px; line-height: 96px;} h1 {
font-size: 48px;
line-height: 96px;
}
} }
p { p {
margin-top: 0; } margin-top: 0;
}
/* Links /* Links
*/ */
a { a {
color: #0085FF; } color: #0085ff;
}
a:hover { a:hover {
color: #0085FF; } color: #0085ff;
}
/* Code /* Code
*/ */
code { code {
padding: .2rem .5rem; padding: 0.2rem 0.5rem;
margin: 0 .2rem; margin: 0 0.2rem;
font-size: 90%; font-size: 90%;
white-space: nowrap; white-space: nowrap;
background: #F1F1F1; background: #f1f1f1;
border: 1px solid #E1E1E1; border: 1px solid #e1e1e1;
border-radius: 4px; } border-radius: 4px;
}
pre > code { pre > code {
display: block; display: block;
padding: 1rem 1.5rem; padding: 1rem 1.5rem;
white-space: pre; } white-space: pre;
}
/* Spacing /* Spacing
*/ */
button, button,
.button { .button {
margin-bottom: 1rem; } margin-bottom: 1rem;
}
input, input,
textarea, textarea,
select, select,
fieldset { fieldset {
margin-bottom: 1.5rem; } margin-bottom: 1.5rem;
}
pre, pre,
blockquote, blockquote,
dl, dl,
figure, figure,
p, p,
ol { ol {
margin-bottom: 2.5rem; } margin-bottom: 2.5rem;
}
/* Utilities /* Utilities
*/ */
.u-full-width { .u-full-width {
width: 100%; width: 100%;
box-sizing: border-box; } box-sizing: border-box;
}
.u-max-full-width { .u-max-full-width {
max-width: 100%; max-width: 100%;
box-sizing: border-box; } box-sizing: border-box;
}
.u-pull-right { .u-pull-right {
float: right; } float: right;
}
.u-pull-left { .u-pull-left {
float: left; } float: left;
}
/* Misc /* Misc
*/ */
@ -163,5 +183,5 @@ hr {
margin-top: 3rem; margin-top: 3rem;
margin-bottom: 3.5rem; margin-bottom: 3.5rem;
border-width: 0; border-width: 0;
border-top: 1px solid #E1E1E1; } border-top: 1px solid #e1e1e1;
}

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<symbol id="RGB_BTC" viewBox="-23 -32 46.2 64">
<path class="st0" d="M13.9-0.7c5.1-1.4,9.2-5.5,9.2-11.4c0-6.5-4.9-10.7-11.7-11.9l1.1-5.6c0.2-1-0.4-2.1-1.5-2.3
c-0.1,0-0.3,0-0.4,0H3.5c-0.9,0-1.7,0.6-1.9,1.5l-1.3,6.1h-11.8c-0.7,0-1.3,0.5-1.4,1.1L-23,22.6c-0.2,0.8,0.3,1.6,1.1,1.7
c0.1,0,0.2,0,0.3,0h11.1l-1.1,5.2c-0.2,1.1,0.5,2.1,1.5,2.4c0.1,0,0.2,0,0.4,0h7.1c0.9,0,1.7-0.6,1.9-1.5l1.3-6.1h1.1
c11.5,0,18.8-6.3,18.8-14.4C20.6,5.4,18,1.3,13.9-0.7z M1.5,15.2h-11.7l2.6-11.7h9.6c4.7,0,7.6,2,7.6,5.5S6.5,15.2,1.5,15.2z
M5.5-5.1H-5.7l2.2-10h9.5c3.9,0,6.2,1.8,6.2,4.7C12.2-6.9,9.4-5.1,5.5-5.1z"/>
</symbol>
<g>
<defs>
<rect id="SVGID_1_" width="64" height="64"/>
</defs>
<clipPath id="SVGID_00000155857002718714438840000015121633964882569606_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<g style="clip-path:url(#SVGID_00000155857002718714438840000015121633964882569606_);">
<use xlink:href="#RGB_BTC" width="46.2" height="64" id="RGB_BTC-3" x="-23" y="-32" transform="matrix(1 0 0 1 32 32)" style="overflow:visible;"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<symbol id="RGB_Dollar" viewBox="-22.6 -32 45 64">
<path class="st0" d="M2.4-16.6c4.8,0,9.4,1.7,13,4.8c0.8,0.7,2,0.7,2.7-0.1l3.7-3.8c0.8-0.7,0.8-2,0-2.7c0,0-0.1-0.1-0.1-0.1
c-2.9-2.5-6.3-4.4-10-5.6l1.1-5.5c0.2-1.1-0.5-2.1-1.5-2.3c-0.1,0-0.3,0-0.4,0H3.8c-0.9,0-1.7,0.6-1.9,1.5l-1,4.9
c-9.6,0.5-17.7,5.2-17.7,15c0,8.4,6.7,12,13.8,14.6C3.7,6.6,7.3,7.5,7.3,11s-3.6,5.7-8.8,5.7c-5.1,0.1-10-1.8-13.7-5.4
c-0.8-0.7-2-0.7-2.7,0l-4,3.9c-0.8,0.7-0.8,2,0,2.7c0,0,0,0,0,0c3.3,3.1,7.3,5.3,11.6,6.4l-1.1,5.1c-0.2,1.1,0.5,2.1,1.6,2.4
c0.1,0,0.2,0,0.4,0h7.2c0.9,0,1.7-0.6,1.9-1.5l1-4.9c11.5-0.7,18.5-6.9,18.5-16c0-8.3-7-11.9-15.5-14.7c-4.9-1.8-9.1-3-9.1-6.6
S-1.5-16.6,2.4-16.6z"/>
</symbol>
<g>
<defs>
<rect id="SVGID_1_" width="64" height="64"/>
</defs>
<clipPath id="SVGID_00000031926049870734804350000017612823412807515052_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<g style="clip-path:url(#SVGID_00000031926049870734804350000017612823412807515052_);">
<use xlink:href="#RGB_Dollar" width="45" height="64" id="XMLID_00000003788443749446224530000008446952048098981045_" x="-22.6" y="-32" transform="matrix(1 0 0 1 32.0296 32.0148)" style="overflow:visible;"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<symbol id="RGB_Pound" viewBox="-27.1 -32 54.2 64">
<path class="st0" d="M8.4-19.5c3.7,0,7.1,2.1,8.8,5.3c0.6,0.9,1.8,1.1,2.7,0.5c0.1-0.1,0.2-0.1,0.2-0.2l6.4-6.2
c0.7-0.7,0.7-1.7,0.2-2.4C22.4-28.6,15.4-32.1,8-32c-12.4,0-23,7.9-23,21c0,1.8,0.2,3.6,0.6,5.4h-3.5c-0.9,0-1.7,0.6-1.9,1.4
l-1.5,6.9c-0.2,1,0.4,2,1.4,2.2c0.1,0,0.2,0,0.3,0h7.3l0.3,1.3c0.2,0.8,0.3,1.6,0.3,2.4c0,5.4-5.7,10.7-12.7,12.9
c-0.7,0.2-1.2,0.7-1.3,1.4l-1.5,6.8c-0.2,1.1,0.5,2,1.6,2.2c0.1,0,0.2,0,0.3,0h44c0.9,0,1.6-0.6,1.8-1.5l1.9-8.6
c0.2-1-0.4-2-1.4-2.2c-0.1,0-0.3,0-0.4-0.1H-2.6C0.2,17,1.8,10.2,1.3,5h11.6c0.9,0,1.7-0.6,1.9-1.5l1.5-6.8c0.2-1-0.5-2-1.5-2.2
c-0.1,0-0.3,0-0.4,0H-0.7C-0.8-6.8-0.9-8-0.9-9.1C-0.9-16.2,3.4-19.5,8.4-19.5z"/>
</symbol>
<g>
<defs>
<rect id="SVGID_1_" width="64" height="64"/>
</defs>
<clipPath id="SVGID_00000019671894740007034100000007078247132130599824_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<g style="clip-path:url(#SVGID_00000019671894740007034100000007078247132130599824_);">
<use xlink:href="#RGB_Pound" width="54.2" height="64" id="XMLID_00000067953885571418941060000005233370162096284561_" x="-27.1" y="-32" transform="matrix(1 0 0 1 32.0296 32.0148)" style="overflow:visible;"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1,5 +1,6 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<!-- Page Information <!-- Page Information
@ -17,17 +18,27 @@
--> -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800&display=swap" rel="stylesheet">
<!-- CSS <!-- CSS
--> -->
<link rel="stylesheet" href="css/normalize.css"> <link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton-light.css">
<!-- Themes:
Auto: css/skeleton-auto.css
Light: css/skeleton-light.css
Dark: css/skeleton-dark.css
-->
<link rel="stylesheet" href="css/skeleton-auto.css">
<link rel="stylesheet" href="css/brands.css"> <link rel="stylesheet" href="css/brands.css">
<!-- Favicon <!-- Favicon
--> -->
<link rel="icon" type="image/png" href="images/avatar.png"> <link rel="icon" type="image/png" href="images/avatar.png">
</head> </head>
<body> <body>
<!-- Primary Page Layout <!-- Primary Page Layout
@ -61,7 +72,7 @@
<h1>LittleLink</h1> <h1>LittleLink</h1>
<!-- Short Bio --> <!-- Short Bio -->
<p>LittleLink is an open source DIY alternative to services like <a href="https://linktr.ee" target="_blank" rel="noopener">Linktree</a> and <a href="https://many.link" target="_blank" rel="noopener">many.link</a>. LittleLink was built using <a href="http://www.getskeleton.com" target="_blank" rel="noopener">Skeleton</a>, a dead simple, responsive boilerplate—weve just created some branded buttons and stripped out the things you won't need. 😊</p> <p>LittleLink is an open source DIY alternative to services like <a href="https://linktr.ee" target="_blank" rel="noopener">Linktree</a> and <a href="https://many.link" target="_blank" rel="noopener">many.link</a>. LittleLink was built using <a href="http://www.getskeleton.com" target="_blank" rel="noopener">Skeleton</a>, a dead simple, responsive boilerplate—we've just created some branded buttons and stripped out the things you won't need. 😊</p>
<!-- <!--
@ -90,157 +101,210 @@
--> -->
<!-- Github --> <!-- Github -->
<a class="button button-github" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/github.svg" alt="GitHub Logo">GitHub</a> <a class="button button-github" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/github.svg" alt="GitHub Logo">GitHub</a>
<br> <br>
<!-- Twitter --> <!-- Twitter -->
<a class="button button-twit" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/twitter.svg" alt="Twitter Logo">Twitter</a> <a class="button button-twit" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/twitter.svg" alt="Twitter Logo">Twitter</a>
<br> <br>
<!-- Instagram --> <!-- Instagram -->
<a class="button button-instagram" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/instagram.svg" alt="Instagram Logo">Instagram</a> <a class="button button-instagram" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/instagram.svg" alt="Instagram Logo">Instagram</a>
<br> <br>
<!-- Facebook --> <!-- Facebook -->
<a class="button button-faceb" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/facebook.svg" alt="Facebook Logo">Find us on Facebook</a> <a class="button button-faceb" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/facebook.svg" alt="Facebook Logo">Find us on Facebook</a>
<br> <br>
<!-- Facebook Messenger --> <!-- Facebook Messenger -->
<a class="button button-messenger" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/messenger.svg" alt="Facebook Messenger Logo">Chat on Messenger</a> <a class="button button-messenger" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/messenger.svg" alt="Facebook Messenger Logo">Chat on Messenger</a>
<br> <br>
<!-- LinkedIn --> <!-- LinkedIn -->
<a class="button button-linked" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/linkedin.svg" alt="LinkedIn Logo">LinkedIn</a> <a class="button button-linked" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/linkedin.svg" alt="LinkedIn Logo">LinkedIn</a>
<br> <br>
<!-- YouTube --> <!-- YouTube -->
<a class="button button-yt" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/youtube.svg" alt="YouTube Logo">YouTube</a> <a class="button button-yt" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/youtube.svg" alt="YouTube Logo">YouTube</a>
<br> <br>
<!-- Discord --> <!-- Discord -->
<a class="button button-discord" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/discord.svg" alt="Discord Logo">Discord</a> <a class="button button-discord" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/discord.svg" alt="Discord Logo">Discord</a>
<br> <br>
<!-- Twitch --> <!-- Twitch -->
<a class="button button-twitch" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/twitch.svg" alt="Twitch Logo">Twitch</a> <a class="button button-twitch" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/twitch.svg" alt="Twitch Logo">Twitch</a>
<br> <br>
<!-- ProductHunt --> <!-- ProductHunt -->
<a class="button button-producthunt" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/producthunt.svg" alt="Product Hunt Logo">Product Hunt</a> <a class="button button-producthunt" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/producthunt.svg" alt="Product Hunt Logo">Product Hunt</a>
<br> <br>
<!-- Snapchat --> <!-- Snapchat -->
<a class="button button-snapchat" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/snapchat.svg" alt="Snapchat Logo">Snapchat</a> <a class="button button-snapchat" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/snapchat.svg" alt="Snapchat Logo">Snapchat</a>
<br> <br>
<!-- Spotify --> <!-- Spotify -->
<a class="button button-spotify" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/spotify.svg" alt="Spotify Logo">Spotify</a> <a class="button button-spotify" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/spotify.svg" alt="Spotify Logo">Spotify</a>
<br> <br>
<!-- Reddit --> <!-- Reddit -->
<a class="button button-reddit" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/reddit.svg" alt="Reddit Logo">Reddit</a> <a class="button button-reddit" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/reddit.svg" alt="Reddit Logo">Reddit</a>
<br> <br>
<!-- Mastodon --> <!-- Mastodon -->
<a class="button button-mastodon" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/mastodon.svg" alt="Mastodon Logo">Mastodon</a> <a class="button button-mastodon" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/mastodon.svg" alt="Mastodon Logo">Mastodon</a>
<br> <br>
<!-- Medium --> <!-- Medium -->
<a class="button button-medium" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/medium.svg" alt="Medium Logo">Medium</a> <a class="button button-medium" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/medium.svg" alt="Medium Logo">Medium</a>
<br> <br>
<!-- Pinterest --> <!-- Pinterest -->
<a class="button button-pinterest" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/pinterest.svg" alt="Pinterest Logo">Follow on Pinterest</a> <a class="button button-pinterest" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/pinterest.svg" alt="Pinterest Logo">Follow on Pinterest</a>
<br> <br>
<!-- TikTok --> <!-- TikTok -->
<a class="button button-tiktok" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/tiktok.svg" alt="TikTok Logo">TikTok</a> <a class="button button-tiktok" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/tiktok.svg" alt="TikTok Logo">TikTok</a>
<br> <br>
<!-- Email --> <!-- Email -->
<a class="button button-default" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/email.svg" alt="Email Icon">hello@littlelink.io</a> <a class="button button-default" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/email.svg" alt="Email Icon">hello@littlelink.io</a>
<br> <br>
<!-- Email Alternative --> <!-- Email Alternative -->
<a class="button button-default" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/email_alt.svg" alt="Email Icon">hello@littlelink.io</a> <a class="button button-default" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/email_alt.svg" alt="Email Icon">hello@littlelink.io</a>
<br> <br>
<!-- Blog --> <!-- Blog -->
<a class="button button-default" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/blog.svg" alt="Blog Icon">Blog</a> <a class="button button-default" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/blog.svg" alt="Blog Icon">Blog</a>
<br> <br>
<!-- SoundCloud --> <!-- SoundCloud -->
<a class="button button-soundcloud" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/soundcloud.svg" alt="SoundCloud Logo">SoundCloud</a> <a class="button button-soundcloud" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/soundcloud.svg" alt="SoundCloud Logo">SoundCloud</a>
<br> <br>
<!-- Figma --> <!-- Figma -->
<a class="button button-figma" href="#" target="_blank" rel="noopener" ><img class="icon" src="images/icons/figma.svg" alt="Figma Logo">Figma</a> <a class="button button-figma" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/figma.svg" alt="Figma Logo">Figma</a>
<br> <br>
<!-- Kit --> <!-- Kit -->
<a class="button button-kit" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/kit.svg" alt="Kit Logo">Kit</a> <a class="button button-kit" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/kit.svg" alt="Kit Logo">Kit</a>
<br> <br>
<!-- Telegram --> <!-- Telegram -->
<a class="button button-telegram" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/telegram.svg" alt="Telegram Logo">Telegram</a> <a class="button button-telegram" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/telegram.svg" alt="Telegram Logo">Telegram</a>
<br> <br>
<!-- Tumblr --> <!-- Tumblr -->
<a class="button button-tumb" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/tumblr.svg" alt="Tumblr Logo">Tumblr</a> <a class="button button-tumb" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/tumblr.svg" alt="Tumblr Logo">Tumblr</a>
<br> <br>
<!-- Steam --> <!-- Steam -->
<a class="button button-steam" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/steam.svg" alt="Steam Logo">Steam</a> <a class="button button-steam" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/steam.svg" alt="Steam Logo">Steam</a>
<br> <br>
<!-- Vimeo --> <!-- Vimeo -->
<a class="button button-vimeo" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/vimeo.svg" alt="Vimeo Logo">Vimeo</a> <a class="button button-vimeo" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/vimeo.svg" alt="Vimeo Logo">Vimeo</a>
<br> <br>
<!-- PayPal--> <!-- PayPal-->
<a class="button button-paypal" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/paypal.svg" alt="PayPal Logo">PayPal</a> <a class="button button-paypal" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/paypal.svg" alt="PayPal Logo">PayPal</a>
<br> <br>
<!-- WhatsApp --> <!-- WhatsApp -->
<a class="button button-whatsapp" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/whatsapp.svg" alt="WhatsApp Logo">WhatsApp</a> <a class="button button-whatsapp" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/whatsapp.svg" alt="WhatsApp Logo">WhatsApp</a>
<br> <br>
<!-- Wordpress --> <!-- Wordpress -->
<a class="button button-wordpress" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/wordpress.svg" alt="Wordpress Logo">Wordpress</a> <a class="button button-wordpress" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/wordpress.svg" alt="Wordpress Logo">Wordpress</a>
<br> <br>
<!-- Goodreads --> <!-- Goodreads -->
<a class="button button-goodreads" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/goodreads.svg" alt="Goodreads Logo">Goodreads</a> <a class="button button-goodreads" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/goodreads.svg" alt="Goodreads Logo">Goodreads</a>
<br> <br>
<!-- Skoob --> <!-- Skoob -->
<a class="button button-skoob" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/skoob.svg" alt="Skoob Logo">Skoob</a> <a class="button button-skoob" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/skoob.svg" alt="Skoob Logo">Skoob</a>
<br> <br>
<!-- Gitlab --> <!-- Gitlab -->
<a class="button button-gitlab" href="_blank" target="_blank" rel="noopener"><img class="icon" src="images/icons/gitlab.svg" alt="GitLab Logo">GitLab</a> <a class="button button-gitlab" href="_blank" target="_blank" rel="noopener"><img class="icon"
src="images/icons/gitlab.svg" alt="GitLab Logo">GitLab</a>
<br> <br>
<!-- XING --> <!-- XING -->
<a class="button button-xing" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/xing.svg" alt="xing Logo">Xing</a> <a class="button button-xing" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/xing.svg" alt="xing Logo">Xing</a>
<br> <br>
<!-- Bandcamp --> <!-- Bandcamp -->
<a class="button button-bandcamp" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/bandcamp.svg" alt="Bandcamp Logo">Bandcamp</a> <a class="button button-bandcamp" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/bandcamp.svg" alt="Bandcamp Logo">Bandcamp</a>
<br> <br>
<!-- Patreon --> <!-- Patreon -->
<a class="button button-patreon" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/patreon.svg" alt="Patreon Logo">Patreon</a> <a class="button button-patreon" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/patreon.svg" alt="Patreon Logo">Patreon</a>
<br> <br>
<!-- Signal --> <!-- Signal -->
<a class="button button-signal" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/signal.svg" alt="Signal Logo">Signal</a> <a class="button button-signal" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/signal.svg" alt="Signal Logo">Signal</a>
<br> <br>
<!-- Venmo --> <!-- Venmo -->
<a class="button button-venmo" href="#" target="_blank" rel="noopener"><img class="icon" src="images/icons/venmo.svg" alt="Venmo Logo">Venmo</a> <a class="button button-venmo" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/venmo.svg" alt="Venmo Logo">Venmo</a>
<br> <br>
<!-- Cash App Dollar -->
<a class="button button-cashapp" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/cashapp_dollar.svg" alt="Cash App Logo">Cash App Dollar</a>
<br>
<!-- Cash App Pound -->
<a class="button button-cashapp" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/cashapp_pound.svg" alt="Cash App Logo">Cash App Pound</a>
<br>
<!-- Cash App BTC -->
<a class="button button-cashapp" href="#" target="_blank" rel="noopener"><img class="icon"
src="images/icons/cashapp_btc.svg" alt="Cash App Logo">Cash App Bitcoin</a>
<br>
<br> <br>
<p>Build your own by forking <a href="https://littlelink.io" target="_blank" rel="noopener">LittleLink</a>.</p> <p>Build your own by forking <a href="https://littlelink.io" target="_blank" rel="noopener">LittleLink</a>.</p>
@ -248,7 +312,8 @@
</div> </div>
</div> </div>
<!-- End Document <!-- End Document
--> -->
</body> </body>
</html> </html>