S2OJ/web/css/uoj-bs5.css

381 lines
5.7 KiB
CSS
Raw Normal View History

2022-09-24 00:13:39 +00:00
/* S2OJ Bootstrap 5 Theme */
2023-02-01 13:30:36 +00:00
/* - Global Reset - */
2022-09-23 22:28:50 +00:00
body {
overflow-y: scroll;
}
2022-09-25 02:55:34 +00:00
pre {
tab-size: 4;
}
2022-11-06 02:26:21 +00:00
a {
text-decoration: none;
}
2023-02-01 13:30:36 +00:00
/* Content */
.uoj-pre {
padding: 1em;
}
2022-09-24 00:13:39 +00:00
.uoj-username,
.uoj-score {
2022-09-23 13:00:17 +00:00
font-weight: 800;
text-decoration: none;
2022-09-23 13:53:29 +00:00
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
2022-09-23 13:00:17 +00:00
}
2022-09-24 00:13:39 +00:00
.uoj-realname {
font-size: 90%;
font-weight: normal;
}
2023-02-01 13:30:36 +00:00
/* Headings */
2022-11-06 02:26:21 +00:00
h1,
.h1 {
/* font-size: 2.5rem; */
font-size: 2rem;
}
h2,
.h2 {
/* font-size: 2rem; */
font-size: 1.8rem;
}
h3,
.h3 {
/* font-size: 1.75rem; */
font-size: 1.6rem;
}
h4,
.h4 {
/* font-size: 1.5rem; */
font-size: 1.4rem;
}
h5,
.h5 {
/* font-size: 1.25rem; */
font-size: 1.15rem;
}
h6,
.h6 {
font-size: 1rem;
}
2023-02-01 13:30:36 +00:00
/* Difficulty */
2022-09-24 00:13:39 +00:00
.uoj-difficulty {
font-size: 0.9em;
font-weight: bold;
2022-09-24 00:13:39 +00:00
}
2023-02-01 13:30:36 +00:00
/* Table */
2022-10-21 12:42:48 +00:00
.uoj-table > tbody > tr:last-child,
.uoj-table > tbody > tr:last-child > td {
2022-09-24 00:13:39 +00:00
border-bottom-color: transparent;
}
2022-09-24 02:18:55 +00:00
2022-10-21 12:42:48 +00:00
.uoj-table > thead > tr:first-child,
.uoj-table > thead > tr:first-child > td {
border-top-color: transparent;
}
.uoj-table > thead > tr > th:first-child,
.uoj-table > tbody > tr > td:first-child {
border-left-color: transparent;
}
.uoj-table > thead > tr > th:last-child,
.uoj-table > tbody > tr > td:last-child {
border-right-color: transparent;
}
2023-02-01 13:30:36 +00:00
/* Click zan */
2022-09-24 02:18:55 +00:00
.uoj-click-zan-block {
display: inline-block;
2022-10-03 12:47:32 +00:00
min-width: 100px;
text-align: center;
font-size: 0.9em;
}
2022-09-24 13:19:48 +00:00
.uoj-click-zan-up,
.uoj-click-zan-down,
.uoj-click-zan-cnt {
2022-09-24 02:18:55 +00:00
margin-left: 5px;
margin-right: 5px;
}
.uoj-click-zan-block-cur-up .uoj-click-zan-up {
color: green;
font-weight: 700;
}
.uoj-click-zan-block-cur-down .uoj-click-zan-down {
color: red;
font-weight: 700;
}
2022-09-24 13:19:48 +00:00
.uoj-click-zan-block-cur-down .uoj-click-zan-up,
.uoj-click-zan-block-cur-up .uoj-click-zan-down {
2022-09-24 02:18:55 +00:00
color: gray;
}
.uoj-click-zan-block-positive .uoj-click-zan-cnt {
color: green;
}
.uoj-click-zan-block-neutral .uoj-click-zan-cnt {
color: gray;
}
.uoj-click-zan-block-negative .uoj-click-zan-cnt {
color: red;
}
2022-09-24 13:19:48 +00:00
2023-02-01 13:30:36 +00:00
/* Submission details */
2022-09-24 13:19:48 +00:00
.uoj-submission-result-item {
cursor: pointer;
}
2022-09-29 03:57:02 +00:00
.uoj-status-text {
font-weight: bold;
}
2022-09-26 04:48:50 +00:00
.card-uoj-accepted > .card-header:hover,
.card-uoj-accepted > div.card-header > div > .uoj-status-text {
2022-09-24 13:19:48 +00:00
color: #25ad40;
}
2022-09-26 04:48:50 +00:00
.card-uoj-acceptable-answer > .card-header:hover,
.card-uoj-acceptable-answer > div.card-header > div > .uoj-status-text {
2022-09-24 13:19:48 +00:00
color: #01bab2;
}
2022-09-26 04:48:50 +00:00
.card-uoj-tle > .card-header:hover,
.card-uoj-tle > div.card-header > div > .uoj-status-text {
color: #f4a460;
2022-09-24 13:19:48 +00:00
}
2022-09-26 04:48:50 +00:00
.card-uoj-wrong > .card-header:hover,
.card-uoj-wrong > div.card-header > div > .uoj-status-text {
2022-09-24 13:19:48 +00:00
color: #ff4f4f;
}
2022-09-26 04:48:50 +00:00
2023-02-01 13:30:36 +00:00
/* Markdown */
2022-09-25 10:28:43 +00:00
.markdown-body h1 {
font-size: 2em;
margin-bottom: 1rem;
}
.markdown-body h2 {
2022-09-26 06:48:12 +00:00
font-size: 1.75em;
2022-09-25 10:28:43 +00:00
margin-bottom: 1rem;
}
.markdown-body h3 {
2022-09-26 06:48:12 +00:00
font-size: 1.5em;
2022-09-25 10:28:43 +00:00
}
.markdown-body h4 {
2022-09-26 06:48:12 +00:00
font-size: 1.25em;
2022-09-25 10:28:43 +00:00
}
.markdown-body h5 {
2022-09-26 06:48:12 +00:00
font-size: 1em;
font-weight: bold;
2022-09-25 10:28:43 +00:00
}
.markdown-body h6 {
2022-09-26 06:48:12 +00:00
font-size: 0.9em;
font-weight: bold;
2022-09-25 10:28:43 +00:00
}
.markdown-body img {
max-width: 100%;
}
.markdown-body pre {
padding: 1em;
background-color: rgba(var(--bs-light-rgb));
}
2022-09-27 07:01:55 +00:00
.markdown-body table th[align='left'] {
text-align: left;
}
.markdown-body table th[align='center'] {
text-align: center;
}
.markdown-body table th[align='right'] {
text-align: right;
}
2022-09-28 11:48:49 +00:00
2022-09-29 03:52:33 +00:00
.markdown-body blockquote {
margin: 0;
padding: 0 1em;
color: #57606a;
border-left: 0.25em solid #d0d7de;
}
.markdown-body ol,
.markdown-body ul {
margin-bottom: 1em;
}
2023-02-01 13:30:36 +00:00
/* PDF */
2023-01-30 12:27:53 +00:00
.pdf-page-canvas {
width: 100% !important;
}
2023-02-01 13:30:36 +00:00
/* Form */
2022-09-28 11:48:49 +00:00
form.form-horizontal {
margin-bottom: 8px;
}
2023-02-01 13:30:36 +00:00
.form-group {
margin-bottom: 1rem;
2022-09-28 11:48:49 +00:00
}
2023-02-01 13:30:36 +00:00
.form-inline .form-control {
2022-09-28 11:48:49 +00:00
display: inline-block;
2023-02-01 13:30:36 +00:00
width: auto;
vertical-align: middle;
2022-09-28 11:48:49 +00:00
}
2023-02-01 13:30:36 +00:00
/* User accepted problems list */
2022-09-28 11:48:49 +00:00
2022-09-29 00:12:03 +00:00
@media (max-width: 767px) {
.uoj-ac-problems-list li {
width: 100%;
}
}
@media (min-width: 768px) {
.uoj-ac-problems-list li {
width: 18em;
}
}
.uoj-ac-problems-list {
padding-top: 10px;
padding-bottom: 5px;
}
.uoj-ac-problems-list a {
min-height: 60px;
}
.uoj-ac-problems-list-item:hover {
color: var(--bs-nav-link-color) !important;
background-color: #eeeeee70;
}
2022-09-29 14:02:56 +00:00
/* Comments */
2023-02-01 13:30:36 +00:00
.comment-content {
2022-09-29 14:02:56 +00:00
white-space: pre-wrap;
word-break: break-all;
2023-02-01 13:30:36 +00:00
min-height: 50px;
2022-09-29 14:02:56 +00:00
}
2023-02-01 13:30:36 +00:00
/* Standing table */
2022-10-04 06:06:03 +00:00
.uoj-standings-table tr td:first-child,
.uoj-standings-table tr th:first-child {
border-left-width: 0px;
}
.uoj-standings-table tr td:last-child,
.uoj-standings-table tr th:last-child {
border-right-width: 0px;
}
.uoj-standings-table > thead > tr:first-child {
border-top-width: 0px;
}
.uoj-standings-table > tbody > tr:last-child {
border-bottom-width: 0px;
}
2022-11-06 02:26:21 +00:00
/* Timeline */
.list-group.timeline {
margin: auto;
}
@media (min-width: 768px) {
.list-group.timeline {
display: block;
max-width: 90%;
position: relative;
}
.list-group.timeline:before {
content: ' ';
background: rgba(var(--bs-secondary-rgb), 0.35);
display: inline-block;
position: absolute;
left: -17.5px;
width: 2px;
height: 100%;
z-index: 400;
}
.list-group.timeline > .list-group-item:before {
content: ' ';
background: white;
display: inline-block;
position: absolute;
border-radius: 50%;
border: 3px solid var(--bs-info);
left: -25px;
width: 15px;
height: 15px;
z-index: 500;
}
}
2023-02-01 13:30:36 +00:00
/* Fix CodeMirror */
.CodeMirror-linenumber {
font-size: 14px !important;
}
2022-11-11 00:20:33 +00:00
2023-02-01 13:30:36 +00:00
/* Back button */
2022-11-11 00:20:33 +00:00
.uoj-back-btn {
--bs-btn-hover-bg: #d3d4d570;
--bs-btn-hover-border-color: transparent;
}
2023-01-18 08:20:12 +00:00
2023-02-01 13:30:36 +00:00
/* Remote Content */
2023-01-18 08:20:12 +00:00
.remote-content center > img + span {
display: block;
font-size: 90%;
2023-01-18 08:20:12 +00:00
}
2023-02-02 02:29:29 +00:00
/* Dropzone Form */
.dropzone .dz-preview.dz-file-preview .dz-image {
background: #e9ecef !important;
}
.dropzone .dz-preview .dz-progress {
height: 6px !important;
}