2023-09-04 19:15:00 +02:00
|
|
|
|
/*
|
|
|
|
|
* littlelink.io
|
|
|
|
|
* 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
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Built using on:
|
|
|
|
|
* 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
|
|
|
|
|
––––––––––––––––––––––––––––––––––––––––––––––––––
|
|
|
|
|
|
|
|
|
|
- Buttons
|
|
|
|
|
- Brand Styles
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* Buttons
|
|
|
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
|
|
|
|
|
|
|
|
|
.button,
|
|
|
|
|
button {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
text-decoration: none;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
height: 100%;
|
2023-09-04 19:15:00 +02:00
|
|
|
|
text-align: center;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
width: 300px;
|
|
|
|
|
font-weight: 700;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
line-height: 20px;
|
|
|
|
|
padding: 14px 12px 12px 12px;
|
2023-09-04 19:15:00 +02:00
|
|
|
|
letter-spacing: 0.1px;
|
|
|
|
|
white-space: wrap;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
outline: none;
|
2023-09-04 19:15:00 +02:00
|
|
|
|
border-radius: 8px;
|
|
|
|
|
cursor: pointer;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
button:hover,
|
|
|
|
|
.button:focus {
|
2023-09-04 20:04:55 +02:00
|
|
|
|
color: #212121;
|
2023-09-04 19:15:00 +02:00
|
|
|
|
border-color: #888;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
outline: #7AB8FF solid 3px
|
2023-09-04 19:20:39 +02:00
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-primary {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
color: #fff;
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-primary:hover,
|
|
|
|
|
.button.button-primary:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
color: #fff;
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
|
|
|
|
/* Brand Icons
|
|
|
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
|
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
|
padding: 0px 8px 3.5px 0px;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Brand Styles
|
|
|
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
|
|
|
|
|
|
|
|
|
/* Default (this is great for your own brand color!) */
|
|
|
|
|
.button.button-default {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
color: #ffffff;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
background-color: #2457F5;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-default:hover,
|
|
|
|
|
.button.button-default:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:22:02 +02:00
|
|
|
|
/* Amazon */
|
|
|
|
|
.button.button-amazon {
|
|
|
|
|
color: #000000;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
|
border: 1px solid #212121;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
}
|
2023-09-04 19:22:02 +02:00
|
|
|
|
.button.button-amazon:hover,
|
|
|
|
|
.button.button-amazon:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* Amazon Music */
|
|
|
|
|
.button.button-amazon-music {
|
|
|
|
|
color: #000000;
|
|
|
|
|
background-color: #25D1DA;
|
|
|
|
|
}
|
|
|
|
|
.button.button-amazon-music:hover,
|
|
|
|
|
.button.button-amazon-music:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:22:02 +02:00
|
|
|
|
/* Apple App Store */
|
|
|
|
|
.button.button-appstore {
|
2023-09-04 20:04:55 +02:00
|
|
|
|
color: #FFFFFF;
|
2023-09-04 19:22:02 +02:00
|
|
|
|
background-color: #000000;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #FFFFFF;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
}
|
2023-09-04 19:22:02 +02:00
|
|
|
|
.button.button-appstore:hover,
|
|
|
|
|
.button.button-appstore:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:24:24 +02:00
|
|
|
|
/* Apple Music */
|
|
|
|
|
.button.button-apple-music {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #000000;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #FFFFFF;
|
2023-09-04 19:24:24 +02:00
|
|
|
|
}
|
|
|
|
|
.button.button-apple-music:hover,
|
|
|
|
|
.button.button-apple-music:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Apple Music Alt */
|
|
|
|
|
.button.button-apple-music-alt {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-image: linear-gradient(to bottom, #FB5C74, #FA233B);
|
|
|
|
|
}
|
|
|
|
|
.button.button-apple-music-alt:hover,
|
|
|
|
|
.button.button-apple-music-alt:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Apple Podcasts */
|
|
|
|
|
.button.button-apple-podcasts {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #000000;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #FFFFFF;
|
2023-09-04 19:24:24 +02:00
|
|
|
|
}
|
|
|
|
|
.button.button-apple-podcasts:hover,
|
|
|
|
|
.button.button-apple-podcasts:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Apple Podcasts Alt */
|
|
|
|
|
.button.button-apple-podcasts-alt {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-image: linear-gradient(to bottom, #F452FF, #832BC1);
|
|
|
|
|
}
|
|
|
|
|
.button.button-apple-podcasts-alt:hover,
|
|
|
|
|
.button.button-apple-podcasts-alt:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* ArtStation */
|
|
|
|
|
.button.button-artstation {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #18181C;
|
|
|
|
|
border: 1px solid #FFFFFF;
|
|
|
|
|
}
|
|
|
|
|
.button.button-artstation:hover,
|
|
|
|
|
.button.button-artstation:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:22:02 +02:00
|
|
|
|
/* Bandcamp */
|
|
|
|
|
.button.button-bandcamp {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
color: #ffffff;
|
2023-09-04 19:22:02 +02:00
|
|
|
|
background-color: #1d9fc3;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
}
|
2023-09-04 19:22:02 +02:00
|
|
|
|
.button.button-bandcamp:hover,
|
|
|
|
|
.button.button-bandcamp:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* Behance */
|
|
|
|
|
.button.button-behance {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #0057FF;
|
|
|
|
|
}
|
|
|
|
|
.button.button-behance:hover,
|
|
|
|
|
.button.button-behance:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Bluesky */
|
|
|
|
|
.button.button-bluesky {
|
|
|
|
|
color: #000000;
|
|
|
|
|
background-color: #F3F9FF;
|
|
|
|
|
border: 1px solid #212121;
|
|
|
|
|
}
|
|
|
|
|
.button.button-bluesky:hover,
|
|
|
|
|
.button.button-bluesky:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:22:02 +02:00
|
|
|
|
/* Buy Me a Coffee */
|
|
|
|
|
.button.button-coffee {
|
2023-09-04 20:04:55 +02:00
|
|
|
|
color: #000000;
|
2023-09-04 19:22:02 +02:00
|
|
|
|
background-color: #ffdd00;
|
|
|
|
|
}
|
|
|
|
|
.button.button-coffee:hover,
|
|
|
|
|
.button.button-coffee:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* Cal.com */
|
|
|
|
|
.button.button-cal {
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
background-color: #292929;
|
|
|
|
|
border: 1px solid #FFFFFF;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
}
|
2023-09-04 20:04:55 +02:00
|
|
|
|
.button.button-cal:hover,
|
|
|
|
|
.button.button-cal:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Calendly */
|
|
|
|
|
.button.button-calendly {
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
background-color: #006BFF;
|
|
|
|
|
}
|
|
|
|
|
.button.button-calendly:hover,
|
|
|
|
|
.button.button-calendly:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Cash App */
|
2023-09-04 20:04:55 +02:00
|
|
|
|
.button.button-cash-app {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-image: linear-gradient(to bottom, #00d64b, #00c244);
|
|
|
|
|
}
|
2023-09-04 20:04:55 +02:00
|
|
|
|
.button.button-cash-app:hover,
|
|
|
|
|
.button.button-cash-app:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Clubhouse */
|
|
|
|
|
.button.button-clubhouse {
|
|
|
|
|
color: #1F1F1A;
|
|
|
|
|
background-color: #F1EFE3;
|
|
|
|
|
border: 1px solid #212121;
|
|
|
|
|
}
|
|
|
|
|
.button.button-clubhouse:hover,
|
|
|
|
|
.button.button-clubhouse:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
2023-09-04 19:22:02 +02:00
|
|
|
|
/* dev.to */
|
|
|
|
|
.button.button-dev-to {
|
|
|
|
|
color: #000000;
|
|
|
|
|
background-color: #f5f5f5;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #212121;
|
2023-09-04 19:22:02 +02:00
|
|
|
|
}
|
|
|
|
|
.button.button-dev-to:hover,
|
|
|
|
|
.button.button-dev-to:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:15:00 +02:00
|
|
|
|
/* Discord */
|
|
|
|
|
.button.button-discord {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #5865f2;
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-discord:hover,
|
|
|
|
|
.button.button-discord:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* Dribbble */
|
|
|
|
|
.button.button-dribbble {
|
|
|
|
|
color: #000000;
|
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
|
border: 1px solid #212121;
|
|
|
|
|
}
|
|
|
|
|
.button.button-dribbble:hover,
|
|
|
|
|
.button.button-dribbble:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:22:02 +02:00
|
|
|
|
/* Etsy */
|
|
|
|
|
.button.button-etsy {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #F45800;
|
|
|
|
|
}
|
|
|
|
|
.button.button-etsy:hover,
|
|
|
|
|
.button.button-etsy:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:15:00 +02:00
|
|
|
|
/* Facebook */
|
2023-09-04 19:20:39 +02:00
|
|
|
|
.button.button-faceb {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #1877f2;
|
|
|
|
|
}
|
|
|
|
|
.button.button-faceb:hover,
|
|
|
|
|
.button.button-faceb:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
|
|
|
|
/* Facebook Messenger */
|
|
|
|
|
.button.button-messenger {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-image: linear-gradient(
|
|
|
|
|
25deg,
|
|
|
|
|
#0099ff,
|
|
|
|
|
#5f5dff,
|
|
|
|
|
#a033ff,
|
|
|
|
|
#c740cc,
|
|
|
|
|
#ff5280,
|
|
|
|
|
#ff7061
|
|
|
|
|
);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-messenger:hover,
|
|
|
|
|
.button.button-messenger:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
|
|
|
|
/* Figma */
|
|
|
|
|
.button.button-figma {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #000000;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #FFFFFF;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-figma:hover,
|
|
|
|
|
.button.button-figma:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* Fiverr */
|
|
|
|
|
.button.button-fiverr {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #1DBF73;
|
|
|
|
|
}
|
|
|
|
|
.button.button-fiverr:hover,
|
|
|
|
|
.button.button-fiverr:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:22:02 +02:00
|
|
|
|
/* Flickr */
|
|
|
|
|
.button.button-flickr {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #000000;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #FFFFFF;
|
2023-09-04 19:22:02 +02:00
|
|
|
|
}
|
|
|
|
|
.button.button-flickr:hover,
|
|
|
|
|
.button.button-flickr:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* Gitea */
|
|
|
|
|
.button.button-gitea {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #105521;
|
|
|
|
|
border: 1px solid #212121;
|
|
|
|
|
}
|
|
|
|
|
.button.button-gitea:hover,
|
|
|
|
|
.button.button-gitea:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:24:24 +02:00
|
|
|
|
/* GitHub */
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-github {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #000000;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #FFFFFF;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-github:hover,
|
|
|
|
|
.button.button-github:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* GitLab */
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-gitlab {
|
|
|
|
|
color: #ffffff;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
background-color: #6151b2;
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-gitlab:hover,
|
|
|
|
|
.button.button-gitlab:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* GoFundMe */
|
|
|
|
|
.button.button-gofundme {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #02A95C;
|
|
|
|
|
}
|
|
|
|
|
.button.button-gofundme:hover,
|
|
|
|
|
.button.button-gofundme:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:15:00 +02:00
|
|
|
|
/* Goodreads */
|
|
|
|
|
.button.button-goodreads {
|
|
|
|
|
color: #333333;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
background-color: #f3f1e6;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #212121;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-goodreads:hover,
|
|
|
|
|
.button.button-goodreads:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* Google Black */
|
|
|
|
|
.button.button-google-black {
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
background-color: #000000;
|
|
|
|
|
border: 1px solid #FFFFFF;
|
|
|
|
|
}
|
|
|
|
|
.button.button-google-black:hover,
|
|
|
|
|
.button.button-google-black:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:22:02 +02:00
|
|
|
|
/* Google Play Store */
|
|
|
|
|
.button.button-playstore {
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
background-color: #000000;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #FFFFFF;
|
2023-09-04 19:22:02 +02:00
|
|
|
|
}
|
|
|
|
|
.button.button-playstore:hover,
|
|
|
|
|
.button.button-playstore:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:24:24 +02:00
|
|
|
|
/* Google Podcasts */
|
|
|
|
|
.button.button-google-podcasts {
|
|
|
|
|
color: #000000;
|
|
|
|
|
background-color: #FFFFFF;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #212121;
|
2023-09-04 19:24:24 +02:00
|
|
|
|
}
|
|
|
|
|
.button.button-google-podcasts:hover,
|
|
|
|
|
.button.button-google-podcasts:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Google Scholar */
|
|
|
|
|
.button.button-google-scholar {
|
|
|
|
|
color: #000000;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
|
border: 1px solid #212121;
|
2023-09-04 19:24:24 +02:00
|
|
|
|
}
|
|
|
|
|
.button.button-google-scholar:hover,
|
|
|
|
|
.button.button-google-scholar:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* Guilded */
|
|
|
|
|
.button.button-guilded {
|
|
|
|
|
color: #000000;
|
|
|
|
|
background-color: #F5C400;
|
|
|
|
|
}
|
|
|
|
|
.button.button-guilded:hover,
|
|
|
|
|
.button.button-guilded:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:24:24 +02:00
|
|
|
|
/* Hashnode */
|
|
|
|
|
.button.button-hashnode {
|
|
|
|
|
color: #000000;
|
|
|
|
|
background-color: #ffffff;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #212121;
|
2023-09-04 19:24:24 +02:00
|
|
|
|
}
|
|
|
|
|
.button.button-hashnode:hover,
|
|
|
|
|
.button.button-hashnode:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:15:00 +02:00
|
|
|
|
/* Instagram */
|
|
|
|
|
.button.button-instagram {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-image: linear-gradient(-135deg, #1400c8, #b900b4, #f50000);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-instagram:hover,
|
|
|
|
|
.button.button-instagram:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* Kick */
|
|
|
|
|
.button.button-kick {
|
|
|
|
|
background-color:#000000;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
border: 1px solid #ffffff;
|
|
|
|
|
}
|
|
|
|
|
.button.button-kick:hover {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Kick Alt */
|
|
|
|
|
.button.button-kick-alt {
|
|
|
|
|
background-color:#01e701;
|
|
|
|
|
color: #000;
|
|
|
|
|
}
|
|
|
|
|
.button.button-kick-alt:hover {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Kickstarter */
|
2023-09-04 19:22:02 +02:00
|
|
|
|
.button.button-kickstarter {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #05ce78;
|
|
|
|
|
}
|
|
|
|
|
.button.button-kickstarter:hover,
|
|
|
|
|
.button.button-kickstarter:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:15:00 +02:00
|
|
|
|
/* Kit */
|
|
|
|
|
.button.button-kit {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #000000;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #FFFFFF;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-kit:hover,
|
|
|
|
|
.button.button-kit:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
2023-09-04 19:24:24 +02:00
|
|
|
|
/* Ko-fi */
|
|
|
|
|
.button.button-ko-fi {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #13C3FF;
|
|
|
|
|
}
|
|
|
|
|
.button.button-ko-fi:hover,
|
|
|
|
|
.button.button-ko-fi:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* Last.fm */
|
|
|
|
|
.button.button-last-fm {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #D51007;
|
|
|
|
|
}
|
|
|
|
|
.button.button-last-fm:hover,
|
|
|
|
|
.button.button-last-fm:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:24:24 +02:00
|
|
|
|
/* Letterboxd */
|
|
|
|
|
.button.button-letterboxd {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #2c3440;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #FFFFFF;
|
2023-09-04 19:24:24 +02:00
|
|
|
|
}
|
|
|
|
|
.button.button-letterboxd:hover,
|
|
|
|
|
.button.button-letterboxd:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* Line */
|
|
|
|
|
.button.button-line {
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
background-color: #06C755;
|
|
|
|
|
}
|
|
|
|
|
.button.button-line:hover,
|
|
|
|
|
.button.button-line:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2023-09-04 19:15:00 +02:00
|
|
|
|
/* LinkedIn */
|
2023-09-04 19:20:39 +02:00
|
|
|
|
.button.button-linked {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #2867b2;
|
|
|
|
|
}
|
|
|
|
|
.button.button-linked:hover,
|
|
|
|
|
.button.button-linked:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* Mailchimp */
|
|
|
|
|
.button.button-mailchimp {
|
|
|
|
|
color: #000000;
|
|
|
|
|
background-color: #FFE01B;
|
|
|
|
|
}
|
|
|
|
|
.button.button-mailchimp:hover,
|
|
|
|
|
.button.button-mailchimp:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:15:00 +02:00
|
|
|
|
/* Mastodon */
|
|
|
|
|
.button.button-mastodon {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
color: #ffffff;
|
2023-09-04 19:24:24 +02:00
|
|
|
|
background-color: #17063B;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #FFFFFF;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-mastodon:hover,
|
|
|
|
|
.button.button-mastodon:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
|
|
|
|
/* Medium */
|
|
|
|
|
.button.button-medium {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #000000;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #FFFFFF;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-medium:hover,
|
|
|
|
|
.button.button-medium:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* NGL */
|
|
|
|
|
.button.button-ngl {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-image: linear-gradient(-45deg, #ff8d10, #ec1187);
|
|
|
|
|
}
|
|
|
|
|
.button.button-ngl:hover,
|
|
|
|
|
.button.button-ngl:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:22:02 +02:00
|
|
|
|
/* Notion */
|
|
|
|
|
.button.button-notion {
|
|
|
|
|
color: #000000;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #212121;
|
2023-09-04 19:22:02 +02:00
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
.button.button-notion:hover,
|
|
|
|
|
.button.button-notion:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* OnlyFans */
|
|
|
|
|
.button.button-onlyfans {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #00AEEF;
|
|
|
|
|
}
|
|
|
|
|
.button.button-onlyfans:hover,
|
|
|
|
|
.button.button-onlyfans:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Patreon */
|
|
|
|
|
.button.button-patreon {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #ff424d;
|
|
|
|
|
}
|
|
|
|
|
.button.button-patreon:hover,
|
|
|
|
|
.button.button-patreon:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* PayPal */
|
|
|
|
|
.button.button-paypal {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #003087;
|
|
|
|
|
}
|
|
|
|
|
.button.button-paypal:hover,
|
|
|
|
|
.button.button-paypal:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:15:00 +02:00
|
|
|
|
/* Pinterest */
|
|
|
|
|
.button.button-pinterest {
|
|
|
|
|
color: #000000;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
background-color: #ffe2eb;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #212121;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-pinterest:hover,
|
|
|
|
|
.button.button-pinterest:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
2023-09-04 19:24:24 +02:00
|
|
|
|
/* Post.news */
|
|
|
|
|
.button.button-post-news {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #678BFF;
|
|
|
|
|
}
|
|
|
|
|
.button.button-post-news:hover,
|
|
|
|
|
.button.button-post-news:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* Product Hunt */
|
|
|
|
|
.button.button-product-hunt {
|
|
|
|
|
color: #000000;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
background-color: #ffffff;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #212121;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-producthunt:hover,
|
|
|
|
|
.button.button-producthunt:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* Read.cv */
|
|
|
|
|
.button.button-read-cv {
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
background-color: #000000;
|
|
|
|
|
border: 1px solid #FFFFFF;
|
|
|
|
|
}
|
|
|
|
|
.button.button-read-cv:hover,
|
|
|
|
|
.button.button-read-cv:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:24:24 +02:00
|
|
|
|
/* Redbubble */
|
|
|
|
|
.button.button-redbubble {
|
|
|
|
|
color: #e41321;
|
|
|
|
|
background-color: #ffffff;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #212121;
|
2023-09-04 19:24:24 +02:00
|
|
|
|
}
|
|
|
|
|
.button.button-redbubble:hover,
|
|
|
|
|
.button.button-redbubble:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:15:00 +02:00
|
|
|
|
/* Reddit */
|
|
|
|
|
.button.button-reddit {
|
|
|
|
|
color: #000000;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
background-color: #d7dfe2;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #212121;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-reddit:hover,
|
|
|
|
|
.button.button-reddit:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* Shop */
|
|
|
|
|
.button.button-shop {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #5A31F4;
|
|
|
|
|
}
|
|
|
|
|
.button.button-shop:hover,
|
|
|
|
|
.button.button-shop:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:22:02 +02:00
|
|
|
|
/* Signal */
|
|
|
|
|
.button.button-signal {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #3a76f0;
|
|
|
|
|
}
|
|
|
|
|
.button.button-signal:hover,
|
|
|
|
|
.button.button-signal:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:15:00 +02:00
|
|
|
|
/* Skoob */
|
|
|
|
|
.button.button-skoob {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #3189c8;
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-skoob:hover,
|
|
|
|
|
.button.button-skoob:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* Slack */
|
|
|
|
|
.button.button-slack {
|
|
|
|
|
color: #000000;
|
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
|
border: 1px solid #212121;
|
|
|
|
|
}
|
|
|
|
|
.button.button-slack:hover,
|
|
|
|
|
.button.button-slack:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2023-09-04 19:15:00 +02:00
|
|
|
|
/* Snapchat */
|
|
|
|
|
.button.button-snapchat {
|
|
|
|
|
color: #000000;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
background-color: #fffc00;
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-snapchat:hover,
|
|
|
|
|
.button.button-snapchat:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
|
|
|
|
/* SoundCloud */
|
|
|
|
|
.button.button-soundcloud {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #ff5500;
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-soundcloud:hover,
|
|
|
|
|
.button.button-soundcloud:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
|
|
|
|
/* Spotify */
|
|
|
|
|
.button.button-spotify {
|
2023-09-04 19:23:13 +02:00
|
|
|
|
color: #191414;
|
|
|
|
|
background-color: #1db954;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-spotify:hover,
|
|
|
|
|
.button.button-spotify:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
2023-09-04 19:24:24 +02:00
|
|
|
|
/* Spotify Alt */
|
|
|
|
|
.button.button-spotify-alt {
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
background-color: #191414;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #FFFFFF;
|
2023-09-04 19:24:24 +02:00
|
|
|
|
}
|
|
|
|
|
.button.button-spotify-alt:hover,
|
|
|
|
|
.button.button-spotify-alt:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* Square */
|
|
|
|
|
.button.button-square {
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
background-color: #006AFF;
|
|
|
|
|
}
|
|
|
|
|
.button.button-square:hover,
|
|
|
|
|
.button.button-square:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:15:00 +02:00
|
|
|
|
/* Steam */
|
|
|
|
|
.button.button-steam {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
color: #ffffff;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
background-image: linear-gradient(90deg, #08BBFF, #2B75FF);
|
2023-09-04 19:20:39 +02:00
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-steam:hover,
|
|
|
|
|
.button.button-steam:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:23:13 +02:00
|
|
|
|
/* Strava */
|
|
|
|
|
.button.button-strava {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #fc5200;
|
|
|
|
|
}
|
|
|
|
|
.button.button-strava:hover,
|
|
|
|
|
.button.button-strava:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:24:24 +02:00
|
|
|
|
/* Substack */
|
|
|
|
|
.button.button-substack {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #FF6719;
|
|
|
|
|
}
|
|
|
|
|
.button.button-substack:hover,
|
|
|
|
|
.button.button-substack:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:15:00 +02:00
|
|
|
|
/* Telegram */
|
|
|
|
|
.button.button-telegram {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #3faee8;
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-telegram:hover,
|
|
|
|
|
.button.button-telegram:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* Threads */
|
|
|
|
|
.button.button-threads {
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
background-color: #000000;
|
|
|
|
|
border: 1px solid #FFFFFF;
|
|
|
|
|
}
|
|
|
|
|
.button.button-threads:hover,
|
|
|
|
|
.button.button-threads:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:22:02 +02:00
|
|
|
|
/* Threema */
|
|
|
|
|
.button.button-threema {
|
|
|
|
|
color: #000000;
|
|
|
|
|
background-color: #3fe669;
|
|
|
|
|
}
|
|
|
|
|
.button.button-threema:hover,
|
|
|
|
|
.button.button-threema:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:15:00 +02:00
|
|
|
|
/* TikTok */
|
|
|
|
|
.button.button-tiktok {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #000000;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #FFFFFF;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-tiktok:hover,
|
|
|
|
|
.button.button-tiktok:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
2023-09-04 19:22:02 +02:00
|
|
|
|
/* Trello */
|
|
|
|
|
.button.button-trello {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #0065ff;
|
|
|
|
|
}
|
|
|
|
|
.button.button-trello:hover,
|
|
|
|
|
.button.button-trello:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:15:00 +02:00
|
|
|
|
/* Tumblr */
|
2023-09-04 19:20:39 +02:00
|
|
|
|
.button.button-tumb {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #131313;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #FFFFFF;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
}
|
|
|
|
|
.button.button-tumb:hover,
|
|
|
|
|
.button.button-tumb:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
|
|
|
|
/* Twitch */
|
|
|
|
|
.button.button-twitch {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #9146ff;
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-twitch:hover,
|
|
|
|
|
.button.button-twitch:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* Twitter (archiving soon, see 'X') */
|
2023-09-04 19:20:39 +02:00
|
|
|
|
.button.button-twit {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #1da1f2;
|
|
|
|
|
}
|
|
|
|
|
.button.button-twit:hover,
|
|
|
|
|
.button.button-twit:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* Unsplash */
|
|
|
|
|
.button.button-unsplash {
|
|
|
|
|
color: #000000;
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
border: 1px solid #212121;
|
|
|
|
|
}
|
|
|
|
|
.button.button-unsplash:hover,
|
|
|
|
|
.button.button-unsplash:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:23:13 +02:00
|
|
|
|
/* Untappd */
|
|
|
|
|
.button.button-untappd {
|
2023-09-04 20:04:55 +02:00
|
|
|
|
color: #000000;
|
2023-09-04 19:23:13 +02:00
|
|
|
|
background-color: #ffc000;
|
|
|
|
|
}
|
|
|
|
|
.button.button-untappd:hover,
|
|
|
|
|
.button.button-untappd:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* Upwork */
|
|
|
|
|
.button.button-upwork {
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
background-color: #14A800;
|
|
|
|
|
}
|
|
|
|
|
.button.button-upwork:hover,
|
|
|
|
|
.button.button-upwork:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:24:24 +02:00
|
|
|
|
/* Venmo */
|
|
|
|
|
.button.button-venmo {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #008CFF;
|
|
|
|
|
}
|
|
|
|
|
.button.button-venmo:hover,
|
|
|
|
|
.button.button-venmo:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:22:02 +02:00
|
|
|
|
/* Vimeo */
|
|
|
|
|
.button.button-vimeo {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
color: #ffffff;
|
2023-09-04 19:22:02 +02:00
|
|
|
|
background-color: #1ab7ea;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
}
|
2023-09-04 19:22:02 +02:00
|
|
|
|
.button.button-vimeo:hover,
|
|
|
|
|
.button.button-vimeo:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
2023-09-04 19:22:02 +02:00
|
|
|
|
/* VRChat */
|
|
|
|
|
.button.button-vrchat {
|
|
|
|
|
color: #000000;
|
|
|
|
|
background-color: #ffffff;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid black;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
}
|
2023-09-04 19:22:02 +02:00
|
|
|
|
.button.button-vrchat:hover,
|
|
|
|
|
.button.button-vrchat:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* VSCO */
|
|
|
|
|
.button.button-vsco {
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
background-color: #000000;
|
|
|
|
|
border: 1px solid #FFFFFF;
|
|
|
|
|
}
|
|
|
|
|
.button.button-vsco:hover,
|
|
|
|
|
.button.button-vsco:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:20:39 +02:00
|
|
|
|
/* Website */
|
|
|
|
|
.button.button-web {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #000000;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #FFFFFF;
|
2023-09-04 19:20:39 +02:00
|
|
|
|
}
|
|
|
|
|
.button.button-web:hover,
|
|
|
|
|
.button.button-web:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
|
|
|
|
/* WhatsApp */
|
|
|
|
|
.button.button-whatsapp {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #455a64;
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-whatsapp:hover,
|
|
|
|
|
.button.button-whatsapp:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
|
|
|
|
/* Wordpress */
|
|
|
|
|
.button.button-wordpress {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #21759b;
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-wordpress:hover,
|
|
|
|
|
.button.button-wordpress:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* X */
|
|
|
|
|
.button.button-x {
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
background-color: #000000;
|
|
|
|
|
border: 1px solid #FFFFFF;
|
|
|
|
|
}
|
|
|
|
|
.button.button-x:hover,
|
|
|
|
|
.button.button-x:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 19:15:00 +02:00
|
|
|
|
/* Xing */
|
|
|
|
|
.button.button-xing {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #026466;
|
|
|
|
|
}
|
2023-09-04 19:15:00 +02:00
|
|
|
|
.button.button-xing:hover,
|
|
|
|
|
.button.button-xing:focus {
|
2023-09-04 19:20:39 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 19:22:02 +02:00
|
|
|
|
|
|
|
|
|
/* YouTube */
|
|
|
|
|
.button.button-yt {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #000000;
|
2023-09-04 20:04:55 +02:00
|
|
|
|
border: 1px solid #FFFFFF;
|
2023-09-04 19:22:02 +02:00
|
|
|
|
}
|
|
|
|
|
.button.button-yt:hover,
|
|
|
|
|
.button.button-yt:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 20:04:55 +02:00
|
|
|
|
/* Zoom */
|
|
|
|
|
.button.button-zoom {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #0B5CFF;
|
2023-09-04 19:22:02 +02:00
|
|
|
|
}
|
2023-09-04 20:04:55 +02:00
|
|
|
|
.button.button-zoom:hover,
|
|
|
|
|
.button.button-zoom:focus {
|
2023-09-04 19:22:02 +02:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
2023-09-04 20:04:55 +02:00
|
|
|
|
|