Created
November 1, 2016 15:11
-
-
Save obie/f75338534f1567ce36c1652c0b1c89c6 to your computer and use it in GitHub Desktop.
Print Quizizz Stylesheet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment