Skip to content
Snippets Groups Projects
Commit 57f72543 authored by chris's avatar chris
Browse files

add css files

parent 1f58dfd0
No related branches found
No related tags found
1 merge request!372Surface styles
/* -- Essay ---------------------------------- */
.essay {
border: 3px solid #f5f5f7;
margin-bottom: 30px;
margin-top: 30px;
padding: 3px;
}
essay::before {
background-color: #fff;
bottom: 22px;
color: #535e76;
content: 'Essay';
height: 10px;
left: -1px;
position: relative;
width: 30px;
}
\ No newline at end of file
.fill-the-gap {
border: 3px solid #f5f5f7;
margin-bottom: 30px;
margin-top: 30px;
padding: 3px;
}
.fill-the-gap::before {
background-color: #fff;
bottom: 22px;
color: #535e76;
content: 'Fill The Gap';
height: 10px;
left: -1px;
position: relative;
width: 30px;
}
\ No newline at end of file
/* -- Multiple Choice ---------------------------------- */
.multiple-choice,
.multiple-choice-single-correct,
.true-false,
.true-false-single-correct {
border: 3px solid #f5f5f7;
counter-reset: question-item-multiple;
margin: 38px;
padding: 20px;
padding-top: 0px;
}
.multiple-choice::before,
.multiple-choice-single-correct::before,
.true-false::before,
.true-false-single-correct::before {
bottom: 25px;
counter-increment: multiple-question;
position: relative;
right: 20px;
}
.multiple-choice .ProseMirror,
.multiple-choice-single-correct .ProseMirror,
.true-false .ProseMirror,
.true-false-single-correct .ProseMirror {
box-shadow: none!important;
padding: 5px 5px 0 5px!important;
}
.multiple-choice::before {
content: 'Answer Group ' counter(multiple-question) ' (multiple choice)';
}
.multiple-choice-single-correct::before {
content: 'Answer Group ' counter(multiple-question)' (multiple choice single correct)';
}
.true-false::before {
content: 'Answer Group ' counter(multiple-question) ' (true/false)';
}
.true-false-single-correct::before {
content: 'Answer Group ' counter(multiple-question)' (true/false single correct)';
}
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment