36 lines
528 B
CSS
36 lines
528 B
CSS
|
|
.countdown {
|
||
|
|
font-size: 7rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.digital {
|
||
|
|
display: inline-block;
|
||
|
|
position: relative;
|
||
|
|
font-family: 'Digital-7';
|
||
|
|
}
|
||
|
|
|
||
|
|
.digital :first-child {
|
||
|
|
width: 100%;
|
||
|
|
position: absolute;
|
||
|
|
color: #e6e5e5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.digital :last-child {
|
||
|
|
position: relative;
|
||
|
|
color: #242a32;
|
||
|
|
}
|
||
|
|
|
||
|
|
.digital p {
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.message {
|
||
|
|
background:#da9090;
|
||
|
|
border: 2px solid rgb(255, 115, 0);
|
||
|
|
border-radius: 5px;
|
||
|
|
padding: 10px;
|
||
|
|
margin: 10px;
|
||
|
|
font-size: 1.5rem;
|
||
|
|
font-family: monospace, Arial, Helvetica, sans-serif;
|
||
|
|
text-align: center;
|
||
|
|
}
|