index.css 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461
  1. html, body {
  2. width: 100%;
  3. height: 100%;
  4. padding: 0;
  5. margin: 0;
  6. overflow: hidden;
  7. font-family: "Segoe WP", "Segoe UI", "Verdana", "Arial";
  8. background: #a9b5bc;
  9. }
  10. .hidden {
  11. display: none;
  12. }
  13. #renderCanvas {
  14. position: relative;
  15. overflow: hidden;
  16. width: 100%;
  17. height: calc(100% - 56px);
  18. top: 0;
  19. margin: 0;
  20. right: 0;
  21. left: 0;
  22. touch-action: none;
  23. -ms-touch-action: none;
  24. margin-bottom: -4px
  25. }
  26. a {
  27. color: white;
  28. }
  29. a:visited {
  30. color: white;
  31. }
  32. .footer {
  33. position: relative;
  34. width: 100%;
  35. height: 56px;
  36. bottom: 0;
  37. margin: 0;
  38. padding: 0;
  39. right: 0;
  40. left: 0;
  41. background-color: #3B789A;
  42. }
  43. .footerRight {
  44. display: inline;
  45. position: absolute;
  46. bottom: 0;
  47. right: 0px;
  48. top: 0px;
  49. }
  50. .footerRight a {
  51. float: left; /* Float links side by side */
  52. width: 56px;
  53. height: 56px;
  54. margin: 0px;
  55. padding: 0;
  56. transition: all 0.3s ease; /* Add transition for hover effects */
  57. }
  58. .footerRight a img {
  59. width: 36px;
  60. height: 36px;
  61. margin: 10px;
  62. }
  63. .footerRight a:hover {
  64. background-color: #2c5a74; /* Add a hover color */
  65. }
  66. .footerRight a:active {
  67. background-color: #162D3A; /* Add a hover color */
  68. }
  69. .custom-upload {
  70. position: relative;
  71. background:url(./Assets/Icon_OpenFile.svg) center right no-repeat;
  72. width: 36px;
  73. height: 36px;
  74. margin: 10px;
  75. }
  76. .custom-upload input[type=file]
  77. {
  78. outline:none;
  79. position: relative;
  80. text-align: right;
  81. -moz-opacity:0 ;
  82. opacity: 0;
  83. z-index: 2;
  84. width:100%;
  85. height:100%;
  86. filter:alpha(opacity=0);
  87. }
  88. #logo {
  89. position: absolute;
  90. top:0;
  91. width: 100%;
  92. height: 100%;
  93. background: url('./Assets/Logo_Fullscreen.svg') no-repeat 0 0;
  94. background-position: center;
  95. background-size: 50%;
  96. pointer-events: none;
  97. }
  98. #droptext {
  99. position: absolute;
  100. text-align: center;
  101. color: #fff;
  102. height: 50px;
  103. width: 100%;
  104. bottom: 5%;
  105. }
  106. #btnDownArrow {
  107. position: absolute;
  108. bottom: 35px;
  109. right: 30px;
  110. }
  111. #loadingText {
  112. width: 100%;
  113. height: 60px;
  114. position: absolute;
  115. top: 50%;
  116. left: 0;
  117. margin-top: -30px;
  118. color: white;
  119. text-align: center;
  120. padding-top: 10px;
  121. font-size: 30px;
  122. transition: transform 0.25s ease-in-out;
  123. -webkit-transition: -webkit-transform 0.25s ease-in-out;
  124. z-index: 3;
  125. cursor: default;
  126. background-color: #3B789A;
  127. }
  128. .loadingText {
  129. transform: translateX(120%);
  130. -webkit-transform: translateX(120%);
  131. }
  132. #errorZone {
  133. display:none;
  134. position: absolute;
  135. width: 50%;
  136. left: 25%;
  137. bottom: 80px;
  138. background-color: #C73228;
  139. padding:20px;
  140. border-radius: 5px;
  141. color:white;
  142. font-family: 'Inconsolata';
  143. }
  144. #errorZone button {
  145. position: absolute;
  146. top: 3px;
  147. right: 10px;
  148. padding: 0;
  149. cursor: pointer;
  150. background: transparent;
  151. border: 0;
  152. -webkit-appearance: none;
  153. color: #000;
  154. text-shadow: 0 1px 0 #fff;
  155. opacity: .4;
  156. font-size: 1.8em;
  157. }
  158. /* animation bar */
  159. #animationBar {
  160. position: absolute;
  161. bottom: 0px;
  162. display: none;
  163. align-items: center;
  164. color: white;
  165. width: calc(100% - 168px);
  166. min-height: 30px;
  167. }
  168. .row {
  169. display: flex;
  170. flex-direction: row;
  171. justify-content: center;
  172. flex-grow: 10;
  173. align-items: center
  174. }
  175. #animationBar * {
  176. padding: 0px;
  177. margin: 0px;
  178. }
  179. #animationBar {
  180. background-color: #3B789A;
  181. }
  182. #animationBar img {
  183. width: 36px;
  184. height: 36px;
  185. margin: 10px;
  186. }
  187. .dropdown {
  188. position: relative;
  189. display: inline-block;
  190. width: 200px;
  191. }
  192. #dropdownBtn,
  193. #playBtn {
  194. display: flex;
  195. align-items: center;
  196. }
  197. #playBtn {
  198. border: none;
  199. background-color: inherit;
  200. }
  201. #playBtn:hover {
  202. background-color: #2c5a74; /* Add a hover color */
  203. }
  204. #playBtn:active {
  205. background-color: #162D3A; /* Add a hover color */
  206. }
  207. #playBtn:focus {
  208. outline: none !important;
  209. border: none;
  210. }
  211. #dropdownContent {
  212. background-color: #3B789A;
  213. }
  214. #dropdownLabel,
  215. #dropdownContent a {
  216. overflow: hidden;
  217. text-overflow: ellipsis;
  218. white-space: nowrap;
  219. padding: 10px 15px 10px 46px;
  220. }
  221. #dropdownLabel {
  222. cursor: pointer;
  223. width: 200px;
  224. padding: 0px 15px 2px 5px;
  225. }
  226. #dropdownBtn:hover {
  227. cursor: pointer;
  228. background-color: #2c5a74;
  229. transition: all 0.3s ease;
  230. }
  231. #dropdownContent a {
  232. max-width: 1000px;
  233. transition: color 0.5s;
  234. }
  235. #dropdownContent a:hover {
  236. background-color: #2c5a74;
  237. transition: all 0.3s ease;
  238. }
  239. #dropdownContent a:active {
  240. background-color: #162D3A;
  241. transition: all 0.3s ease;
  242. }
  243. #dropdownContent {
  244. display: none;
  245. position: absolute;
  246. bottom: 56px;
  247. border-bottom: 1px solid white;
  248. z-index: 1;
  249. min-width: 135px;
  250. width: 200px;
  251. flex-direction: column;
  252. transition: all 0.3s ease; /* Add transition for hover effects */
  253. }
  254. #dropdownContent a,
  255. #playBtn {
  256. cursor: pointer;
  257. }
  258. #chevronUp {
  259. display: inline;
  260. margin-right: 0px;
  261. margin-left: 0px;
  262. }
  263. #chevronDown {
  264. display: none;
  265. margin-right: 0px;
  266. margin-left: 0px;
  267. }
  268. #playBtn.play #pauseImg,
  269. #playBtn.pause #playImg{
  270. display: none;
  271. }
  272. #slider {
  273. -webkit-appearance: none;
  274. cursor: pointer;
  275. width: 1000px;
  276. height: 50px;
  277. outline: none;
  278. margin-left: 20px;
  279. background-color: transparent;
  280. }
  281. /*Chrome -webkit */
  282. #slider::-webkit-slider-thumb {
  283. -webkit-appearance: none;
  284. width: 20px;
  285. height: 20px;
  286. border: 2px solid white;
  287. border-radius: 50%;
  288. background: #3B789A;
  289. margin-top: -10px;
  290. }
  291. #slider::-webkit-slider-runnable-track {
  292. height: 2px;
  293. -webkit-appearance: none;
  294. background-color: white;
  295. }
  296. /** FireFox -moz */
  297. #slider::-moz-range-progress {
  298. background-color: white;
  299. height: 2px;
  300. }
  301. #slider::-moz-range-thumb{
  302. width: 20px;
  303. height: 20px;
  304. border: 2px solid white;
  305. border-radius: 50%;
  306. background: #3B789A;
  307. }
  308. #slider::-moz-range-track {
  309. background: white;
  310. height: 2px;
  311. }
  312. /** IE -ms */
  313. #slider::-ms-track {
  314. height: 2px;
  315. /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
  316. background: transparent;
  317. /*leave room for the larger thumb to overflow with a transparent border */
  318. border-color: transparent;
  319. border-width: 10px 0;
  320. /*remove default tick marks*/
  321. color: transparent;
  322. }
  323. #slider::-ms-fill-lower {
  324. background: white;
  325. border-radius: 5px;
  326. }
  327. #slider::-ms-fill-upper {
  328. background: white;
  329. border-radius: 5px;
  330. }
  331. #slider::-ms-thumb {
  332. width: 16px;
  333. height: 16px;
  334. border: 2px solid white;
  335. border-radius: 50%;
  336. background: #3B789A;
  337. margin-top: 0px;
  338. }
  339. @media (min-width: 0px) {
  340. #slider {
  341. display: none;
  342. }
  343. .dropdown {
  344. width: 56px;
  345. }
  346. #dropdownLabel {
  347. display: none;
  348. }
  349. #dropdownContent a {
  350. max-width: 200px;
  351. }
  352. }
  353. @media (min-width: 480px) {
  354. #slider,
  355. #dropdownLabel {
  356. display: initial;
  357. }
  358. #slider {
  359. width: 100px;
  360. }
  361. .dropdown {
  362. width: 150px;
  363. }
  364. #dropdownContent {
  365. width: 150px;
  366. }
  367. }
  368. @media (min-width: 768px) {
  369. #slider,
  370. #dropdownLabel {
  371. display: initial;
  372. }
  373. #slider {
  374. width: 300px;
  375. }
  376. .dropdown {
  377. width: 200px;
  378. }
  379. #dropdownContent {
  380. width: 200px;
  381. }
  382. }
  383. @media (min-width: 992px) {
  384. #slider,
  385. #dropdownLabel {
  386. display: initial;
  387. }
  388. #slider {
  389. width: 400px;
  390. }
  391. }
  392. @media (min-width: 1200px) {
  393. #slider,
  394. #dropdownLabel {
  395. display: initial;
  396. }
  397. #slider {
  398. width: 700px;
  399. }
  400. }