Newer
Older
/* pre blocks inherit color from parent */
pre {
color: inherit;
}
/* Comments in code. */
.comment {
color: purple;
}
/* Highlighted changes in code. */
.highlight {
background-color: mistyrose;
}
/* Manual input. */
.in {
color: darkgreen;
/* Program output. */
.out {
color: darkblue;
/* Error output. */
.err {
color: darkred;
font-style: italic;
font-weight: bold;
}
/* Files. */
.file {
margin-left: 20px;
}
/* Explanatory call-out boxes. */
div.box {
background-color: lightgray;
}
/* Challenge questions. */
div.challenges {}
/* Key points in summary. */
div.keypoints {}
/* Learning objectives. */
div.objectives {}