launcher.css 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068
  1. /*******************************************************************************
  2. * *
  3. * Fonts *
  4. * *
  5. ******************************************************************************/
  6. @font-face {
  7. font-family: 'Avenir Book';
  8. src: url('../fonts/Avenir-Book.ttf');
  9. }
  10. @font-face {
  11. font-family: 'Avenir Medium';
  12. src: url('../fonts/Avenir-Medium.ttf');
  13. }
  14. @font-face {
  15. font-family: 'Ringbearer';
  16. src: url('../fonts/Ringbearer.ttf');
  17. }
  18. /*******************************************************************************
  19. * *
  20. * Element Styles *
  21. * *
  22. ******************************************************************************/
  23. /* Reset body, html, and div presets. */
  24. body, html, div {
  25. margin: 0px;
  26. padding: 0px;
  27. }
  28. /* Reset p presets. */
  29. p {
  30. -webkit-margin-before: 0em;
  31. -webkit-margin-after: 0em;
  32. }
  33. /*body {
  34. background: url('./../images/backgrounds/0.jpg') no-repeat center center fixed;
  35. background-size: cover;
  36. }*/
  37. /*******************************************************************************
  38. * *
  39. * Frame Styles (frame.ejs) *
  40. * *
  41. ******************************************************************************/
  42. #frame_bar {
  43. -webkit-app-region: drag;
  44. -webkit-user-select: none;
  45. background: rgba(1, 2, 1, 0.5);
  46. min-height: 22px;
  47. display: flex;
  48. align-items: center;
  49. position: relative;
  50. z-index: 10000;
  51. }
  52. #frame_btn_dock {
  53. margin-left: 2px;
  54. }
  55. .frame_btn {
  56. height: 12px;
  57. width: 12px;
  58. border-radius: 50%;
  59. border: 0px;
  60. margin-left: 5px;
  61. -webkit-app-region: no-drag !important;
  62. cursor: pointer;
  63. }
  64. .frame_btn:focus {
  65. outline: 0px;
  66. }
  67. #frame_btn_close {
  68. background-color: #e74c32;
  69. }
  70. #frame_btn_close:hover,
  71. #frame_btn_close:focus {
  72. background-color: #FF9A8A;
  73. }
  74. #frame_btn_close:active {
  75. background-color: #ff8d7b;
  76. }
  77. #frame_btn_restoredown {
  78. background-color: #fed045;
  79. }
  80. #frame_btn_restoredown:hover,
  81. #frame_btn_restoredown:focus {
  82. background-color: #FFE9A9;
  83. }
  84. #frame_btn_restoredown:active {
  85. background-color: #ffde7b;
  86. }
  87. #frame_btn_minimize {
  88. background-color: #96e734;
  89. }
  90. #frame_btn_minimize:hover,
  91. #frame_btn_minimize:focus {
  92. background-color: #D6FFA6;
  93. }
  94. #frame_btn_minimize:active {
  95. background-color: #bfff76;
  96. }
  97. /*******************************************************************************
  98. * *
  99. * Login View (login.ejs) *
  100. * *
  101. ******************************************************************************/
  102. /* Login span styles. */
  103. .loginSpan {
  104. font-family: 'Avenir Book';
  105. font-size: 14px;
  106. color: #fff;
  107. font-weight: bold;
  108. }
  109. /* Styles for dimmer login span. */
  110. .loginSpanDim {
  111. font-family: 'Avenir Book';
  112. font-size: 12px;
  113. color: #848484;
  114. font-weight: bold;
  115. }
  116. /* Main login container. */
  117. #loginContainer {
  118. position: relative;
  119. display: flex;
  120. justify-content: center;
  121. align-items: center;
  122. height: 100%;
  123. width: 100%;
  124. }
  125. /* Login content wrapper. */
  126. #loginContent {
  127. display: flex;
  128. justify-content: center;
  129. align-items: center;
  130. height: 100%;
  131. padding: 0px 25px;
  132. }
  133. /* Login form. */
  134. #loginForm {
  135. display: flex;
  136. flex-direction: column;
  137. justify-content: center;
  138. align-items: center;
  139. }
  140. /* Login form anchor styles. */
  141. #loginForm a {
  142. font-family: 'Avenir Book';
  143. font-size: 12px;
  144. color: #848484;
  145. font-weight: bold;
  146. text-decoration: none;
  147. transition: 0.25s ease;
  148. }
  149. #loginForm a:hover,
  150. #loginForm a:focus {
  151. color: #a2a2a2;
  152. outline: none;
  153. }
  154. #loginForm a:active {
  155. color: #8b8b8b;
  156. }
  157. /* Logo on login form. */
  158. #loginImageSeal {
  159. border-radius: 50%;
  160. border: 2px solid #cad7e1;
  161. background: rgba(1, 2, 1, 0.5);
  162. height: 125px;
  163. width: 125px;
  164. box-shadow: 0px 0px 10px 0px rgb(0, 0, 0);
  165. margin-bottom: 20px;
  166. }
  167. /* Header on login view. */
  168. #loginSubheader {
  169. font-family: 'Avenir Medium';
  170. margin-bottom: 25px;
  171. font-size: 12px;
  172. letter-spacing: 1px;
  173. }
  174. /* Container to organize login field elements. */
  175. .loginFieldContainer {
  176. position: relative;
  177. display: flex;
  178. flex-direction: column;
  179. justify-content: center;
  180. align-items: center;
  181. }
  182. /* SVG icons on the login view. */
  183. .loginSVG {
  184. fill: #fff;
  185. height: 20px;
  186. width: 20px;
  187. }
  188. /* Span which displays errors related to login field content. */
  189. .loginErrorSpan {
  190. font-family: 'Avenir Medium';
  191. font-weight: bold;
  192. font-size: 8px;
  193. color: #ff1b0c;
  194. width: 100%;
  195. text-align: right;
  196. position: absolute;
  197. top: 7px;
  198. }
  199. /* Login text input styles. */
  200. .loginField {
  201. font-family: 'Avenir Book';
  202. background: none;
  203. border-width: 1.5px 0px 0px 0px;
  204. border-style: solid;
  205. width: 250px;
  206. margin-bottom: 20px;
  207. border-color: #fff;
  208. color: rgba(255, 255, 255, 0.75);
  209. font-weight: bold;
  210. text-align: center;
  211. box-sizing: border-box;
  212. padding: 7.5px;
  213. font-size: 10px;
  214. letter-spacing: 1px;
  215. }
  216. .loginField:focus {
  217. outline: none;
  218. }
  219. .loginField::-webkit-input-placeholder {
  220. color: rgba(255, 255, 255, 0.75);
  221. font-size: 10px;
  222. letter-spacing: 1px;
  223. text-align: center;
  224. font-weight: bold;
  225. }
  226. .loginField:focus::-webkit-input-placeholder {
  227. color: transparent;
  228. }
  229. /* Add spacing between password field and options bar. */
  230. #labelPassword {
  231. margin-bottom: 13px;
  232. }
  233. /* Container which contains the forgot and remember options. */
  234. #loginOptions {
  235. display: flex;
  236. justify-content: space-between;
  237. width: 100%;
  238. }
  239. /* Remember option text. */
  240. #loginRememberText {
  241. padding-right: 10px;
  242. transition: 0.25s ease;
  243. }
  244. /* Login button styles. */
  245. #loginButton {
  246. background: none;
  247. color: #fff;
  248. font-weight: bold;
  249. font-family: 'Avenir Book';
  250. letter-spacing: 2px;
  251. border: none;
  252. padding: 15px 5px;
  253. margin: 10px 0px;
  254. cursor: pointer;
  255. position: relative;
  256. right: -20px;
  257. transition: 0.5s ease;
  258. }
  259. #loginButton:disabled {
  260. color: rgba(255, 255, 255, 0.75);
  261. pointer-events: none;
  262. }
  263. #loginButton:hover,
  264. #loginButton:focus {
  265. text-shadow: 0px 0px 20px #fff;
  266. outline: none;
  267. }
  268. #loginButton:active {
  269. color: #c7c7c7;
  270. text-shadow: 0px 0px 20px #c7c7c7;
  271. }
  272. #loginSVG {
  273. -webkit-transform: translate3d(0, 0, 0);
  274. overflow: visible;
  275. transform: rotate(90deg);
  276. margin-left: 20px;
  277. transition: 0.25s ease;
  278. width: 20px;
  279. height: 20px;
  280. }
  281. #loginButton:hover #loginSVG,
  282. #loginButton:focus #loginSVG {
  283. -webkit-filter: drop-shadow(0px 0px 2px #fff);
  284. }
  285. #loginButton:active #loginSVG .arrowLine {
  286. stroke: #c7c7c7;
  287. }
  288. #loginButton:active #loginSVG {
  289. -webkit-filter: drop-shadow(0px 0px 2px #c7c7c7);
  290. }
  291. #loginButtonContent {
  292. display: flex;
  293. align-items: center;
  294. }
  295. #loginButton .circle-loader,
  296. #loginButton:disabled #loginSVG {
  297. display: none;
  298. }
  299. #loginButton:disabled .circle-loader,
  300. #loginButton #loginSVG {
  301. display: initial;
  302. }
  303. .circle-loader {
  304. margin-left: 20px;
  305. border: 2px solid rgba(255, 255, 255, 0.5);
  306. border-left-color: #ffffff;
  307. animation-name: loader-spin;
  308. animation-duration: 1s;
  309. animation-iteration-count: infinite;
  310. animation-timing-function: linear;
  311. position: relative;
  312. display: inline-block;
  313. vertical-align: top;
  314. border-radius: 50%;
  315. width: 16px;
  316. height: 16px;
  317. }
  318. .load-complete {
  319. animation: none;
  320. border-color: #ffffff;
  321. transition: border 500ms ease-out;
  322. }
  323. .checkmark {
  324. display: none;
  325. }
  326. .checkmark.draw:after {
  327. animation-duration: 800ms;
  328. animation-timing-function: ease;
  329. animation-name: checkmark;
  330. transform: scaleX(-1) rotate(135deg);
  331. }
  332. .checkmark:after {
  333. opacity: 1;
  334. height: 8px;
  335. width: 4px;
  336. transform-origin: left top;
  337. border-right: 2px solid #ffffff;
  338. border-top: 2px solid #ffffff;
  339. content: '';
  340. left: 2px;
  341. top: 8px;
  342. position: absolute;
  343. }
  344. @keyframes loader-spin {
  345. 0% {
  346. transform: rotate(0deg);
  347. }
  348. 100% {
  349. transform: rotate(360deg);
  350. }
  351. }
  352. @keyframes checkmark {
  353. 0% {
  354. height: 0;
  355. width: 0;
  356. opacity: 1;
  357. }
  358. 20% {
  359. height: 0;
  360. width: 4px;
  361. opacity: 1;
  362. }
  363. 40% {
  364. height: 8px;
  365. width: 4px;
  366. opacity: 1;
  367. }
  368. 100% {
  369. height: 8px;
  370. width: 4px;
  371. opacity: 1;
  372. }
  373. }
  374. /*.spinningCircle {
  375. margin-left: 20px;
  376. height: 16px;
  377. width: 16px;
  378. border-radius: 50%;
  379. border: 2px solid rgba(255,255,255,0);
  380. border-top-color: #ffffff;
  381. border-right-color: #ffffff;
  382. border-left-color: rgba(255, 255, 255, 0.50);
  383. border-bottom-color: rgba(255, 255, 255, 0.50);
  384. animation: single2 4s infinite linear;
  385. }
  386. @keyframes single2 {
  387. 0% {
  388. transform: rotate(0deg);
  389. }
  390. 100% {
  391. transform: rotate(720deg);
  392. }
  393. }*/
  394. /* Disclaimer container. */
  395. #loginDisclaimer {
  396. display: flex;
  397. flex-direction: column;
  398. justify-content: center;
  399. align-items: center;
  400. }
  401. /* Add spacing between register anchor and disclaimer. */
  402. #loginRegisterSpan {
  403. margin-bottom: 5px;
  404. }
  405. /* Disclaimer text styles. */
  406. .loginDisclaimerText {
  407. font-family: 'Avenir Book';
  408. font-size: 7px;
  409. color: #848484;
  410. font-weight: bold;
  411. text-align: center;
  412. }
  413. /* * *
  414. * Login View | Custom Checkbox
  415. * * */
  416. /* Checkbox container. */
  417. #checkmarkContainer {
  418. display: flex;
  419. justify-content: flex-end;
  420. align-items: center;
  421. position: relative;
  422. cursor: pointer;
  423. font-size: 22px;
  424. -webkit-user-select: none;
  425. }
  426. /* Hide the default checkbox. */
  427. #checkmarkContainer input {
  428. opacity: 0;
  429. cursor: pointer;
  430. position: absolute;
  431. }
  432. /* Create a custom checkbox. */
  433. .loginCheckmark {
  434. position: relative;
  435. height: 10px;
  436. width: 10px;
  437. border: 1px solid #848484;
  438. border-radius: 1px;
  439. background: none;
  440. transition: 0.25s ease;
  441. }
  442. /* On hover and focus, add a grey border color. */
  443. #checkmarkContainer:hover input ~ *,
  444. #checkmarkContainer input:focus ~ * {
  445. color: #a2a2a2;
  446. border-color: #a2a2a2;
  447. }
  448. /* On keydown, darken the checkbox a bit. */
  449. #checkmarkContainer input:active ~ *:not(#loginRememberText) {
  450. color: #8d8d8d;
  451. border-color: #8d8d8d;
  452. }
  453. #checkmarkContainer[disabled] {
  454. pointer-events: none;
  455. }
  456. /* For checked -> #checkmarkContainer input:checked ~ * */
  457. /* Create the checkmark/indicator (hidden when not checked). */
  458. .loginCheckmark:after {
  459. content: "";
  460. display: none;
  461. }
  462. /* Show the checkmark when checked. */
  463. #checkmarkContainer input:checked ~ .loginCheckmark:after {
  464. display: block;
  465. }
  466. /* Style the checkmark/indicator. */
  467. #checkmarkContainer .loginCheckmark:after {
  468. position: absolute;
  469. left: 3.5px;
  470. top: 0.5px;
  471. width: 2px;
  472. height: 6px;
  473. border: solid #a2a2a2;
  474. border-width: 0 2px 2px 0;
  475. transform: rotate(45deg);
  476. }
  477. /* * *
  478. * Login View | Error Overlay
  479. * * */
  480. #loginErrorContainer {
  481. position: absolute;
  482. display: none;
  483. align-items: center;
  484. justify-content: center;
  485. width: 100%;
  486. height: 100%;
  487. background: rgba(0, 0, 0, 0.50);
  488. }
  489. #loginContainer[error] > #loginErrorContainer {
  490. display: flex;
  491. }
  492. #loginContainer[error] > div:not(#loginErrorContainer) {
  493. filter: blur(3px) contrast(0.9) brightness(1.0);
  494. }
  495. #loginErrorContent {
  496. position: relative;
  497. display: flex;
  498. flex-direction: column;
  499. align-items: center;
  500. justify-content: space-between;
  501. width: 300px;
  502. height: 35%;
  503. box-sizing: border-box;
  504. padding: 15px 0px;
  505. /* background-color: #424242; */
  506. text-align: center;
  507. }
  508. #loginErrorTitle {
  509. font-family: 'Avenir Medium';
  510. font-size: 20px;
  511. color: #fff;
  512. font-weight: bold;
  513. letter-spacing: 1px;
  514. }
  515. #loginErrorDesc {
  516. font-family: 'Avenir Book';
  517. font-size: 12px;
  518. color: #fff;
  519. font-weight: bold;
  520. }
  521. #loginErrorAcknowledge {
  522. background: none;
  523. border: 1px solid #ffffff;
  524. color: white;
  525. font-family: 'Avenir Medium';
  526. font-weight: bold;
  527. border-radius: 2px;
  528. width: 75px;
  529. cursor: pointer;
  530. }
  531. /* * *
  532. * Login View | Loader
  533. * * */
  534. /* Will reuse this elsewhere down the line.
  535. #loginLoading {
  536. position: absolute;
  537. display: flex;
  538. align-items: center;
  539. justify-content: center;
  540. width: 100%;
  541. height: 100%;
  542. background: rgba(0, 0, 0, 0.80);
  543. }
  544. #loginLoadingContent {
  545. position: relative;
  546. display: flex;
  547. flex-direction: column;
  548. align-items: center;
  549. justify-content: center;
  550. }
  551. #loadSpinnerContainer {
  552. position: relative;
  553. display: flex;
  554. align-items: center;
  555. justify-content: center;
  556. }
  557. #loadCenterImage {
  558. position: absolute;
  559. width: 200px;
  560. height: auto;
  561. }
  562. #loadSpinnerImage {
  563. width: 280px;
  564. height: auto;
  565. }
  566. #loadDescText {
  567. color: #f1eada;
  568. font-family: 'Avenir Medium';
  569. font-weight: bold;
  570. letter-spacing: 1px;
  571. font-size: 16px;
  572. }
  573. @keyframes rotating {
  574. from {
  575. transform: rotate(0deg);
  576. }
  577. to {
  578. transform: rotate(360deg);
  579. }
  580. }
  581. .rotating {
  582. animation: rotating 10s linear infinite;
  583. }*/
  584. /*
  585. #login_filter {
  586. height: calc(100% - 22px);
  587. width: 100%;
  588. z-index: 9000;
  589. position: absolute;
  590. filter: blur(8px) contrast(0.9) brightness(1.0);
  591. background: url('./../images/backgrounds/0.jpg') no-repeat center center fixed;
  592. transform: scale(1.2);
  593. background-size: cover;
  594. }
  595. */
  596. /*******************************************************************************
  597. * *
  598. * Landing View (Structural Styles) *
  599. * *
  600. ******************************************************************************/
  601. /* Main content container. */
  602. #main {
  603. height: calc(100% - 22px);
  604. }
  605. /* Upper content container. */
  606. #main > #upper {
  607. height: 77%;
  608. display: flex;
  609. }
  610. #main > #upper > #left {
  611. display: inline-flex;
  612. width: 15%;
  613. height: 100%;
  614. justify-content: flex-end;
  615. }
  616. #main > #upper > #content {
  617. display: inline-flex;
  618. width: 59%;
  619. height: 100%;
  620. }
  621. #main > #upper > #right {
  622. display: inline-flex;
  623. width: 26%;
  624. height: 100%;
  625. }
  626. /* Lower content container. */
  627. #main > #lower {
  628. height: 23%;
  629. display: flex;
  630. background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  631. }
  632. #main > #lower > #left {
  633. height: 100%;
  634. width: 33%;
  635. display: inline-flex;
  636. justify-content: center;
  637. }
  638. #main > #lower > #left #content {
  639. position: relative;
  640. top: 25px;
  641. display: inline-flex;
  642. line-height: 24px;
  643. left: 50px;
  644. }
  645. #main > #lower > #center {
  646. height: 100%;
  647. width: 34%;
  648. display: inline-flex;
  649. justify-content: center;
  650. }
  651. #main > #lower > #center #content {
  652. position: relative;
  653. top: 10px;
  654. }
  655. #main > #lower > #right {
  656. height: 100%;
  657. width: 33%;
  658. display: inline-flex;
  659. }
  660. /*******************************************************************************
  661. * *
  662. * Landing View (Top Styles) *
  663. * *
  664. ******************************************************************************/
  665. /* * *
  666. * Landing View (Top Styles) | Left Content
  667. * * */
  668. /* Logo image. */
  669. #image_seal {
  670. height: 70px;
  671. width: auto;
  672. position: relative;
  673. margin-top: 50px;
  674. border: 2px solid white;
  675. border-radius: 50%;
  676. box-shadow: 0px 0px 10px 0px rgb(0, 0, 0);
  677. }
  678. /* * *
  679. * Landing View (Bottom Styles) | Right Content
  680. * * */
  681. /* Wrapper container for top, right content. */
  682. #rightContainer {
  683. display: flex;
  684. flex-direction: column;
  685. position: relative;
  686. top: 50px;
  687. align-items: flex-end;
  688. height: calc(100% - 50px);
  689. }
  690. /* Right hand user content container. */
  691. #user_content {
  692. display: flex;
  693. align-items: center;
  694. justify-content: center;
  695. box-sizing: border-box;
  696. height: 75px;
  697. }
  698. /* User profile avatar container. */
  699. #avatarContainer {
  700. border-radius: 50%;
  701. border: 2px solid #cad7e1;
  702. background: rgba(1, 2, 1, 0.5);
  703. height: 70px;
  704. width: 70px;
  705. box-shadow: 0px 0px 10px 0px rgb(0, 0, 0);
  706. overflow: hidden;
  707. position: relative;
  708. }
  709. /* Avatar edit overlay. */
  710. #avatarOverlay {
  711. opacity: 0;
  712. position: absolute;
  713. z-index: 1;
  714. top: 0;
  715. bottom: 0;
  716. left: 0;
  717. right: 0;
  718. display: flex;
  719. justify-content: center;
  720. align-items: center;
  721. font-family: 'Avenir Book';
  722. color: #fff;
  723. transition: 0.25s ease;
  724. font-weight: bold;
  725. letter-spacing: 2px;
  726. background: linear-gradient(65deg, rgba(0, 0, 0, 0.4), rgba(136, 77, 77, 0.4) 60%);
  727. -webkit-user-select: none;
  728. cursor: pointer;
  729. }
  730. #avatarOverlay:hover {
  731. opacity: 1;
  732. }
  733. /* User profile avater image. */
  734. #avatarImage {
  735. height: 100%;
  736. width: auto;
  737. }
  738. /* User profile name text. */
  739. #user_text {
  740. font-family: 'Avenir Book';
  741. font-size: 12px;
  742. min-width: 112px;
  743. font-weight: 900;
  744. letter-spacing: 1px;
  745. color: white;
  746. text-shadow: 0px 0px 20px black;
  747. position: relative;
  748. right: 25px;
  749. text-align: right;
  750. }
  751. /* Social media icon content container. */
  752. #mediaContent {
  753. position: relative;
  754. display: flex;
  755. flex-direction: column;
  756. right: 25px;
  757. align-items: flex-end;
  758. margin-top: 40px;
  759. height: 100%;
  760. align-items: center;
  761. }
  762. /* Social Media Icon division containers. */
  763. #internalMedia, #externalMedia {
  764. display: flex;
  765. flex-direction: column;
  766. }
  767. /* Container object which wraps an icon to ensure fluid transitions. */
  768. .mediaContainer {
  769. display: flex;
  770. justify-content: center;
  771. align-items: center;
  772. height: 27px;
  773. }
  774. /* Divider bar between the external and internal icons. */
  775. .mediaDivider {
  776. height: 1px;
  777. width: 14px;
  778. background: rgb(255, 255, 255);
  779. margin: 10px 0px;
  780. }
  781. /* Social media icon shared styles. */
  782. .mediaSVG {
  783. fill: #ffffff;
  784. height: 12px;
  785. transition: 0.25s ease;
  786. cursor: pointer;
  787. height: 12px;
  788. width: 25px;
  789. }
  790. .mediaSVG:hover, .mediaSVG:active {
  791. height: 20px;
  792. }
  793. /* News icon colors. */
  794. #newsSVG {
  795. stroke: #ffffff;
  796. }
  797. /* Twitter icon colors. */
  798. #twitterSVG:hover {
  799. fill: #1da1f2;
  800. }
  801. #twitterSVG:active {
  802. fill: #1b8dd4;
  803. }
  804. /* Instagram icon colors. */
  805. #instagramSVG:hover {
  806. fill: url('#instaFill')
  807. /*fill: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); */
  808. }
  809. #instagramSVG:active {
  810. fill: url('#instaFill')
  811. }
  812. /* Youtube icon colors. */
  813. #youtubeSVG:hover {
  814. fill: #f00;
  815. }
  816. #youtubeSVG:active {
  817. fill: #ea0202;
  818. }
  819. /* Discord icon colors. */
  820. #discordSVG:hover {
  821. fill: #7288d9;
  822. }
  823. #discordSVG:active {
  824. fill: #657ac4;
  825. }
  826. /*******************************************************************************
  827. * *
  828. * Landing View (Bottom Styles) *
  829. * *
  830. ******************************************************************************/
  831. /* Style for a general label on the bottom of the landing view. */
  832. .bot_label {
  833. color: white;
  834. font-family: 'Avenir Book';
  835. font-size: 9px;
  836. letter-spacing: 1px;
  837. font-weight: bold;
  838. text-shadow: 0px 0px 0px #bebcbb;
  839. }
  840. /* Divider used on the bottom of the landing view. */
  841. .bot_divider {
  842. height: 25px;
  843. width: 2px;
  844. background: rgba(107, 105, 105, 0.7);
  845. margin-left: 20px;
  846. margin-right: 20px;
  847. }
  848. /* * *
  849. * Landing View (Bottom Styles) | Left Content
  850. * * */
  851. /* Span which displays the player count of the selected server. */
  852. #player_count {
  853. color: #949494;
  854. font-family: 'Avenir Book';
  855. font-size: 8px;
  856. font-weight: 900;
  857. text-shadow: 0px 0px 20px #949494;
  858. margin-left: 10px;
  859. }
  860. /* Icon which displays the status of the mojang services. */
  861. #mojang_status_icon {
  862. font-size: 30px;
  863. color: #848484;
  864. margin-left: 15px;
  865. }
  866. /* * *
  867. * Landing View (Bottom Styles) | Center Content
  868. * * */
  869. /* Button which opens the menu view. */
  870. #menu_button {
  871. font-family: 'Avenir Book';
  872. background: none;
  873. border: none;
  874. cursor: pointer;
  875. }
  876. /* Arrow image which floats above the menu button. */
  877. #menu_img {
  878. height: 11px;
  879. margin-left: -2px;
  880. }
  881. /* Span which contains the menu button text. */
  882. #menu_text {
  883. color: white;
  884. font-weight: 900;
  885. letter-spacing: 2px;
  886. text-shadow: 0px 0px 0px #bebcbb;
  887. font-size: 11px;
  888. line-height: 30px;
  889. display: flex;
  890. }
  891. /* * *
  892. * Landing View (Bottom Styles) | Right Content
  893. * * */
  894. /* Main launch content container. */
  895. #main > #lower > #right #launch_content {
  896. position: relative;
  897. top: 25px;
  898. display: inline-flex;
  899. line-height: 24px;
  900. }
  901. /* The launch button. */
  902. #launch_button {
  903. font-family: 'Avenir Book';
  904. background: none;
  905. border: none;
  906. cursor: pointer;
  907. color: #fff;
  908. font-weight: 900;
  909. letter-spacing: 2px;
  910. text-shadow: 0px 0px 0px #bebcbb;
  911. font-size: 20px;
  912. padding: 0px;
  913. }
  914. /* Launch details main container, hidden until launch processing begins. */
  915. #launch_details {
  916. position: relative;
  917. top: 25px;
  918. display: none;
  919. }
  920. /* Left side of launch details container, displays percentage and a divider. */
  921. #launch_details_left {
  922. display: flex;
  923. }
  924. /* Span which displays percentage complete. */
  925. #launch_progress_label {
  926. color: white;
  927. font-family: 'Avenir Book';
  928. font-weight: 900;
  929. letter-spacing: 1px;
  930. text-shadow: 0px 0px 0px #bebcbb;
  931. font-size: 20px;
  932. min-width: 53.21px;
  933. max-width: 53.21px;
  934. text-align: right;
  935. }
  936. /* Right side of launch details container, displays progress bar and details. */
  937. #launch_details_right {
  938. display: flex;
  939. flex-direction: column;
  940. justify-content: center;
  941. }
  942. /* Progress bar styles. */
  943. #launch_progress[value] {
  944. height: 3px;
  945. width: 265px;
  946. -webkit-appearance: none;
  947. }
  948. #launch_progress[value]::-webkit-progress-bar {
  949. background-color: transparent;
  950. }
  951. #launch_progress[value]::-webkit-progress-value {
  952. background-color: #fff;
  953. }
  954. /* Span which displays information about the status of the launch process. */
  955. #launch_details_text {
  956. font-size: 11px;
  957. text-overflow: ellipsis;
  958. white-space: nowrap;
  959. overflow: hidden;
  960. }