Different background colors for code and results

pull/42/head
Giuseppe Ragusa 2016-05-02 23:35:24 +02:00
parent bd300ed881
commit fd3e7e4c87
1 changed files with 24 additions and 1 deletions

View File

@ -498,6 +498,20 @@ hr {
clear: both; }
pre {
display: block;
padding: 9.5px;
margin: 0 0 10px;
font-size: 13px;
line-height: 1.42857143;
color: #333;
word-break: break-all;
word-wrap: break-word;
background-color: #ffffff;
border: 1px solid #ccc;
border-radius: 4px;
}
pre.sourceCode.julia {
display: block;
padding: 9.5px;
margin: 0 0 10px;
@ -510,6 +524,7 @@ pre {
border: 1px solid #ccc;
border-radius: 4px;
}
code,
kbd,
pre,
@ -520,10 +535,18 @@ code {
padding: 2px 4px;
font-size: 90%;
background-color: #f9f2f4;
background-color: #ffffff;
border-radius: 4px;
}
code.sourceCode.julia {
padding: 2px 4px;
font-size: 90%;
background-color: #f5f5f5;
border-radius: 4px;
}
@media (min-width: 400px) {}
@media (min-width: 550px) {}
@media (min-width: 750px) {}