react-awesome-countdowntimer
Version:
An awesome countdown timer for reactJS, easy to handle use & edit.
52 lines (47 loc) • 769 B
CSS
.App {
text-align: center;
}
.App-logo {
animation: App-logo-spin infinite 20s linear;
height: 80px;
}
.App-header {
background-color: #222;
height: 60px;
padding: 20px;
color: white;
}
.App-title {
font-size: 1.5em;
}
.datetime {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
padding: 25px 0px;
}
.rdtCounters {
display: flex;
justify-content: space-between;
}
.rdtCounterSeparator {
height: 26px;
margin: auto 0px;
}
.rdt input {
height: 40px ;
font-size: 13px;
text-align: center;
margin-bottom: 20px;
}
.rdtSwitch {
width: 130px;
}
.App-intro {
font-size: large;
}
@keyframes App-logo-spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}