1
0

clock.css 394 B

1234567891011121314151617181920212223
  1. html body {
  2. margin: 0;
  3. padding: 0;
  4. height: 100vh;
  5. font-family: 'Courier New', Courier, monospace;
  6. }
  7. #app {
  8. display: flex;
  9. justify-content: center;
  10. align-items: center;
  11. flex-direction: column;
  12. height: 100vh;
  13. background-color: plum;
  14. font-size: 6em;
  15. color: aliceblue;
  16. }
  17. #title {
  18. font-size: 0.5em;
  19. color: black;
  20. margin-bottom: 0.5em;
  21. }