Files
penracourses/static/css/anatomy.css
T
Ross cdc1259e56 .
2021-08-03 19:50:25 +01:00

504 lines
7.0 KiB
CSS

body {
color: gray;
background-color: black;
}
a, a:link {
color: #3282b8;
}
.warn {
color: red;
}
.answer-list {
font-size: 25px;
user-select: none;
-webkit-user-select: none; /* Chrome/Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+ */
}
.answer-list .answer:hover{
z-index: 99999;
position: relative;
background: rgba(167, 167, 167, 0.7);
}
.answer-list .correct {
/* color: green; */
color: lightblue;
}
.answer-list .correct::after{
content: " [Score = 2]";
font-size: small;
}
.answer-list .half-correct {
color: yellow;
}
.answer-list .half-correct::after{
content: " [Score = 1]";
font-size: small;
}
.answer-list .incorrect {
color: red;
}
.answer-list .incorrect::after{
content: " [Score = 0]";
font-size: small;
}
.answer-list .not-marked {
color: white;
}
.key {
font-size: 20;
}
.hide {
display: none;
}
.answered {
/* color: green; */
color: lightblue;
}
.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;
}
.top-bar-link {
float: right;
padding-left: 10px;
}
.marking-list pre {
display: inline;
}
.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-image {
width: 100%;
height: 600px;
}
.dicom-viewer {
width: 100%;
height: 600px;
}
.rapid-dicom-viewer {
width: 400px;
height: 600px;
position: fixed;
top: 0px;
right: 0px;
float: right;
}
.marking-dicom {
position: fixed;
right: 0px;
bottom: 0px;
width: 50%;
height: 90%;
z-index: 1;
}
.cornerstone-canvas {
height: 100%;
}
.marking {
}
#question-mark-list {
padding: 20px
}
#full-question-list li{
padding-bottom: 20px
}
#full-question-list img{
float: left;
padding-right: 20px;
padding-left: 10px;
}
#question-mark-list a {
color: #bbe1fa
}
#question-mark-list li {
padding-bottom: 5px;
}
#start-marking-button {
float: right;
position: sticky;
top: 30px;
}
#save-annotations {
position: absolute;
left: 0;
}
.drop-target {
width: 100%;
width: 100vw;
height: 100px;
text-align: center;
font-size: larger;
position: sticky;
bottom: 0;
left: 0%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
}
#drop-container {
border: 1px dashed white;
}
.submit-button {
position: sticky;
bottom: 0;
}
#feedback-drop-target {
float: right;
height: 100%;
width: 30%;
}
.drop-target-active {
background-color: #427aa1;
}
#drop-filenames span {
font-size: xx-small;
color: gray;
padding-right: 1em;
}
.image-formset {
border: 1px solid white;
}
select, input {
background-color: #05668d;
color: white;
border: none;
}
table.table {
color: white;
}
#view-filter-options {
float: right;
}
.rapid-img {
width: 300px;
height: 300px;
}
.feedback-img {
border: 1px solid #05668d;
}
img.uploading {
margin-top: -20px;
height: 75%;
float: right;
}
/* img.uploading:hover {
height: 95%;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%)
} */
.image-ident-warning {
border: 2px solid red;
}
.image-ident-loading {
background: rgba(142, 68, 173, 1);
box-shadow: 0 0 0 0 rgba(142, 68, 173, 1);
animation: pulse-purple 2s infinite;
}
@keyframes pulse-purple {
0% {
transform: scale(0.95);
box-shadow: 0 0 0 0 rgba(142, 68, 173, 0.7);
}
70% {
transform: scale(1);
box-shadow: 0 0 0 10px rgba(142, 68, 173, 0);
}
100% {
transform: scale(0.95);
box-shadow: 0 0 0 0 rgba(142, 68, 173, 0);
}
}
#annotation-json-content {
display: none;
}
.user-answer-score-0 {
color: red;
}
.user-answer-score-1 {
color: yellow;
}
.user-answer-score-2 {
/* color: green; */
color: lightblue;
}
.physics-ans .user-answer-score-1 {
color: lightblue;
}
td.user-answer-score-0::after {
content: "✗";
}
td.user-answer-score-1::after {
content: "✓";
}
td.user-answer-score-2::after {
content: "✓✓";
}
.user-answer-score pre {
display: inline;
color: inherit;
}
.correct-answer {
color: white;
}
.user-answer-li {
padding-top: 10px;
}
.parent-help:hover .help-text {
opacity: 50%;
}
.parent-help .help-text {
opacity: 0%;
}
.google-link {
padding-left: 10px;
font-size: smaller;
}
#full-question-list-physics .abcde li {
padding: 0px;
clear: right;
vertical-align: text-top;
}
#full-question-list-physics li {
padding-bottom: 10px;
}
#full-question-list-physics {
width: 800px;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
}
.answer-1 {
/* color: green; */
color: lightblue;
}
.answer-0 {
color: red;
}
.selector {
border-color: #05668d;
}
.selector input {
color: gray;
background-color: white;
font-size: small;
}
.selector .selector-available h2, .selector .selector-chosen h2 {
margin-bottom: 0px;
border: none;
/* border-color: #05668d; */
background-color: #ebf2fa;
color: rgb(28, 184, 65);
}
.selector .selector-available select, .selector .selector-chosen select {
border-color: #05668d;
}
#id_laterality {
margin-top: 30px;
}
#id_laterality li{
display: inline-block;
border-radius: 4px;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
background: rgb(28, 184, 65);
padding-right: 10px;
color: white;
}
.add-popup {
display: block;
}
.multi-image-block, .series-block {
display: inline-flex;
}
.sortable-placeholder {
border: 4px solid purple;
}
.temp-thumb {
float:right;
}
.long-answer pre {
white-space: pre-wrap;
font: inherit;
color: inherit;
}
.long-answer .answer-heading {
font-style: italic;
font-weight: bold;
}
.proposed-answer {
color: darkblue
}
.notes .complete {
color: darkslategray;
}
table.longs .user-answer-score-4, table.longs .user-answer-score-4\.5 {
color: red
}
table.longs .user-answer-score-5, table.longs .user-answer-score-5\.5 {
color: yellow
}
table.longs .user-answer-score-6, table.longs .user-answer-score-6\.5 {
color: yellowgreen
}
table.longs .user-answer-score-7, table.longs .user-answer-score-7\.5 {
color: green
}