Skip to content

Commit 48c3616

Browse files
committed
Move CSS from element to allow styling it separately when customizing.
1 parent 485c371 commit 48c3616

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

webapp/public/style_domjudge.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -650,3 +650,8 @@ blockquote {
650650
.right {
651651
text-align: right;
652652
}
653+
654+
#contesttimer {
655+
color: DimGray;
656+
margin-left: auto;
657+
}

webapp/templates/partials/scoreboard.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<div class="card" {% if refreshstop is defined %}data-ajax-refresh-stop="1"{% endif %}>
2121
<div class="card-header" style="font-family: Roboto, sans-serif; display: flex;">
2222
<span style="font-weight: bold;">{{ current_contest.name }}</span>
23-
<span id="contesttimer" style="color: DimGray; margin-left: auto;">
23+
<span id="contesttimer">
2424
{% if scoreboard is null %}
2525
{{ current_contest | printContestStart }}
2626
{% elseif scoreboard.freezeData.showFinal(jury) %}

0 commit comments

Comments
 (0)