lbry.tech/app/sass/partials/_pre.scss

32 lines
427 B
SCSS
Raw Normal View History

2018-09-27 11:11:26 -05:00
pre {
2018-10-05 17:46:08 -05:00
padding: 2rem;
2018-09-27 11:11:26 -05:00
line-height: 1.33;
2018-10-05 17:46:08 -05:00
margin-bottom: 2rem;
2018-09-27 11:11:26 -05:00
overflow-x: auto;
overflow-y: hidden;
&:not([class]),
&.language-text {
background-color: #27283e;
2018-10-12 17:29:53 -05:00
color: $lbry-white;
2018-09-27 11:11:26 -05:00
}
&.language-yaml {
background-color: #27273f;
color: #ffe066;
.atrule {
color: #f083ac;
}
.important {
color: #ffa94d;
}
.punctuation {
2018-10-12 17:29:53 -05:00
color: $lbry-white;
2018-09-27 11:11:26 -05:00
}
}
}