mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
49 lines
No EOL
920 B
SCSS
49 lines
No EOL
920 B
SCSS
@import "global";
|
|
|
|
@mixin notice($text_color, $bg_color, $border_color)
|
|
{
|
|
color: $text_color;
|
|
background-color: $bg_color;
|
|
border-color: $border_color;
|
|
h1, h2, h3, h4, h5, h6 {
|
|
color: darken($text_color, 10%) !important; //fuck this
|
|
margin-bottom: $spacing-vertical;
|
|
}
|
|
a[href]
|
|
{
|
|
color: $text_color;
|
|
&:hover
|
|
{
|
|
color: lighten($text_color, 10);
|
|
}
|
|
}
|
|
.meta
|
|
{
|
|
color: lighten($text_color, 15%) !important;
|
|
}
|
|
}
|
|
|
|
.notice
|
|
{
|
|
padding: 10px 20px;
|
|
border: 1px solid #000;
|
|
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
|
a[href] { text-decoration: underline; }
|
|
@include border-radius(5px);
|
|
> p:last-child
|
|
{
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
.notice-success
|
|
{
|
|
@include notice($success_text, $success_bg, $success_border);
|
|
}
|
|
.notice-error
|
|
{
|
|
@include notice($error_text, $error_bg, $error_border);
|
|
}
|
|
.notice-info
|
|
{
|
|
@include notice($info_text, $info_bg, $info_border);
|
|
} |