2022-08-06 11:02:13 -04: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;
|
|
|
|
|
height: 48px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
width: 300px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
line-height: 48px;
|
|
|
|
|
letter-spacing: 0.1px;
|
|
|
|
|
white-space: wrap;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
button:hover,
|
|
|
|
|
.button:focus {
|
|
|
|
|
color: #333;
|
|
|
|
|
border-color: #888;
|
|
|
|
|
outline: 0;
|
|
|
|
|
}
|
|
|
|
|
.button.button-primary {
|
|
|
|
|
color: #fff;
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
.button.button-primary:hover,
|
|
|
|
|
.button.button-primary:focus {
|
|
|
|
|
color: #fff;
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Brand Icons
|
|
|
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
|
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
|
padding: 0px 8px 3.5px 0px;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Brand Styles (we recommend adding these in alphabetical order)
|
|
|
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
|
|
|
|
|
|
|
|
|
/* Extended (this is great for your own brand color!) */
|
|
|
|
|
.button.button-extended {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #0085ff;
|
|
|
|
|
}
|
|
|
|
|
.button.button-extended:hover,
|
|
|
|
|
.button.button-extended:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-20 09:42:40 +01:00
|
|
|
|
/* Behance */
|
|
|
|
|
.button.button-behance {
|
|
|
|
|
color: #1769ff;
|
|
|
|
|
background-color: #ffff;
|
|
|
|
|
}
|
2022-08-20 09:53:02 +01:00
|
|
|
|
.button.button-behance:hover,
|
|
|
|
|
.button.button-behance:focus {
|
2022-08-20 09:42:40 +01:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-20 09:45:46 +01:00
|
|
|
|
/* Codepen */
|
|
|
|
|
.button.button-codepen {
|
|
|
|
|
color: #0000;
|
|
|
|
|
background-color: #ffff;
|
|
|
|
|
}
|
2022-08-20 09:53:02 +01:00
|
|
|
|
.button.button-codepen:hover,
|
|
|
|
|
.button.button-codepen:focus {
|
2022-08-20 09:45:46 +01:00
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-07 10:40:36 -04:00
|
|
|
|
/* Devpost */
|
|
|
|
|
.button.button-devpost {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #003E54;
|
|
|
|
|
}
|
|
|
|
|
.button.button-devpost:hover,
|
|
|
|
|
.button.button-devpost:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-18 20:05:30 +01:00
|
|
|
|
/* Distiller */
|
|
|
|
|
.button.button-dist {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #ed5c47;
|
|
|
|
|
}
|
|
|
|
|
.button.button-dist:hover,
|
|
|
|
|
.button.button-dist:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-20 09:53:02 +01:00
|
|
|
|
/* Hackerrank */
|
|
|
|
|
.button.button-hackerrank {
|
|
|
|
|
color: #0000;
|
|
|
|
|
background-color: #ffff;
|
|
|
|
|
}
|
|
|
|
|
.button.button-hackerrank:hover,
|
|
|
|
|
.button.button-hackerrank:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-06 11:02:13 -04:00
|
|
|
|
/* Micro.blog */
|
|
|
|
|
.button.button-microblog {
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
background-color: #FD9927 }
|
|
|
|
|
.button.button-microblog:hover,
|
|
|
|
|
.button.button-microblog:focus {
|
|
|
|
|
filter: brightness(90%) }
|
2022-08-07 01:54:31 +03:00
|
|
|
|
|
2022-08-18 23:13:57 +01:00
|
|
|
|
/* MyAnimeList */
|
|
|
|
|
.button.button-myanimelist {
|
|
|
|
|
color: #133a95;
|
|
|
|
|
background-color: #fff }
|
|
|
|
|
.button.button-myanimelist:hover,
|
|
|
|
|
.button.button-myanimelist:focus {
|
|
|
|
|
filter: brightness(90%) }
|
|
|
|
|
|
2022-08-18 20:02:21 +01:00
|
|
|
|
/* osu! */
|
|
|
|
|
.button.button-osu {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #ff8ee6;
|
|
|
|
|
}
|
|
|
|
|
.button.button-osu:hover,
|
|
|
|
|
.button.button-osu:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-07 01:54:31 +03:00
|
|
|
|
/* SpaceHey */
|
|
|
|
|
.button.button-spacehey {
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
background-color: #3234CF;
|
|
|
|
|
}
|
|
|
|
|
.button.button-spacehey:hover,
|
|
|
|
|
.button.button-spacehey:focus {
|
|
|
|
|
filter: brightness(90%);
|
|
|
|
|
}
|