31 lines
486 B
CSS
31 lines
486 B
CSS
|
#clock {
|
||
|
font-size: 120px;
|
||
|
font-weight: 100;
|
||
|
color: #fff;
|
||
|
text-align: center;
|
||
|
bottom: 10%;
|
||
|
right: 5%;
|
||
|
z-index: 900010;
|
||
|
position: absolute;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
flex-direction: row;
|
||
|
flex-wrap: wrap;
|
||
|
|
||
|
width: 30%;
|
||
|
}
|
||
|
|
||
|
#time {
|
||
|
margin-bottom: 0px;
|
||
|
padding-bottom: 0px;
|
||
|
text-align: center;
|
||
|
width: 95%;
|
||
|
vertical-align: middle;
|
||
|
font-family: monospace;
|
||
|
}
|
||
|
|
||
|
#date {
|
||
|
font-size: 50px;
|
||
|
margin-top: -40px;
|
||
|
}
|