Skip to content
Snippets Groups Projects
lesson.css 748 B
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;
    margin-left: 20px;
}

/* Program output. */
.out {
    color: darkblue;
    margin-left: 20px;
}

/* Error output. */
.err {
    color: darkred;
    margin-left: 20px;
    font-style: italic;
    font-weight: bold;
}

Greg Wilson's avatar
Greg Wilson committed
/* 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 {}