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.

64 lines
1.1 KiB

  1. #main-toolbar #activity-button {
  2. background-image: url(../activity/activity-icon.svg);
  3. }
  4. #main-toolbar #play-pause.play {
  5. background-image: url(../icons/play.svg)
  6. }
  7. #main-toolbar #play-pause.pause {
  8. background-image: url(../icons/pause.svg)
  9. }
  10. #main-toolbar #random {
  11. background-image: url(../icons/random.svg);
  12. }
  13. #main-toolbar #glider {
  14. background-image: url(../icons/glider.svg);
  15. }
  16. #main-toolbar #no {
  17. background-image: url(../icons/no.svg);
  18. }
  19. #main-toolbar #clear {
  20. background-image: url(../icons/clear.svg);
  21. }
  22. .main {
  23. position: relative;
  24. width: 100%;
  25. background: #FBF6F5;
  26. height: calc(100vh - 56px);
  27. display: -ms-flexbox;
  28. display: flex;
  29. -ms-flex-pack: center;
  30. justify-content: center;
  31. -ms-flex-align: center;
  32. align-items: center;
  33. flex-direction: column;
  34. }
  35. canvas {
  36. z-index: 1;
  37. }
  38. .generation-container {
  39. display: flex;
  40. flex-direction: column;
  41. width: 100%;
  42. height: 100px;
  43. }
  44. .generation-status {
  45. width: 100%;
  46. height: 30px;
  47. text-align: center;
  48. letter-spacing: 4.2px;
  49. font-size: 16px;
  50. }
  51. .generation-count {
  52. flex: 1;
  53. text-align: center;
  54. font-size: 72px;
  55. font-weight: 800;
  56. }
  57. #activity-palette {
  58. z-index: 30;
  59. }