154 lines
1.9 KiB
CSS
154 lines
1.9 KiB
CSS
body {
|
|
color: gray;
|
|
background-color: black;
|
|
}
|
|
|
|
a, a:link {
|
|
color: #3282b8;
|
|
}
|
|
|
|
.warn {
|
|
color: red;
|
|
}
|
|
|
|
.answer-list {
|
|
font-size: 30px;
|
|
}
|
|
|
|
.answer-list .correct {
|
|
color: green;
|
|
}
|
|
|
|
.answer-list .half-correct {
|
|
color: yellow;
|
|
}
|
|
|
|
.answer-list .incorrect {
|
|
color: red;
|
|
}
|
|
|
|
.answer-list .not-marked {
|
|
color: lightblue;
|
|
}
|
|
|
|
.key {
|
|
font-size: 20;
|
|
}
|
|
|
|
.hide {
|
|
display: none;
|
|
}
|
|
|
|
.answered {
|
|
color: green;
|
|
}
|
|
|
|
.unanswered {
|
|
color: gray;
|
|
}
|
|
|
|
#question-list {
|
|
list-style: none;
|
|
float: right;
|
|
padding: 1px;
|
|
border: 1px solid gray;
|
|
/*max-height: 80%;*/
|
|
height: 100%;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
.flagged {
|
|
color: red;
|
|
}
|
|
|
|
.not-flagged {
|
|
}
|
|
|
|
button {
|
|
text-decoration: none;
|
|
display:inline-block;
|
|
padding:0.35em 1.2em;
|
|
border:0.1em solid #52057b;
|
|
margin:0 0.3em 0.3em 0;
|
|
border-radius:0.12em;
|
|
box-sizing: border-box;
|
|
text-decoration:none;
|
|
font-family:'Roboto',sans-serif;
|
|
font-weight:300;
|
|
color:#a600ff;
|
|
text-align:center;
|
|
transition: all 0.2s;
|
|
background-color: transparent;
|
|
}
|
|
|
|
button:hover{
|
|
color:white;
|
|
background-color:#52057b;
|
|
}
|
|
|
|
button a {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
|
|
#admin-link {
|
|
float: right;
|
|
}
|
|
|
|
.marking-list {
|
|
float: right;
|
|
}
|
|
|
|
.save {
|
|
display: inline-block;
|
|
padding: 0.35em 1.2em;
|
|
border: 0.1em solid #ffffff;
|
|
margin: 0 0.3em 0.3em 0;
|
|
border-radius: 0.12em;
|
|
box-sizing: border-box;
|
|
text-decoration: none;
|
|
font-family: "Roboto", sans-serif;
|
|
font-weight: 300;
|
|
color: #ffffff;
|
|
text-align: center;
|
|
transition: all 0.2s;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.save:hover {
|
|
color: #000000;
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
#stats-plot {
|
|
width: 50%;
|
|
float: right;
|
|
}
|
|
|
|
#dicom-element {
|
|
width: 60%;
|
|
float: left;
|
|
height: 600px;
|
|
}
|
|
|
|
.marking {
|
|
float: right;
|
|
}
|
|
|
|
#question-mark-list {
|
|
padding: 20px
|
|
}
|
|
|
|
#question-mark-list a {
|
|
color: #bbe1fa
|
|
}
|
|
|
|
#question-mark-list li {
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
#start-marking-button {
|
|
float: right;
|
|
position: sticky;
|
|
top: 30px;
|
|
} |