.uc-quiz { .uc-form-legend { font-weight: normal; } } // // QUIZ QUESTIONS LIST // .uc-quiz-questions { counter-reset: question; > li { margin-top: $gutter * 1.5; border-bottom: $dotted-middle-blue-2-border; counter-increment: question; &:last-child { border-bottom: none; } &:before { float: left; width: $gutter * 2.5; } } .uc-form-legend { font-weight: normal; } .uc-form-field--boolean input { float: left; margin-left: 0; margin-bottom: 1.5rem; } label { display: inline; margin: 0; } } .uc-quiz-questions--decimal { @extend .uc-quiz-questions; > li { &:before { content: counter(question, decimal) "."; } } } .uc-quiz-questions--alpha { @extend .uc-quiz-questions; > li { &:before { content: counter(question, lower-latin) "."; } } } // // OTHER QUIZ // .uc-quiz-instruction { font-style: italic; .disabled & { color: $light-gray; } } .uc-quiz-instruction--nested { @extend .uc-quiz-instruction; margin-left: $gutter * 2; }