You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
121 lines
2.0 KiB
121 lines
2.0 KiB
.main.container { |
|
margin-top: 6em; |
|
} |
|
|
|
.padding { |
|
padding-left: 1.5em; |
|
padding-right: 1.5em; |
|
} |
|
|
|
.ui.segment:first-child { |
|
margin-top: 0; |
|
} |
|
|
|
.hljs { |
|
background: #FFF !important; |
|
} |
|
|
|
.ui.footer.segment { |
|
margin: 2em 0em 0em; |
|
padding: 1em 0em; |
|
border: none; |
|
} |
|
|
|
th { |
|
white-space: nowrap; |
|
} |
|
|
|
/* status color */ |
|
|
|
/* |
|
.accordion .status_detail { |
|
transition: color .1s ease; |
|
} |
|
*/ |
|
|
|
:not(.status_detail).status.accepted, |
|
.title:hover .status_detail.status.accepted, |
|
.title.active .status_detail.status.accepted { |
|
color: forestgreen; |
|
} |
|
|
|
:not(.status_detail).status.wrong_answer, |
|
.title:hover .status_detail.status.wrong_answer, |
|
.title.active .status_detail.status.wrong_answer { |
|
color: red; |
|
} |
|
|
|
:not(.status_detail).status.runtime_error, |
|
.title:hover .status_detail.status.runtime_error, |
|
.title.active .status_detail.status.runtime_error { |
|
color: darkorchid; |
|
} |
|
|
|
:not(.status_detail).status.memory_limit_exceed, |
|
.title:hover .status_detail.status.memory_limit_exceed, |
|
.title.active .status_detail.status.memory_limit_exceed, |
|
:not(.status_detail).status.time_limit_exceed, |
|
.title:hover .status_detail.status.time_limit_exceed, |
|
.title.active .status_detail.status.time_limit_exceed, |
|
:not(.status_detail).status.output_limit_exceed, |
|
.title:hover .status_detail.status.output_limit_exceed, |
|
.title.active .status_detail.status.output_limit_exceed { |
|
color: sandybrown; |
|
} |
|
|
|
:not(.status_detail).status.waiting, :not(.status_detail).status.system_error { |
|
color: grey; |
|
} |
|
|
|
:not(.status_detail).status.compile_error { |
|
color: rgb(0, 68, 136); |
|
} |
|
|
|
/* score color */ |
|
.score_0 { |
|
color: red; |
|
} |
|
|
|
.score_1 { |
|
color: #ff4b00; |
|
} |
|
|
|
.score_2 { |
|
color: #ff6200; |
|
} |
|
|
|
.score_3 { |
|
color: #ffa900; |
|
} |
|
|
|
.score_4 { |
|
color: #ffd800; |
|
} |
|
|
|
.score_5 { |
|
color: #c8ff00; |
|
} |
|
|
|
.score_6 { |
|
color: #a5ff00; |
|
} |
|
|
|
.score_7 { |
|
color: #52ff00; |
|
} |
|
|
|
.score_8 { |
|
color: #41f741; |
|
} |
|
|
|
.score_9 { |
|
color: #34d034; |
|
} |
|
|
|
.score_10 { |
|
color: forestgreen; |
|
} |
|
|
|
.score { |
|
text-shadow: 0 0 0.1px; |
|
}
|
|
|