style.css 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  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. font-size: 100%;
  83. }
  84. #obj-tooltip {
  85. position: absolute;
  86. top: 40px;
  87. right: 0px;
  88. width: 20%;
  89. font-family: 'Source Code Pro';
  90. color: #808080;
  91. font-size: 100%;
  92. }
  93. #val-tooltip {
  94. position: absolute;
  95. top: 150px;
  96. right: 0px;
  97. width: 20%;
  98. font-family: 'Source Code Pro';
  99. color: #808080;
  100. font-size: 100%;
  101. }
  102. #ts-tooltip {
  103. position: absolute;
  104. top: 180px;
  105. right: 0px;
  106. width: 20%;
  107. font-family: 'Source Code Pro';
  108. color: #808080;
  109. font-size: 100%;
  110. }
  111. #delta-tooltip {
  112. position: absolute;
  113. top: 230px;
  114. right: 0px;
  115. width: 20%;
  116. font-family: 'Source Code Pro';
  117. color: #808080;
  118. font-size: 100%;
  119. }
  120. #stat-tooltip {
  121. position: absolute;
  122. top: 100px;
  123. right: 0px;
  124. width: 20%;
  125. font-family: 'Source Code Pro';
  126. color: #808080;
  127. }
  128. #message {
  129. position: absolute;
  130. top: 150px;
  131. left: 10px;
  132. width: 20%;
  133. }
  134. #orientation {
  135. position: absolute;
  136. bottom: 140px;
  137. right: 10px;
  138. width: 200px;
  139. }
  140. #settings {
  141. position: absolute;
  142. top: 420px;
  143. left: 10px;
  144. width: 20%;
  145. }
  146. .bar-header {
  147. /* flexbox setup */
  148. display: -webkit-flex; /* Safari */
  149. display: flex;
  150. -webkit-flex-direction: row; /* Safari */
  151. flex-direction: row;
  152. /*border: 1px solid #333333;*/
  153. padding-right: 5px;
  154. background-color: rgba(0,0,0,0.6);
  155. }
  156. .bar-title {
  157. text-align: center;
  158. width: 100%;
  159. padding: 10px;
  160. /*border: 1px solid #333333;*/
  161. margin-right: 5px;
  162. color: white;
  163. background-color: rgba(160,160,160,0.5);
  164. }
  165. .bar-dropdown,
  166. .bar-close {
  167. text-align: center;
  168. width: 16px;
  169. height: 16px;
  170. padding: 5px;
  171. /*border: 1px solid #333333;*/
  172. background-color: rgba(160,160,160,0.5);
  173. color: white;
  174. }
  175. .bar-title:hover {
  176. color: #f7b733;
  177. cursor: pointer;
  178. }
  179. .bar-dropdown:hover,
  180. .bar-close:hover {
  181. background-color:#f7b733;
  182. cursor: pointer;
  183. }
  184. .bar-settings {
  185. background-color: rgba(21, 21, 21, .4);
  186. height: 200px;
  187. font-size: 12px;
  188. /*
  189. transition-property: all;
  190. transition-duration: .5s;
  191. transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  192. */
  193. }
  194. .bar-message {
  195. overflow-x: hidden;
  196. overflow-y: hidden;
  197. background-color: rgba(21, 21, 21, .4);
  198. height: 200px;
  199. font-size: 12px;
  200. /*
  201. transition-property: all;
  202. transition-duration: .5s;
  203. transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  204. */
  205. }
  206. .bar-orientation {
  207. overflow-x: hidden;
  208. overflow-y: hidden;
  209. background-color: rgba(21, 21, 21, .4);
  210. height: 200px;
  211. font-size: 12px;
  212. /*
  213. transition-property: all;
  214. transition-duration: .5s;
  215. transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  216. */
  217. }
  218. .bar-wrapper > div {
  219. margin-bottom: 5px;
  220. }
  221. .bar-hl {
  222. color: #f7b733;
  223. margin-right: 5px;
  224. }
  225. .bar-info {
  226. color: #fff;
  227. }
  228. .bar-button {
  229. text-align: center;
  230. width: 150px;
  231. padding: 10px;
  232. color: white;
  233. background-color: rgba(160,160,160,0.5);
  234. }
  235. #control-panel {
  236. width: 450px;
  237. position: absolute;
  238. bottom: 10px;
  239. left: 10px;
  240. }
  241. .bar-button:hover {
  242. background-color: #f7b733;
  243. }
  244. .bar-pil {
  245. width: 100px;
  246. font-size: 12px;
  247. font-family: 'Source Code Pro';
  248. padding: 0 10px 10px 10px;
  249. background-color: rgba(160,160,160,1.0);
  250. text-align: center;
  251. padding: 10px;
  252. /*border: 1px solid #333333;*/
  253. margin-right: 5px;
  254. color: white;
  255. }
  256. .bar-pil:hover {
  257. background-color:#f7b733;
  258. cursor: pointer;
  259. }
  260. #window-tab {
  261. display: none;
  262. position: absolute;
  263. left: 180px;
  264. bottom: 58px;
  265. }
  266. .bar-setup {
  267. /* flexbox setup */
  268. display: -webkit-flex; /* Safari */
  269. display: flex;
  270. -webkit-flex-direction: row; /* Safari */
  271. flex-direction: row;
  272. }
  273. .bl, .br {
  274. flex: 1;
  275. }
  276. #bg-color {
  277. width: 50px;
  278. }
  279. #start_time {
  280. width: 70px;
  281. }
  282. #end_time {
  283. width: 70px;
  284. }
  285. #slider-range {
  286. margin-right: 20px;
  287. }
  288. .number {
  289. font-size: 100px;
  290. }
  291. #kit-logo {
  292. position: absolute;
  293. left: 10px;
  294. top: 10px;
  295. height: 10%;
  296. }
  297. #kit-logo img {
  298. height: 100%;
  299. width: 100%;
  300. }
  301. #competence-logo {
  302. position: absolute;
  303. right: 240px;
  304. bottom: 10px;
  305. }
  306. #competence-logo > img,
  307. #ipe-logo > img {
  308. height: 50px;
  309. }
  310. #ipe-logo {
  311. position: absolute;
  312. right: 60px;
  313. bottom: 10px;
  314. }