index.css 8.0 KB

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