99 lines
1.7 KiB
CSS
99 lines
1.7 KiB
CSS
.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 {
|
|
|
|
}
|
|
.intro-page .title {
|
|
font-size: 2em;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
padding: 1em 1em 0.5em;
|
|
}
|
|
.intro-page .introduction {
|
|
font-size: 1.25em;
|
|
margin: 0 1em;
|
|
}
|
|
.intro-page .buttons {
|
|
margin: 3em auto;
|
|
text-align: center;
|
|
}
|
|
|
|
#qs-startbutton {
|
|
font-size: 3em;
|
|
border: 0.083em solid #BABABA;
|
|
border-radius: 0.2083em;
|
|
padding: 0.2083em 0.4167em;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.qs-progress {
|
|
line-height: 2em;
|
|
padding: 0;
|
|
margin: 1em 1em 0;
|
|
}
|
|
|
|
.questionset-results {
|
|
text-align: center;
|
|
}
|
|
|
|
.questionset-results .greeting {
|
|
margin-top: 180px;
|
|
}
|
|
|
|
.questionset-results .score {
|
|
font-size: 25px;
|
|
margin-top: 40px;
|
|
}
|
|
|
|
.questionset-results .resulttext {
|
|
text-align: left;
|
|
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;
|
|
} |