style.css 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  1. *:fullscreen, *:-webkit-full-screen, *:-moz-full-screen {
  2. background-color: rgba(255,255,255,0);
  3. }
  4. h2 {
  5. font-size:1.4em;
  6. }
  7. .color {
  8. width:30px;
  9. height:30px;
  10. border:0.5px solid #eee;
  11. border-radius:3px;
  12. transition: 0.15s;
  13. margin-right:5px;
  14. float:left;
  15. }
  16. .color:hover {
  17. border: 0.5px solid #aaa;
  18. transform: scale(1.3);
  19. }
  20. .boxMouseOver {transition:0.2s;border:3px solid #fff;}
  21. .boxMouseOver:hover {
  22. border:3px solid #08d;
  23. border-radius:3px;
  24. cursor: pointer;
  25. }
  26. .leftBox {
  27. background:#fff;
  28. box-shadow:2px 0px 3px #ccc;
  29. top:0px;
  30. width:200px;
  31. height:100vh;
  32. padding:13px;
  33. position:absolute;
  34. z-index:2;
  35. display:none;
  36. font-size:0.9em;
  37. }
  38. #panel {
  39. display: block;
  40. left:-200px;
  41. transition-duration: 0.3s;
  42. transition-timing-function: ease-in;
  43. transition-delay: 250ms;
  44. }
  45. #areaValue {
  46. position:absolute;
  47. top:0;
  48. left:210px;
  49. padding:5px;
  50. color:#333;
  51. font-size:1.5em
  52. }
  53. header{display:none;font-size:11px}
  54. @media print {
  55. .leftBox {
  56. display: none;
  57. }
  58. header {display:block}
  59. #boxScale {display:none;}
  60. #boxbind {display:none;}
  61. #boxScale {display:none;}
  62. #moveBox {display:none;}
  63. #zoomBox {display:none;}
  64. #boxinfo {display:none;}
  65. #lin {height:19cm;width:27cm}
  66. #boxgrid {height:19cm;width:27cm}
  67. #areaValue {left:0px;top:10px}
  68. *,
  69. *:before,
  70. *:after,
  71. *:first-letter,
  72. p:first-line,
  73. div:first-line,
  74. blockquote:first-line,
  75. li:first-line {
  76. background: transparent !important;
  77. color: #000 !important;
  78. box-shadow: none !important;
  79. text-shadow: none !important;
  80. }
  81. }
  82. body {font-family: 'Roboto', sans-serif;overflow:hidden}
  83. input[type=range] {
  84. -webkit-appearance: none;
  85. margin: 18px 0;
  86. width: 100%;
  87. }
  88. input[type=range]:focus {
  89. outline: none;
  90. }
  91. input[type=range]::-webkit-slider-runnable-track {
  92. width: 100%;
  93. height: 8.4px;
  94. cursor: pointer;
  95. animate: 0.2s;
  96. background: #3071a9;
  97. border-radius: 1.3px;
  98. border: 0.2px solid #010101;
  99. }
  100. input[type=range]::-webkit-slider-thumb {
  101. border: 1px solid #000000;
  102. height: 20px;
  103. width: 16px;
  104. border-radius: 3px;
  105. background: #ffffff;
  106. cursor: pointer;
  107. -webkit-appearance: none;
  108. margin-top: -14px;
  109. }
  110. input[type=range]:focus::-webkit-slider-runnable-track {
  111. background: #367ebd;
  112. }
  113. input[type=range]::-moz-range-track {
  114. width: 100%;
  115. height: 8.4px;
  116. cursor: pointer;
  117. animate: 0.2s;
  118. background: #3071a9;
  119. border-radius: 1.3px;
  120. border: 0.2px solid #010101;
  121. }
  122. input[type=range]::-moz-range-thumb {
  123. border: 1px solid #000000;
  124. height: 20px;
  125. width: 16px;
  126. border-radius: 3px;
  127. background: #ffffff;
  128. cursor: pointer;
  129. }
  130. input[type=range]::-moz-focus-outer {
  131. border: 0;
  132. }
  133. input[type=range]::-ms-track {
  134. width: 100%;
  135. height: 8.4px;
  136. cursor: pointer;
  137. animate: 0.2s;
  138. background: transparent;
  139. border-color: transparent;
  140. border-width: 16px 0;
  141. color: transparent;
  142. }
  143. input[type=range]::-ms-fill-lower {
  144. background: #2a6495;
  145. border: 0.2px solid #010101;
  146. border-radius: 2.6px;
  147. box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  148. }
  149. input[type=range]::-ms-fill-upper {
  150. background: #3071a9;
  151. border: 0.2px solid #010101;
  152. border-radius: 2.6px;
  153. box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  154. }
  155. input[type=range]::-ms-thumb {
  156. box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  157. border: 1px solid #000000;
  158. height: 20px;
  159. width: 16px;
  160. border-radius: 3px;
  161. background: #ffffff;
  162. cursor: pointer;
  163. }
  164. input[type=range]:focus::-ms-fill-lower {
  165. background: #3071a9;
  166. }
  167. input[type=range]:focus::-ms-fill-upper {
  168. background: #367ebd;
  169. }
  170. .modalBox {
  171. position:absolute;
  172. display:none;
  173. top:0;
  174. left:0;
  175. width:100vw;
  176. height:100vh;
  177. z-index:1000
  178. }
  179. .modalBox::after {
  180. content: "";
  181. background-image: linear-gradient(#fff,#777);
  182. opacity: 0.5;
  183. top: 0;
  184. left: 0;
  185. width:100vw;
  186. height:100vh;
  187. position: absolute;
  188. z-index: -1;
  189. }
  190. .modalBoxContent {
  191. position: relative;
  192. margin: auto;
  193. padding:20px;
  194. width:300px;
  195. border-radius:5px;
  196. background:#fff;
  197. font-size:1.5em;
  198. box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  199. animation-name: animatetop;
  200. animation-duration: 0.3s
  201. }
  202. /* Add Animation */
  203. @keyframes animatetop {
  204. from {top: -300px; opacity: 0}
  205. to {top: 0; opacity: 1}
  206. }
  207. @keyframes animatedown {
  208. from {top: 0px; opacity: 1}
  209. to {top: -300px; opacity: 0}
  210. }
  211. .area {
  212. display:block;
  213. color:'#34e0be';
  214. fontSize:'12.5px';
  215. fontWeight:'normal';
  216. }
  217. .funkyradio div {
  218. clear: both;
  219. overflow: hidden;
  220. }
  221. .funkyradio label {
  222. width: 100%;
  223. border-radius: 3px;
  224. border: 1px solid #D1D3D4;
  225. font-weight: normal;
  226. }
  227. .funkyradio input[type="radio"]:empty,
  228. .funkyradio input[type="checkbox"]:empty {
  229. display: none;
  230. }
  231. .funkyradio input[type="radio"]:empty ~ label,
  232. .funkyradio input[type="checkbox"]:empty ~ label {
  233. position: relative;
  234. line-height: 2.5em;
  235. text-indent: 3.25em;
  236. cursor: pointer;
  237. -webkit-user-select: none;
  238. -moz-user-select: none;
  239. -ms-user-select: none;
  240. user-select: none;
  241. }
  242. .funkyradio input[type="radio"]:empty ~ label:before,
  243. .funkyradio input[type="checkbox"]:empty ~ label:before {
  244. position: absolute;
  245. display: block;
  246. top: 0;
  247. bottom: 0;
  248. left: 0;
  249. content: '';
  250. width: 2.5em;
  251. background: #D1D3D4;
  252. border-radius: 3px 0 0 3px;
  253. }
  254. .funkyradio input[type="radio"]:hover:not(:checked) ~ label,
  255. .funkyradio input[type="checkbox"]:hover:not(:checked) ~ label {
  256. color: #888;
  257. }
  258. .funkyradio input[type="radio"]:hover:not(:checked) ~ label:before,
  259. .funkyradio input[type="checkbox"]:hover:not(:checked) ~ label:before {
  260. content: '\2714';
  261. text-indent: .9em;
  262. color: #C2C2C2;
  263. }
  264. .funkyradio input[type="radio"]:checked ~ label,
  265. .funkyradio input[type="checkbox"]:checked ~ label {
  266. color: #777;
  267. }
  268. .funkyradio input[type="radio"]:checked ~ label:before,
  269. .funkyradio input[type="checkbox"]:checked ~ label:before {
  270. content: '\2714';
  271. text-indent: .9em;
  272. color: #333;
  273. background-color: #ccc;
  274. }
  275. .funkyradio input[type="radio"]:focus ~ label:before,
  276. .funkyradio input[type="checkbox"]:focus ~ label:before {
  277. box-shadow: 0 0 0 3px #999;
  278. }
  279. .funkyradio-default input[type="radio"]:checked ~ label:before,
  280. .funkyradio-default input[type="checkbox"]:checked ~ label:before {
  281. color: #333;
  282. background-color: #ccc;
  283. }
  284. .funkyradio-primary input[type="radio"]:checked ~ label:before,
  285. .funkyradio-primary input[type="checkbox"]:checked ~ label:before {
  286. color: #fff;
  287. background-color: #337ab7;
  288. }
  289. .funkyradio-success input[type="radio"]:checked ~ label:before,
  290. .funkyradio-success input[type="checkbox"]:checked ~ label:before {
  291. color: #fff;
  292. background-color: #5cb85c;
  293. }
  294. .funkyradio-danger input[type="radio"]:checked ~ label:before,
  295. .funkyradio-danger input[type="checkbox"]:checked ~ label:before {
  296. color: #fff;
  297. background-color: #d9534f;
  298. }
  299. .funkyradio-warning input[type="radio"]:checked ~ label:before,
  300. .funkyradio-warning input[type="checkbox"]:checked ~ label:before {
  301. color: #fff;
  302. background-color: #f0ad4e;
  303. }
  304. .funkyradio-info input[type="radio"]:checked ~ label:before,
  305. .funkyradio-info input[type="checkbox"]:checked ~ label:before {
  306. color: #fff;
  307. background-color: #5bc0de;
  308. }
  309. .roomColor {transition:all .1s ease-in-out;float:left;width:36px;height:36px;border-radius:5px 5px 18px 5px;margin:3px}
  310. .roomColor:hover {transform: scale(1.1);cursor:pointer;border:1px solid #333;}
  311. .btn {margin-bottom:6px;transition:all 0.3s}
  312. .fully {width:100%}
  313. .halfy {width:47%}
  314. .btn:hover {background:#08d;}
  315. .ovv {transition:all 0.1s;}
  316. .circle_css {fill:#5cba79;fill-opacity:0.9;transition:all 0.4s}
  317. .circle_css_2 {stroke:#5cba79;stroke-width:0;fill:#5cba79;fill-opacity:0.9;animation: myAnim 0.6s linear infinite;}
  318. @keyframes myAnim{
  319. 0% { stroke-width:0}
  320. 50% { stroke-width:8}
  321. 100% { stroke-width:0}
  322. }
  323. @keyframes myAnim2{
  324. 0% { stroke-width:4}
  325. 50% { stroke-width:7}
  326. 100% { stroke-width:4}
  327. }
  328. .circle_css_3 {stroke:#5cba79;stroke-width:5;fill:#d7f00b;fill-opacity:1;transition:all 0.4s}
  329. .circleGum {fill-opacity:0.2;fill:#e1f410;stroke-width:4;stroke:#5cba79;transition:all 0.5s;animation: myAnim2 0.6s linear infinite;}
  330. .line_css {stroke:transparent;stroke-width:15;transition:all 0.2s}
  331. /*.line_css:hover {stroke:#08d;stroke-width:15;stroke-opacity:0.5;cursor:pointer;}*/
  332. .trash_css {stroke:transparent;stroke-width:5;transition:all 0.2s}
  333. .trash_css:hover {stroke:#f00;stroke-width:5;stroke-opacity:0.5;cursor:pointer;}
  334. html {height:100%;margin:0;padding:0}
  335. .tool_color {float:left;width:30px;height:30px;margin:2.2px}
  336. html {padding:0;margin:0;height:100%}
  337. #ex1Slider .slider-selection {
  338. background: #bec7cd;
  339. }
  340. .room {fill-opacity:0.6;}