mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
72 lines
1.2 KiB
SCSS
72 lines
1.2 KiB
SCSS
@import "global";
|
|
|
|
pre, code
|
|
{
|
|
background-color: #f1f1f1;
|
|
}
|
|
code
|
|
{
|
|
padding: 3px 5px;
|
|
font-family: $font-mono;
|
|
color: darken($color-primary, 10%);
|
|
&.code-inline {
|
|
padding: 0;
|
|
margin-left: 1px;
|
|
margin-right: 1px;
|
|
font-weight: bold;
|
|
color: inherit;
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
pre
|
|
{
|
|
> code {
|
|
padding: 0;
|
|
}
|
|
margin-bottom: $spacing-vertical;
|
|
border-left: .3rem solid $color-primary;
|
|
padding: 10px 20px;
|
|
//white-space: pre-wrap;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.multiline-code
|
|
{
|
|
-webkit-user-select: text;
|
|
-moz-user-select: text;
|
|
-ms-user-select: text;
|
|
user-select: text;
|
|
|
|
max-width: 90vw;
|
|
|
|
margin-bottom: $spacing-vertical;
|
|
padding: $spacing-vertical / 2 $spacing-vertical;
|
|
unicode-bidi: embed;
|
|
overflow-x: auto;
|
|
white-space: pre;
|
|
display: block;
|
|
word-wrap: break-word;
|
|
|
|
font-size: 0.75em;
|
|
}
|
|
|
|
.code-bash
|
|
{
|
|
@extend .multiline-code;
|
|
background: #222;
|
|
color: #fff;
|
|
}
|
|
|
|
.code-bash__response {
|
|
color: #ccc;
|
|
}
|
|
|
|
.code-bash__kw {color: #c20cb9; font-weight: bold;}
|
|
.code-bash__comment { color: #888; }
|
|
.code-bash__prompt
|
|
{
|
|
font-weight: bold;
|
|
margin-right: 5px;
|
|
color: lighten($color-primary, 20%);
|
|
@include user-select(none);
|
|
}
|