launcher.css 23 KB

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