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.

101 lines
1.5 KiB

  1. #main-toolbar #activity-button {
  2. background-image: url(../activity/activity-icon.svg);
  3. z-index: 3;
  4. }
  5. #main-toolbar #box-button {
  6. background-image: url(../icons/box.svg);
  7. z-index: 3;
  8. }
  9. #main-toolbar #circle-button {
  10. background-image: url(../icons/circle.svg);
  11. z-index: 3;
  12. }
  13. #main-toolbar #triangle-button {
  14. background-image: url(../icons/triangle.svg);
  15. z-index: 3;
  16. }
  17. #main-toolbar #gravity-button {
  18. background-image: url(../icons/gravity0.svg);
  19. z-index: 3;
  20. }
  21. #main-toolbar #sensor-button {
  22. background-image: url(../icons/sensor.svg);
  23. z-index: 3;
  24. }
  25. #main-toolbar #clear-button {
  26. background-image: url(../icons/clear.svg);
  27. z-index: 3;
  28. }
  29. #main-toolbar #polygon-button {
  30. background-image: url(../icons/polygon.svg);
  31. z-index: 3;
  32. }
  33. #main-toolbar #apple-button {
  34. background-image: url(../icons/apple.svg);
  35. z-index: 3;
  36. }
  37. #run-button {
  38. background-image: url(../icons/play.svg);
  39. z-index:3;
  40. }
  41. #run-button.running{
  42. background-image: url(../icons/pause.svg);
  43. }
  44. #main-toolbar #stop-button {
  45. z-index: 3;
  46. }
  47. html, body, #viewport {
  48. margin: 0; background: #ffffff;
  49. }
  50. .palette {
  51. z-index: 10;
  52. }
  53. .pjs-meta {
  54. color: #fff;
  55. }
  56. canvas {
  57. position: absolute;
  58. top: 0;
  59. left: 0;
  60. right: 0;
  61. bottom: 0;
  62. z-index: 1;
  63. }
  64. @media screen and (max-width: 657px) {
  65. .toolbar {
  66. padding-left: 10px;
  67. }
  68. #main-toolbar #polygon-button {
  69. visibility: hidden;
  70. position: absolute;
  71. z-index: 0;
  72. }
  73. #main-toolbar #gravity-button {
  74. visibility: hidden;
  75. position: absolute;
  76. z-index: 0;
  77. }
  78. #main-toolbar #stop-button {
  79. position: absolute;
  80. }
  81. }