h5p-question-set/css/questionset.css

152 lines
3.4 KiB
CSS
Raw Normal View History

.questionset, .intro-page, .questionset-results {
overflow: hidden;
}
2013-05-03 10:05:49 +02:00
.questionset.hidden {
display: none;
}
.questionset .h5p-multichoice > .h5p-show-solution, .h5p-blanks .h5p-button {
2013-05-03 10:05:49 +02:00
display: none;
}
2013-04-04 15:44:06 +02:00
.dots-container {
text-align: center;
line-height: 2em;
2013-04-04 15:44:06 +02:00
}
.progress-dot {
display: inline-block;
width: 0.75em;
height: 0.75em;
2013-04-04 15:44:06 +02:00
border-radius: 50%;
margin: 0 0.25em;
2013-04-04 15:44:06 +02:00
cursor: pointer;
background: #fff;
border: 0.0625em solid #c7c7c7;
}
.progress-dot:hover {
box-shadow: 0 0 0.5em #c7c7c7;
2013-04-04 15:44:06 +02:00
}
.progress-dot.answered {
border: 0.0625em solid #fff;
background: #bccade;
2013-04-04 15:44:06 +02:00
}
.progress-dot.current {
width: 1em;
height: 1em;
border: 0.0625em solid #fff;
margin-bottom: -0.125em;
background: #267ec9;
background-image: -webkit-linear-gradient(top, #3999ea, #267ec9);
background-image: -moz-linear-gradient(top, #3999ea, #267ec9);
background-image: -o-linear-gradient(top, #3999ea, #267ec9);
background-image: -ms-linear-gradient(top, #3999ea, #267ec9);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3999ea', endColorstr='#267ec9',GradientType=0);
2013-04-04 15:44:06 +02:00
}
.intro-page .title {
2013-04-26 17:27:35 +02:00
font-size: 2em;
2013-05-03 10:05:49 +02:00
line-height: 2em;
2013-04-04 15:44:06 +02:00
font-weight: bold;
text-align: center;
}
.intro-page .introduction {
2013-04-26 17:27:35 +02:00
font-size: 1.25em;
margin: 0 1em;
2013-04-04 15:44:06 +02:00
}
.intro-page .buttons {
2013-04-26 17:27:35 +02:00
margin: 3em auto;
text-align: center;
2013-04-04 15:44:06 +02:00
}
2013-05-03 10:05:49 +02:00
.qs-footer {
overflow: hidden;
}
.qs-footer .button, .qs-startbutton, .qs-finishbutton, .questionset-results .button, .video-container > .button {
2013-05-03 10:05:49 +02:00
display: block;
line-height: 1.25em;
padding: 0.25em 1em;
border-radius: 0.75em;
2013-04-04 15:44:06 +02:00
cursor: pointer;
2013-05-03 10:05:49 +02:00
color: #fff;
box-shadow: 0 0 0.5em #aebdc9;
margin: 0.5em;
background: #267ec9;
background-image: -webkit-linear-gradient(top, #3999ea, #267ec9);
background-image: -moz-linear-gradient(top, #3999ea, #267ec9);
background-image: -o-linear-gradient(top, #3999ea, #267ec9);
background-image: -ms-linear-gradient(top, #3999ea, #267ec9);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3999ea', endColorstr='#267ec9',GradientType=0);
}
.qs-footer .button:hover, .qs-startbutton:hover, .questionset-results .button:hover, .video-container > .button:hover {
2013-05-03 10:05:49 +02:00
text-decoration: none;
color: #fff;
box-shadow: 0 0 0.5em #267ec9;
}
.qs-startbutton {
display: inline-block;
font-size: 2.5em;
}
.qs-footer > .prev, .qs-solutionbutton {
float: left;
}
.qs-footer > .next, .qs-footer > .finish, .qs-finishbutton {
float: right;
}
.questionset-results .qs-finishbutton {
display: none;
2013-04-04 15:44:06 +02:00
}
.video-container {
position: relative;
}
.video-container > video {
background-color: #000;
}
.video-container > .button {
position: absolute;
top: 0.5em;
right: 0.5em;
}
2013-04-04 15:44:06 +02:00
.qs-progress {
2013-05-03 10:05:49 +02:00
text-align: center;
line-height: 1.5em;
2013-04-04 15:44:06 +02:00
}
.questionset-results {
text-align: center;
}
.questionset-results .greeting {
margin: 1em;
2013-04-04 15:44:06 +02:00
}
.questionset-results .score {
2013-05-03 10:05:49 +02:00
font-size: 1.5em;
margin: 1em;
2013-04-04 15:44:06 +02:00
}
.questionset-results .resulttext {
2013-04-26 17:27:35 +02:00
text-align: left;
2013-05-03 10:05:49 +02:00
font-size: 1.25em;
line-height: 1.25em;
margin: 1em 3em;
2013-05-03 10:05:49 +02:00
padding-left: 3em;
min-height: 3em;
2013-04-04 15:44:06 +02:00
background-repeat: no-repeat;
background-position: left center;
}
.questionset-results .resulttext.fail {
background-image: url(img/mark-fail.png);
}
.questionset-results .resulttext.fail em {
font-style: normal;
color: #b9272d;
}
.questionset-results .resulttext.success {
background-image: url(img/mark-pass.png);
}
.questionset-results .resulttext.success em {
font-style: normal;
color: #6aa81b;
}