87 lines
1.1 KiB
CSS
87 lines
1.1 KiB
CSS
html,
|
|
body
|
|
{
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.container
|
|
{
|
|
font-family: 'Arial', sans-serif;
|
|
font-size: 40pt;
|
|
|
|
width: 400px;
|
|
height: 400px;
|
|
margin-top: calc(50vh - 200px);
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.above,
|
|
.below
|
|
{
|
|
line-height: 100px;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.count
|
|
{
|
|
font-size: 80pt;
|
|
line-height: 200px;
|
|
|
|
width: 100%;
|
|
|
|
cursor: pointer;
|
|
user-select: none;
|
|
transition-duration: .15s;
|
|
transition-property: color;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.count:hover:not(.count[disabled])
|
|
{
|
|
color: green;
|
|
}
|
|
|
|
.count[disabled]
|
|
{
|
|
cursor: default;
|
|
|
|
color: #0009;
|
|
}
|
|
|
|
.timeRemainingBar
|
|
{
|
|
position: relative;
|
|
bottom: 10px;
|
|
|
|
height: 5px;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
|
|
transition-timing-function: linear;
|
|
transition-duration: 1s;
|
|
transition-property: width;
|
|
|
|
background-color: #0009;
|
|
}
|
|
|
|
.lastAdded
|
|
{
|
|
font-size: 15pt;
|
|
line-height: 50px;
|
|
|
|
width: 100%;
|
|
height: 50px;
|
|
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
|
|
color: #444;
|
|
}
|