not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
813 B

  1. #canvas {
  2. margin: 0;
  3. text-align: center;
  4. }
  5. #clock-container {
  6. position: relative;
  7. margin: 0 auto;
  8. }
  9. canvas {
  10. position: absolute;
  11. left: 0;
  12. top: 0;
  13. }
  14. #canvas {
  15. overflow-x: hidden;
  16. overflow-y: hidden;
  17. }
  18. #text-time {
  19. font-family: monospace;
  20. font-size: 35px;
  21. font-weight: bold;
  22. margin: 0;
  23. }
  24. #text-date {
  25. font-size: 25px;
  26. margin: 0;
  27. }
  28. #main-toolbar #activity-button {
  29. background-image: url(../activity/activity-clock.svg);
  30. }
  31. #main-toolbar #simple-clock-button {
  32. background-image: url(../icons/simple-clock.svg);
  33. }
  34. #main-toolbar #nice-clock-button {
  35. background-image: url(../icons/nice-clock.svg);
  36. }
  37. #main-toolbar #write-time-button {
  38. background-image: url(../icons/write-time.svg);
  39. }
  40. #main-toolbar #write-date-button {
  41. background-image: url(../icons/write-date.svg);
  42. }