style.css 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. @import url(https://fonts.googleapis.com/css?family=Source+Code+Pro);
  2. /* http://meyerweb.com/eric/tools/css/reset/
  3. v2.0 | 20110126
  4. License: none (public domain)
  5. */
  6. html, body, div, span, applet, object, iframe,
  7. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  8. a, abbr, acronym, address, big, cite, code,
  9. del, dfn, em, img, ins, kbd, q, s, samp,
  10. small, strike, strong, sub, sup, tt, var,
  11. b, u, i, center,
  12. dl, dt, dd, ol, ul, li,
  13. fieldset, form, label, legend,
  14. table, caption, tbody, tfoot, thead, tr, th, td,
  15. article, aside, canvas, details, embed,
  16. figure, figcaption, footer, header, hgroup,
  17. menu, nav, output, ruby, section, summary,
  18. time, mark, audio, video {
  19. margin: 0;
  20. padding: 0;
  21. border: 0;
  22. font-size: 100%;
  23. font: inherit;
  24. vertical-align: baseline;
  25. }
  26. /* HTML5 display-role reset for older browsers */
  27. article, aside, details, figcaption, figure,
  28. footer, header, hgroup, menu, nav, section {
  29. display: block;
  30. }
  31. body {
  32. line-height: 1;
  33. }
  34. ol, ul {
  35. list-style: none;
  36. }
  37. blockquote, q {
  38. quotes: none;
  39. }
  40. blockquote:before, blockquote:after,
  41. q:before, q:after {
  42. content: '';
  43. content: none;
  44. }
  45. table {
  46. border-collapse: collapse;
  47. border-spacing: 0;
  48. }
  49. .noselect {
  50. -webkit-touch-callout: none; /* iOS Safari */
  51. -webkit-user-select: none; /* Chrome/Safari/Opera */
  52. -khtml-user-select: none; /* Konqueror */
  53. -moz-user-select: none; /* Firefox */
  54. -ms-user-select: none; /* Internet Explorer/Edge */
  55. user-select: none; /* Non-prefixed version, currently
  56. not supported by any browser */
  57. }
  58. .window-item,
  59. .window-cp,
  60. .window-unitem {
  61. font-family: 'Source Code Pro';
  62. border: 1px solid #333333;
  63. border-radius: 10px;
  64. padding: 0 10px 10px 10px;
  65. background-color: rgba(210,210,210,0.5);
  66. -webkit-box-shadow: 0px 0px 2px 2px rgba(0,0,0,0.58);
  67. -moz-box-shadow: 0px 0px 2px 2px rgba(0,0,0,0.58);
  68. box-shadow: 0px 0px 2px 2px rgba(0,0,0,0.58);
  69. }
  70. #slider {
  71. position: absolute;
  72. top: 10px;
  73. left: 500px;
  74. width: 20%;
  75. }
  76. #slider-tooltip {
  77. position: absolute;
  78. top: 40px;
  79. left: 40%;
  80. font-family: 'Source Code Pro';
  81. color: #808080;
  82. }
  83. #obj-tooltip {
  84. position: absolute;
  85. top: 40px;
  86. right: 0px;
  87. width: 20%;
  88. font-family: 'Source Code Pro';
  89. color: #808080;
  90. }
  91. #val-tooltip {
  92. position: absolute;
  93. top: 80px;
  94. right: 0px;
  95. width: 20%;
  96. font-family: 'Source Code Pro';
  97. color: #808080;
  98. }
  99. #stat-tooltip {
  100. position: absolute;
  101. top: 100px;
  102. right: 0px;
  103. width: 20%;
  104. font-family: 'Source Code Pro';
  105. color: #808080;
  106. }
  107. #message {
  108. position: absolute;
  109. top: 10px;
  110. left: 10px;
  111. width: 20%;
  112. }
  113. #orientation {
  114. position: absolute;
  115. bottom: 10px;
  116. right: 10px;
  117. width: 200px;
  118. }
  119. #settings {
  120. position: absolute;
  121. top: 150px;
  122. right: 10px;
  123. width: 200px;
  124. }
  125. .bar-header {
  126. /* flexbox setup */
  127. display: -webkit-flex; /* Safari */
  128. display: flex;
  129. -webkit-flex-direction: row; /* Safari */
  130. flex-direction: row;
  131. /*border: 1px solid #333333;*/
  132. padding-right: 5px;
  133. background-color: rgba(0,0,0,0.6);
  134. }
  135. .bar-title {
  136. text-align: center;
  137. width: 100%;
  138. padding: 10px;
  139. /*border: 1px solid #333333;*/
  140. margin-right: 5px;
  141. color: white;
  142. background-color: rgba(160,160,160,0.5);
  143. }
  144. .bar-dropdown,
  145. .bar-close {
  146. text-align: center;
  147. width: 16px;
  148. height: 16px;
  149. padding: 5px;
  150. /*border: 1px solid #333333;*/
  151. background-color: rgba(160,160,160,0.5);
  152. color: white;
  153. }
  154. .bar-title:hover {
  155. color: #f7b733;
  156. cursor: pointer;
  157. }
  158. .bar-dropdown:hover,
  159. .bar-close:hover {
  160. background-color:#f7b733;
  161. cursor: pointer;
  162. }
  163. .bar-settings {
  164. background-color: rgba(21, 21, 21, .4);
  165. height: 200px;
  166. font-size: 12px;
  167. /*
  168. transition-property: all;
  169. transition-duration: .5s;
  170. transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  171. */
  172. }
  173. .bar-message {
  174. overflow-x: hidden;
  175. overflow-y: hidden;
  176. background-color: rgba(21, 21, 21, .4);
  177. height: 200px;
  178. font-size: 12px;
  179. /*
  180. transition-property: all;
  181. transition-duration: .5s;
  182. transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  183. */
  184. }
  185. .bar-orientation {
  186. overflow-x: hidden;
  187. overflow-y: hidden;
  188. background-color: rgba(21, 21, 21, .4);
  189. height: 200px;
  190. font-size: 12px;
  191. /*
  192. transition-property: all;
  193. transition-duration: .5s;
  194. transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  195. */
  196. }
  197. .bar-wrapper > div {
  198. margin-bottom: 5px;
  199. }
  200. .bar-hl {
  201. color: #f7b733;
  202. margin-right: 5px;
  203. }
  204. .bar-info {
  205. color: #fff;
  206. }
  207. .bar-button {
  208. text-align: center;
  209. width: 150px;
  210. padding: 10px;
  211. color: white;
  212. background-color: rgba(160,160,160,0.5);
  213. }
  214. #control-panel {
  215. width: 450px;
  216. position: absolute;
  217. bottom: 10px;
  218. left: 10px;
  219. }
  220. .bar-button:hover {
  221. background-color: #f7b733;
  222. }
  223. .bar-pil {
  224. width: 100px;
  225. font-size: 12px;
  226. font-family: 'Source Code Pro';
  227. padding: 0 10px 10px 10px;
  228. background-color: rgba(160,160,160,1.0);
  229. text-align: center;
  230. padding: 10px;
  231. /*border: 1px solid #333333;*/
  232. margin-right: 5px;
  233. color: white;
  234. }
  235. .bar-pil:hover {
  236. background-color:#f7b733;
  237. cursor: pointer;
  238. }
  239. #window-tab {
  240. display: none;
  241. position: absolute;
  242. left: 180px;
  243. bottom: 58px;
  244. }
  245. .bar-setup {
  246. /* flexbox setup */
  247. display: -webkit-flex; /* Safari */
  248. display: flex;
  249. -webkit-flex-direction: row; /* Safari */
  250. flex-direction: row;
  251. }
  252. .bl, .br {
  253. flex: 1;
  254. }
  255. #bg-color {
  256. width: 50px;
  257. }
  258. #start_time {
  259. width: 70px;
  260. }
  261. #end_time {
  262. width: 70px;
  263. }
  264. #slider-range {
  265. margin-right: 20px;
  266. }
  267. .number {
  268. font-size: 100px;
  269. }