style.css 6.0 KB

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