1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0.
2// See the LICENCE file in the repository root for full licence text.
3
4.countdown-timer {
5 text-align: center;
6
7 &__header {
8 color: white;
9 text-align: center;
10 margin: 0 auto;
11 padding-bottom: 10px;
12 }
13
14 &__field {
15 display: inline-block;
16
17 width: 70px;
18 text-align: center;
19
20 border: 5px solid @osu-colour-b5;
21 color: white;
22 margin: 0 5px;
23 border-radius: 5px;
24
25 .default-box-shadow();
26 }
27
28 &__digit {
29 line-height: 50px;
30 font-size: 24px;
31 background: @osu-colour-b6;
32 }
33
34 &__label {
35 background: @osu-colour-b5;
36 font-size: 12px;
37 line-height: 14px;
38 color: @osu-colour-f1;
39 }
40}