fix: use triple backticks around code

This commit is contained in:
Randell Dawson
2019-04-26 09:08:18 -07:00
committed by mrugesh mohapatra
parent dbfd1e2a2f
commit be2c37491f
2 changed files with 14 additions and 2 deletions

View File

@ -42,6 +42,12 @@
background: #222; background: #222;
} }
.night .challenge-instructions pre,
.night .challenge-instructions pre code {
color: #c7254e;
background: #222;
}
.night code { .night code {
background-color: #242424; background-color: #242424;
color: #02a902; color: #02a902;

View File

@ -2,7 +2,7 @@
font-size: 16px; font-size: 16px;
} }
.challenge-instructions blockquote { .challenge-instructions blockquote, .challenge-instructions pre {
background-color: #eee; background-color: #eee;
color: #c7254e; color: #c7254e;
padding: 10px; padding: 10px;
@ -11,4 +11,10 @@
margin-bottom: 1.45rem; margin-bottom: 1.45rem;
font-family: monospace; font-family: monospace;
font-size: 16px; font-size: 16px;
} }
.challenge-instructions pre {
border: 0;
border-radius: 0%;
word-break: normal;
}