index.css 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459
  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. #btnDownArrow {
  95. position: absolute;
  96. bottom: 35px;
  97. right: 30px;
  98. }
  99. #loadingText {
  100. width: 100%;
  101. height: 60px;
  102. position: absolute;
  103. top: 50%;
  104. left: 0;
  105. margin-top: -30px;
  106. color: white;
  107. text-align: center;
  108. padding-top: 10px;
  109. font-size: 30px;
  110. transition: transform 0.25s ease-in-out;
  111. -webkit-transition: -webkit-transform 0.25s ease-in-out;
  112. z-index: 3;
  113. cursor: default;
  114. background-color: #3B789A;
  115. }
  116. .loadingText {
  117. transform: translateX(120%);
  118. -webkit-transform: translateX(120%);
  119. }
  120. #errorZone {
  121. display:none;
  122. position: absolute;
  123. width: 50%;
  124. left: 25%;
  125. bottom: 80px;
  126. background-color: #C73228;
  127. padding:20px;
  128. border-radius: 5px;
  129. color:white;
  130. font-family: 'Inconsolata';
  131. }
  132. #errorZone button {
  133. position: absolute;
  134. top: 3px;
  135. right: 10px;
  136. padding: 0;
  137. cursor: pointer;
  138. background: transparent;
  139. border: 0;
  140. -webkit-appearance: none;
  141. color: #000;
  142. text-shadow: 0 1px 0 #fff;
  143. opacity: .4;
  144. font-size: 1.8em;
  145. }
  146. /* animation bar */
  147. #animationBar {
  148. position: absolute;
  149. bottom: 0px;
  150. display: none;
  151. align-items: center;
  152. color: white;
  153. width: calc(100% - 168px);
  154. min-height: 30px;
  155. }
  156. .row {
  157. display: flex;
  158. flex-direction: row;
  159. justify-content: center;
  160. flex-grow: 10;
  161. align-items: center
  162. }
  163. #animationBar * {
  164. padding: 0px;
  165. margin: 0px;
  166. }
  167. #animationBar {
  168. background-color: #3B789A;
  169. }
  170. #animationBar img {
  171. width: 36px;
  172. height: 36px;
  173. margin: 10px;
  174. }
  175. .dropdown {
  176. position: relative;
  177. display: inline-block;
  178. width: 200px;
  179. }
  180. #dropdownBtn,
  181. #playBtn {
  182. display: flex;
  183. align-items: center;
  184. }
  185. #playBtn {
  186. border: none;
  187. background-color: inherit;
  188. }
  189. #playBtn:hover {
  190. background-color: #2c5a74; /* Add a hover color */
  191. }
  192. #playBtn:active {
  193. background-color: #162D3A; /* Add a hover color */
  194. }
  195. #playBtn:focus {
  196. outline: none !important;
  197. border: none;
  198. }
  199. #dropdownContent {
  200. background-color: #3B789A;
  201. }
  202. #dropdownLabel,
  203. #dropdownContent a {
  204. overflow: hidden;
  205. text-overflow: ellipsis;
  206. white-space: nowrap;
  207. padding: 10px 15px 10px 46px;
  208. }
  209. #dropdownLabel {
  210. cursor: pointer;
  211. width: 200px;
  212. padding: 0px 15px 2px 5px;
  213. }
  214. #dropdownBtn:hover {
  215. cursor: pointer;
  216. background-color: #2c5a74;
  217. transition: all 0.3s ease;
  218. }
  219. #dropdownContent a {
  220. max-width: 1000px;
  221. transition: color 0.5s;
  222. }
  223. #dropdownContent a:hover {
  224. background-color: #2c5a74;
  225. transition: all 0.3s ease;
  226. }
  227. #dropdownContent a:active {
  228. background-color: #162D3A;
  229. transition: all 0.3s ease;
  230. }
  231. #dropdownContent {
  232. display: none;
  233. position: absolute;
  234. bottom: 56px;
  235. border-bottom: 1px solid white;
  236. z-index: 1;
  237. min-width: 135px;
  238. width: 200px;
  239. }
  240. #dropdownContent a,
  241. #playBtn {
  242. cursor: pointer;
  243. }
  244. .dropdown:hover #dropdownContent {
  245. display: flex;
  246. flex-direction: column;
  247. transition: all 0.3s ease; /* Add transition for hover effects */
  248. }
  249. #chevronUp {
  250. display: inline;
  251. margin-right: 0px;
  252. margin-left: 0px;
  253. }
  254. #chevronDown {
  255. display: none;
  256. margin-right: 0px;
  257. margin-left: 0px;
  258. }
  259. .dropdown:hover #chevronUp {
  260. display: none;
  261. }
  262. .dropdown:hover #chevronDown {
  263. display: inline;
  264. }
  265. #playBtn.play #pauseImg,
  266. #playBtn.pause #playImg{
  267. display: none;
  268. }
  269. #slider {
  270. -webkit-appearance: none;
  271. cursor: pointer;
  272. width: 1000px;
  273. outline: none;
  274. border-radius: 5px;
  275. margin-left: 20px;
  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. 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. }