mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
33 lines
No EOL
544 B
SCSS
33 lines
No EOL
544 B
SCSS
@import "global";
|
|
|
|
$badge-height: $spacing-vertical * 3/4;
|
|
|
|
.badge
|
|
{
|
|
display: inline-block;
|
|
padding: 0 4px;
|
|
font-size: $badge-height * 0.7;
|
|
line-height: $badge-height;
|
|
font-weight: bold;
|
|
color: #ffffff;
|
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
white-space: nowrap;
|
|
@include border-radius(3px);
|
|
background-color: #999999;
|
|
&.badge-primary
|
|
{
|
|
background-color: $color-primary;
|
|
}
|
|
&.badge-info
|
|
{
|
|
background-color: $color-info-bg;
|
|
}
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6
|
|
{
|
|
> .badge
|
|
{
|
|
vertical-align: middle;
|
|
}
|
|
} |