Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. html, body, svg {
  2. padding:0;
  3. margin:0;
  4. font-family: Liberation sans, sans-serif;
  5. }
  6. #canvas {
  7. transform-origin: 0 0;
  8. }
  9. #loadingMessage {
  10. font-size: 1.5em;
  11. background: #3339 linear-gradient( #C4DFFF, #8FA2BC);
  12. padding: 20px;
  13. width: 40%;
  14. line-height: 50px;
  15. text-align: center;
  16. border-radius: 10px;
  17. position:fixed;
  18. top: 40%;
  19. left: 30%;
  20. z-index: 1;
  21. box-shadow: 0 0 2px black;
  22. transition: 1s;
  23. }
  24. #loadingMessage.hidden {
  25. opacity: 0;
  26. z-index: -1;
  27. }
  28. #loadingMessage::after {
  29. content: "...";
  30. }
  31. #menu {
  32. font-size: 16px;
  33. border-radius:0;
  34. overflow:hidden;
  35. position:fixed;
  36. left:0;
  37. top:0;
  38. color:black;
  39. height:100%;
  40. transition-duration:1s;
  41. cursor:default;
  42. padding: 10px;
  43. pointer-events: none;
  44. width: 300px;
  45. }
  46. #menu.closed {
  47. border-radius:3px;
  48. left:10px;
  49. top:10px;
  50. background-color:rgba(100,200,255,0.7);
  51. width:6vw;
  52. height:2em;
  53. transition-duration:1s;
  54. }
  55. #menu h2{ /*Menu title ("Menu")*/
  56. display: none;
  57. font-size:4vh;
  58. text-align: center;
  59. letter-spacing:.5vw;
  60. text-shadow: 0px 0px 5px white;
  61. color:black;
  62. padding:0;
  63. margin:0;
  64. }
  65. #menu .tools {
  66. list-style-type:none;
  67. padding:0;
  68. }
  69. #menu .tool {
  70. pointer-events: auto;
  71. white-space: nowrap;
  72. list-style-position:inside;
  73. border:0;
  74. text-decoration:none;
  75. transition-duration:0.5s;
  76. cursor:pointer;
  77. background: linear-gradient( #C4DFFF, #8FA2BC);
  78. margin-top: 10px;
  79. height: 60px;
  80. line-height: 60px;
  81. border-radius: 30px;
  82. max-width: 60px;
  83. transition-duration: .5s;
  84. overflow: hidden;
  85. width: max-content;
  86. box-shadow: inset 0 0 3px #8FA2BC;
  87. }
  88. @keyframes minimize {
  89. to {max-width:100%;}
  90. }
  91. #menu .tool:hover {
  92. color:black;
  93. animation-name: minimize;
  94. animation-duration: 1.2s;
  95. animation-iteration-count: 2;
  96. animation-timing-function: cubic-bezier(.08,.82,.17,1);
  97. animation-direction: alternate;
  98. }
  99. #menu .tool:focus-within,
  100. #menu #settings .tool:hover {
  101. max-width:100%;
  102. }
  103. #menu .tool.curTool {
  104. box-shadow: 0 0 5px #0074D9;
  105. background: linear-gradient(#96E1FF, #36A2FF);
  106. }
  107. #menu .tool-icon {
  108. display: inline-block;
  109. text-align:center;
  110. font-size:24px;
  111. width: 30px;
  112. margin-left: 15px;
  113. margin-right: 26px;
  114. height: 30px;
  115. max-height: 24px;
  116. height: 100%;
  117. margin: 0px 26px auto 15px;
  118. font-family: mono;
  119. }
  120. #menu .tool-icon > * {
  121. display: block;
  122. margin: auto;
  123. }
  124. #menu .tool-name {
  125. text-align: center;
  126. font-size: 25px;
  127. margin-right: 30px;
  128. }
  129. #menu .tool-name.slider {
  130. display: inline-block;
  131. width: 100px;
  132. height: 30px;
  133. font-size: 1.3em;
  134. line-height: 25px;
  135. vertical-align: top;
  136. padding: 6px;
  137. }
  138. input {
  139. font-size:16px;
  140. }
  141. #chooseColor {
  142. width:5vw;
  143. height:100%;
  144. border:1px solid black;
  145. border-radius:3px;
  146. color:black;
  147. text-shadow: 0 0 6px white;
  148. display: block;
  149. width: 100%;
  150. margin: 0;
  151. padding: 0;
  152. }
  153. .rangeChooser {
  154. display: block;
  155. border: 0;
  156. width: 100%;
  157. margin: 0;
  158. background: transparent;
  159. }