h5p-question-set/css/questionset.css

99 lines
1.7 KiB
CSS
Raw Normal View History

2013-04-04 15:44:06 +02:00
.dots-container {
text-align: center;
}
.progress-dot {
display: inline-block;
width: 10px;
height: 10px;
border-radius: 50%;
border: 1px solid #494949;
margin: 0 3px;
cursor: pointer;
}
.progress-dot.answered {
background: #494949;
}
.progress-dot.current {
box-shadow: 1px 1px 4px #494949;
margin: -1px 4px 1px 2px;
}
.intro-page {
2013-04-26 17:27:35 +02:00
2013-04-04 15:44:06 +02:00
}
.intro-page .title {
2013-04-26 17:27:35 +02:00
font-size: 2em;
2013-04-04 15:44:06 +02:00
font-weight: bold;
text-align: center;
2013-04-26 17:27:35 +02:00
padding: 1em 1em 0.5em;
2013-04-04 15:44:06 +02:00
}
.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
}
#qs-startbutton {
2013-04-26 17:27:35 +02:00
font-size: 3em;
border: 0.083em solid #BABABA;
border-radius: 0.2083em;
padding: 0.2083em 0.4167em;
2013-04-04 15:44:06 +02:00
cursor: pointer;
}
.qs-progress {
2013-04-26 17:27:35 +02:00
line-height: 2em;
2013-04-04 15:44:06 +02:00
padding: 0;
2013-04-26 17:27:35 +02:00
margin: 1em 1em 0;
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 {
font-size: 25px;
margin-top: 40px;
}
.questionset-results .resulttext {
2013-04-26 17:27:35 +02:00
text-align: left;
2013-04-04 15:44:06 +02:00
font-size: 20px;
line-height: 25px;
margin: 40px 100px;
padding-left: 60px;
min-height: 60px;
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;
}
.questionset-results .buttons {
position: absolute;
bottom: 40px;
right: 25px;
}
button, .button {
cursor: pointer;
}