14 lines
188 B
SCSS
14 lines
188 B
SCSS
|
#countdown {
|
||
|
font-weight: bold;
|
||
|
display: inline-block;
|
||
|
text-align: right;
|
||
|
|
||
|
&.warning_time {
|
||
|
color: #ed940d;
|
||
|
}
|
||
|
|
||
|
&.negative {
|
||
|
color: #cc0000;
|
||
|
}
|
||
|
}
|