2015-05-14 16:45:37 +03:00
|
|
|
/* Badges
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
2017-02-15 15:43:49 +03:00
|
|
|
.gh-badge {
|
2015-05-14 16:45:37 +03:00
|
|
|
display: inline-block;
|
2019-06-18 13:47:21 +03:00
|
|
|
padding: 3px 4px;
|
|
|
|
color: var(--green-d2);
|
|
|
|
font-size: 1.2rem;
|
2017-02-15 15:43:49 +03:00
|
|
|
line-height: 1em;
|
2019-06-18 13:47:21 +03:00
|
|
|
font-weight: 500;
|
|
|
|
letter-spacing: 0.2px;
|
2015-05-14 16:45:37 +03:00
|
|
|
text-align: center;
|
2017-02-27 09:31:01 +03:00
|
|
|
text-decoration: none;
|
2015-05-16 14:43:12 +03:00
|
|
|
white-space: nowrap;
|
2017-02-15 15:43:49 +03:00
|
|
|
user-select: none;
|
2019-06-18 13:47:21 +03:00
|
|
|
background: color-mod(var(--green) a(20%));
|
2017-02-15 15:43:49 +03:00
|
|
|
border-radius: 3px;
|
2019-06-18 13:47:21 +03:00
|
|
|
text-transform: uppercase;
|
2017-02-15 15:43:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-badge-blue {
|
2019-06-18 13:47:21 +03:00
|
|
|
background: var(--blue);
|
2017-02-15 15:43:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-badge-red {
|
2019-06-18 13:47:21 +03:00
|
|
|
color: var(--red);
|
|
|
|
background: color-mod(var(--red) a(20%));
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-badge-purple {
|
|
|
|
color: var(--purple);
|
|
|
|
background: color-mod(var(--purple) a(20%));
|
2017-02-15 15:43:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-badge-black {
|
2019-06-18 13:47:21 +03:00
|
|
|
background: var(--darkgrey);
|
|
|
|
color: var(--white);
|
2017-02-15 15:43:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-badge-outline {
|
2018-04-03 13:52:18 +03:00
|
|
|
border-color: color-mod(var(--midgrey) l(+35%));
|
|
|
|
color: color-mod(var(--midgrey) l(+25%));
|
2017-02-15 15:43:49 +03:00
|
|
|
font-weight: 400;
|
|
|
|
background: transparent;
|
|
|
|
box-shadow: none;
|
2017-02-27 09:31:01 +03:00
|
|
|
text-shadow: none;
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|