Start
This commit is contained in:
@@ -0,0 +1,96 @@
|
||||
body {
|
||||
color: gray;
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
.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 a {
|
||||
text-decoration: none;
|
||||
color: green;
|
||||
}
|
||||
|
||||
#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;
|
||||
}
|
||||
Reference in New Issue
Block a user