Skip to content
Snippets Groups Projects
layout.css 610 B
Newer Older
/* Styles that mainly affect where text is, but not how it looks */

h1, h2, h3 {
    margin-bottom: 0;
    margin-top: 0.25em;
}

h1 + p, h2 + p, h3 + p {
    margin-top: 0;
}

div.center, p.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

div.flex-container {
    display: flex;
}

/* makes the first line indented */
div.indent, p.indent {
    text-indent: 2em;
}

div.double-indent, p.double-indent {
    text-indent: 4em;
}

/* makes avery linue indented */
div.choices, p.choices {
    margin-left: 2em;
}

div.double-choices, p.double-choices {
    margin-left: 4em;
}