You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
494 B
27 lines
494 B
/* THE WRAPPER */
|
|
.countdown {
|
|
display: flex;
|
|
margin: 0 auto;
|
|
max-width: 350px;
|
|
background: #000;
|
|
font-family: Impact, Charcoal, sans-serif;
|
|
text-align: center;
|
|
}
|
|
|
|
/* DAY/HR/MIN/SEC */
|
|
.countdown .square {
|
|
flex-grow: 1;
|
|
padding: 10px;
|
|
margin: 5px;
|
|
}
|
|
.countdown .digits {
|
|
font-size: 24px;
|
|
background: #fff;
|
|
color: #000;
|
|
padding: 20px 10px;
|
|
border-radius: 5px;
|
|
}
|
|
.countdown .text {
|
|
margin-top: 10px;
|
|
color: #ddd;
|
|
} |