20 lines
417 B
CSS
20 lines
417 B
CSS
html, body {
|
|
font-family: "JetBrainsMono NF", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
color: #ebdbb2;
|
|
text-align: center;
|
|
background: #282828;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.clock {
|
|
font-size: 8rem;
|
|
}
|
|
|
|
.date {
|
|
font-size: 2rem;
|
|
}
|
|
|