Skip to content

Instantly share code, notes, and snippets.

@obie
Created November 1, 2016 15:11
Show Gist options
  • Save obie/f75338534f1567ce36c1652c0b1c89c6 to your computer and use it in GitHub Desktop.
Save obie/f75338534f1567ce36c1652c0b1c89c6 to your computer and use it in GitHub Desktop.

Revisions

  1. obie created this gist Nov 1, 2016.
    55 changes: 55 additions & 0 deletions quizizz.css
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,55 @@
    div {
    font-family: Georgia;
    font-size: 10pt;
    }
    h1 {
    font-family: Helvetica;
    }
    img {
    padding: 2em;
    }
    .question {
    clear: both;
    margin-top: .7em;
    overflow: auto;
    }
    .quiz-image {
    width: 50%;
    }
    .q-no {
    float: left;
    height: 40px;
    width: 40px;
    }
    .q-text {
    padding-right: 50px;
    font-size: 12pt;
    }
    .q-no, .q-text {
    font-weight: bold;
    }
    .answers {
    margin: 0.5em;
    margin-left: 3em;
    overflow: auto;
    }
    .answer {
    float: left;
    width: 40%;
    margin: 0.5em;
    }
    .answer:nth-child(3) {
    clear: left;
    }
    .opt {
    float: left;
    height: 20px;
    width: 2em;
    }
    .identifier {
    display: inline-block;
    width: 20%;
    }
    @media print {
    .question { page-break-inside: avoid }
    }