launcher.css 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094
  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. #frameBar {
  44. position: relative;
  45. z-index: 100;
  46. display: flex;
  47. flex-direction: column;
  48. background: rgba(1, 2, 1, 0.5);
  49. -webkit-user-select: none;
  50. }
  51. /* Undraggable region on the top of the frame. */
  52. #frameResizableTop {
  53. height: 2px;
  54. width: 100%;
  55. -webkit-app-region: no-drag;
  56. }
  57. /* Flexbox to wrap the main frame content. */
  58. #frameMain {
  59. display: flex;
  60. height: 20px
  61. }
  62. /* Undraggable region on the left and right of the frame. */
  63. .frameResizableVert {
  64. width: 2px;
  65. -webkit-app-region: no-drag;
  66. }
  67. /* Main frame content for windows. */
  68. #frameContentWin {
  69. display: flex;
  70. justify-content: space-between;
  71. width: 100%;
  72. -webkit-app-region: drag;
  73. }
  74. /* Main frame content for darwin. */
  75. #frameContentDarwin {
  76. display: flex;
  77. justify-content: flex-start;
  78. align-items: center;
  79. width: 100%;
  80. -webkit-app-region: drag;
  81. }
  82. /* Frame logo (windows only). */
  83. #frameImageDock {
  84. width: 100px;
  85. display: flex;
  86. justify-content: center;
  87. align-items: center;
  88. position: relative;
  89. }
  90. #frameImage {
  91. height: 15px;
  92. filter: grayscale(100%);
  93. }
  94. /* Windows frame button dock. */
  95. #frameButtonDockWin {
  96. -webkit-app-region: no-drag !important;
  97. position: relative;
  98. top: -2px;
  99. right: -2px;
  100. height: 22px;
  101. }
  102. #frameButtonDockWin > .frameButton:not(:first-child) {
  103. margin-left: -4px;
  104. }
  105. /* Darwin frame button dock: NaN; */
  106. #frameButtonDockDarwin {
  107. -webkit-app-region: no-drag !important;
  108. position: relative;
  109. top: -1px;
  110. right: -1px;
  111. }
  112. /* Windows Frame Button Styles. */
  113. .frameButton {
  114. background: none;
  115. border: none;
  116. height: 22px;
  117. width: 39px;
  118. cursor: pointer;
  119. }
  120. .frameButton:hover,
  121. .frameButton:focus {
  122. background: rgba(189, 189, 189, 0.43);
  123. }
  124. .frameButton:active {
  125. background: rgba(156, 156, 156, 0.43);
  126. }
  127. .frameButton:focus {
  128. outline: 0px;
  129. }
  130. /* Close button is red. */
  131. #frameButton_close:hover,
  132. #frameButton_close:focus {
  133. background: rgba(255, 53, 53, 0.61) !important;
  134. }
  135. #frameButton_close:active {
  136. background: rgba(235, 0, 0, 0.61) !important;
  137. }
  138. /* Darwin Frame Button Styles. */
  139. .frameButtonDarwin {
  140. height: 12px;
  141. width: 12px;
  142. border-radius: 50%;
  143. border: 0px;
  144. margin-left: 5px;
  145. -webkit-app-region: no-drag !important;
  146. cursor: pointer;
  147. }
  148. .frameButtonDarwin:focus {
  149. outline: 0px;
  150. }
  151. #frameButtonDarwin_close {
  152. background-color: #e74c32;
  153. }
  154. #frameButtonDarwin_close:hover,
  155. #frameButtonDarwin_close:focus {
  156. background-color: #FF9A8A;
  157. }
  158. #frameButtonDarwin_close:active {
  159. background-color: #ff8d7b;
  160. }
  161. #frameButtonDarwin_minimize {
  162. background-color: #fed045;
  163. }
  164. #frameButtonDarwin_minimize:hover,
  165. #frameButtonDarwin_minimize:focus {
  166. background-color: #FFE9A9;
  167. }
  168. #frameButtonDarwin_minimize:active {
  169. background-color: #ffde7b;
  170. }
  171. #frameButtonDarwin_restoredown {
  172. background-color: #96e734;
  173. }
  174. #frameButtonDarwin_restoredown:hover,
  175. #frameButtonDarwin_restoredown:focus {
  176. background-color: #D6FFA6;
  177. }
  178. #frameButtonDarwin_restoredown:active {
  179. background-color: #bfff76;
  180. }
  181. /*******************************************************************************
  182. * *
  183. * Welcome View (welcome.ejs) *
  184. * *
  185. ******************************************************************************/
  186. #welcomeContainer {
  187. position: relative;
  188. display: flex;
  189. justify-content: center;
  190. align-items: center;
  191. height: 100%;
  192. width: 100%;
  193. transition: 0.25s ease;
  194. }
  195. #welcomeContent {
  196. display: flex;
  197. flex-direction: column;
  198. justify-content: center;
  199. align-items: center;
  200. width: 50%;
  201. top: -10%;
  202. position: relative;
  203. }
  204. /*
  205. .cloudDiv {
  206. position: absolute;
  207. height: 100%;
  208. width: 100%;
  209. display: flex;
  210. flex-direction: column;
  211. }
  212. .cloudTop {
  213. height: 50%;
  214. width: 100%;
  215. background-image: url('../images/cloudTrans.png');
  216. animation: clouds1 80s linear infinite;
  217. background-size: cover;
  218. }
  219. .cloudBottom {
  220. height: 50%;
  221. width: 100%;
  222. background-image: url('../images/cloudTrans2.png');
  223. animation: clouds2 70s linear infinite;
  224. background-size: cover;
  225. }
  226. @keyframes clouds1 {
  227. to {
  228. background-position: 200%;
  229. }
  230. }
  231. @keyframes clouds2 {
  232. to {
  233. background-position: 230%;
  234. }
  235. }
  236. */
  237. #welcomeImageSeal {
  238. border-radius: 50%;
  239. border: 2px solid #cad7e1;
  240. background: rgba(1, 2, 1, 0.5);
  241. height: 125px;
  242. width: 125px;
  243. box-shadow: 0px 0px 10px 0px rgb(0, 0, 0);
  244. margin-bottom: 5%;
  245. margin-top: 10%;
  246. }
  247. #welcomeHeader {
  248. font-family: 'Avenir Medium';
  249. text-align: center;
  250. color: white;
  251. margin-bottom: 25px;
  252. letter-spacing: 1px;
  253. font-size: 20px;
  254. text-shadow: white 0px 0px 0px;
  255. }
  256. #welcomeDescription {
  257. font-family: 'Avenir Book';
  258. text-align: justify;
  259. color: white;
  260. font-size: 13px;
  261. font-weight: 100;
  262. text-shadow: rgba(255, 255, 255, 0.75) 0px 0px 20px
  263. }
  264. #welcomeDescCTA {
  265. font-family: 'Avenir Book';
  266. text-align: center;
  267. color: white;
  268. font-size: 14px;
  269. font-weight: 100;
  270. text-shadow: rgba(255, 255, 255, 0.75) 0px 0px 20px
  271. }
  272. /* Login button styles. */
  273. #welcomeButton {
  274. background: none;
  275. color: #fff;
  276. font-weight: bold;
  277. font-family: 'Avenir Book';
  278. letter-spacing: 2px;
  279. border: none;
  280. padding: 15px 5px;
  281. margin: 10px 0px;
  282. cursor: pointer;
  283. position: relative;
  284. right: -20px;
  285. transition: 0.5s ease;
  286. margin-top: 5%;
  287. margin-bottom: -5%;
  288. }
  289. #welcomeButton:disabled {
  290. color: rgba(255, 255, 255, 0.75);
  291. pointer-events: none;
  292. }
  293. #welcomeButton:hover,
  294. #welcomeButton:focus {
  295. text-shadow: 0px 0px 20px #fff;
  296. outline: none;
  297. }
  298. #welcomeButton:active {
  299. color: #c7c7c7;
  300. text-shadow: 0px 0px 20px #c7c7c7;
  301. }
  302. #welcomeSVG {
  303. -webkit-transform: translate3d(0, 0, 0);
  304. overflow: visible;
  305. transform: rotate(90deg);
  306. margin-left: 20px;
  307. transition: 0.25s ease;
  308. width: 20px;
  309. height: 20px;
  310. }
  311. #welcomeButton:hover #welcomeSVG,
  312. #welcomeButton:focus #welcomeSVG {
  313. -webkit-filter: drop-shadow(0px 0px 2px #fff);
  314. }
  315. #welcomeButton:active #welcomeSVG .arrowLine {
  316. stroke: #c7c7c7;
  317. }
  318. #welcomeButton:active #welcomeSVG {
  319. -webkit-filter: drop-shadow(0px 0px 2px #c7c7c7);
  320. }
  321. #welcomeButton:disabled #welcomeSVG .arrowLine {
  322. stroke: rgba(255, 255, 255, 0.75);
  323. }
  324. #welcomeButtonContent {
  325. display: flex;
  326. align-items: center;
  327. }
  328. /*******************************************************************************
  329. * *
  330. * Login View (login.ejs) *
  331. * *
  332. ******************************************************************************/
  333. /* Login span styles. */
  334. .loginSpan {
  335. font-family: 'Avenir Book';
  336. font-size: 14px;
  337. color: #fff;
  338. font-weight: bold;
  339. }
  340. /* Styles for dimmer login span. */
  341. .loginSpanDim {
  342. font-family: 'Avenir Book';
  343. font-size: 12px;
  344. color: #848484;
  345. font-weight: bold;
  346. }
  347. /* Main login container. */
  348. #loginContainer {
  349. position: relative;
  350. display: flex;
  351. justify-content: center;
  352. align-items: center;
  353. height: 100%;
  354. width: 100%;
  355. transition: filter 0.25s ease;
  356. }
  357. /* Login content wrapper. */
  358. #loginContent {
  359. display: flex;
  360. justify-content: center;
  361. align-items: center;
  362. height: 100%;
  363. padding: 0px 25px;
  364. }
  365. /* Login form. */
  366. #loginForm {
  367. display: flex;
  368. flex-direction: column;
  369. justify-content: center;
  370. align-items: center;
  371. }
  372. /* Login form anchor styles. */
  373. #loginForm a {
  374. font-family: 'Avenir Book';
  375. font-size: 12px;
  376. color: #848484;
  377. font-weight: bold;
  378. text-decoration: none;
  379. transition: 0.25s ease;
  380. }
  381. #loginForm a:hover,
  382. #loginForm a:focus {
  383. color: #a2a2a2;
  384. outline: none;
  385. }
  386. #loginForm a:active {
  387. color: #8b8b8b;
  388. }
  389. /* Logo on login form. */
  390. #loginImageSeal {
  391. border-radius: 50%;
  392. border: 2px solid #cad7e1;
  393. background: rgba(1, 2, 1, 0.5);
  394. height: 125px;
  395. width: 125px;
  396. box-shadow: 0px 0px 10px 0px rgb(0, 0, 0);
  397. margin-bottom: 20px;
  398. }
  399. /* Header on login view. */
  400. #loginSubheader {
  401. font-family: 'Avenir Medium';
  402. margin-bottom: 25px;
  403. font-size: 12px;
  404. letter-spacing: 1px;
  405. }
  406. /* Container to organize login field elements. */
  407. .loginFieldContainer {
  408. position: relative;
  409. display: flex;
  410. flex-direction: column;
  411. justify-content: center;
  412. align-items: center;
  413. }
  414. /* SVG icons on the login view. */
  415. .loginSVG {
  416. fill: #fff;
  417. height: 20px;
  418. width: 20px;
  419. }
  420. /* Span which displays errors related to login field content. */
  421. .loginErrorSpan {
  422. font-family: 'Avenir Medium';
  423. font-weight: bold;
  424. font-size: 8px;
  425. color: #ff1b0c;
  426. width: 100%;
  427. text-align: right;
  428. position: absolute;
  429. top: 7px;
  430. opacity: 0;
  431. transition: 0.25s ease;
  432. }
  433. .shake {
  434. animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
  435. }
  436. @keyframes shake {
  437. 10%, 90% {
  438. transform: translate3d(-1px, 0, 0);
  439. }
  440. 20%, 80% {
  441. transform: translate3d(2px, 0, 0);
  442. }
  443. 30%, 50%, 70% {
  444. transform: translate3d(-4px, 0, 0);
  445. }
  446. 40%, 60% {
  447. transform: translate3d(4px, 0, 0);
  448. }
  449. }
  450. /* Login text input styles. */
  451. .loginField {
  452. font-family: 'Avenir Book';
  453. background: none;
  454. border-width: 1.5px 0px 0px 0px;
  455. border-style: solid;
  456. width: 250px;
  457. margin-bottom: 20px;
  458. border-color: #fff;
  459. color: rgba(255, 255, 255, 0.75);
  460. font-weight: bold;
  461. text-align: center;
  462. box-sizing: border-box;
  463. padding: 7.5px;
  464. font-size: 10px;
  465. letter-spacing: 1px;
  466. }
  467. .loginField:focus {
  468. outline: none;
  469. }
  470. .loginField:disabled {
  471. color: rgba(255, 255, 255, 0.50);
  472. }
  473. .loginField::-webkit-input-placeholder {
  474. color: rgba(255, 255, 255, 0.75);
  475. font-size: 10px;
  476. letter-spacing: 1px;
  477. text-align: center;
  478. font-weight: bold;
  479. }
  480. .loginField:focus::-webkit-input-placeholder {
  481. color: transparent;
  482. }
  483. /* Add spacing between password field and options bar. */
  484. #labelPassword {
  485. margin-bottom: 13px;
  486. }
  487. /* Container which contains the forgot and remember options. */
  488. #loginOptions {
  489. display: flex;
  490. justify-content: space-between;
  491. width: 100%;
  492. }
  493. /* Remember option text. */
  494. #loginRememberText {
  495. padding-right: 10px;
  496. transition: 0.25s ease;
  497. }
  498. /* Login button styles. */
  499. #loginButton {
  500. background: none;
  501. color: #fff;
  502. font-weight: bold;
  503. font-family: 'Avenir Book';
  504. letter-spacing: 2px;
  505. border: none;
  506. padding: 15px 5px;
  507. margin: 10px 0px;
  508. cursor: pointer;
  509. position: relative;
  510. right: -20px;
  511. transition: 0.5s ease;
  512. }
  513. #loginButton:disabled {
  514. color: rgba(255, 255, 255, 0.75);
  515. pointer-events: none;
  516. }
  517. #loginButton[loading] {
  518. color: #fff;
  519. }
  520. #loginButton:hover,
  521. #loginButton:focus {
  522. text-shadow: 0px 0px 20px #fff;
  523. outline: none;
  524. }
  525. #loginButton:active {
  526. color: #c7c7c7;
  527. text-shadow: 0px 0px 20px #c7c7c7;
  528. }
  529. #loginSVG {
  530. -webkit-transform: translate3d(0, 0, 0);
  531. overflow: visible;
  532. transform: rotate(90deg);
  533. margin-left: 20px;
  534. transition: 0.25s ease;
  535. width: 20px;
  536. height: 20px;
  537. }
  538. #loginButton:hover #loginSVG,
  539. #loginButton:focus #loginSVG {
  540. -webkit-filter: drop-shadow(0px 0px 2px #fff);
  541. }
  542. #loginButton:active #loginSVG .arrowLine {
  543. stroke: #c7c7c7;
  544. }
  545. #loginButton:active #loginSVG {
  546. -webkit-filter: drop-shadow(0px 0px 2px #c7c7c7);
  547. }
  548. #loginButton:disabled #loginSVG .arrowLine {
  549. stroke: rgba(255, 255, 255, 0.75);
  550. }
  551. #loginButtonContent {
  552. display: flex;
  553. align-items: center;
  554. }
  555. #loginButton .circle-loader,
  556. #loginButton[loading] #loginSVG {
  557. display: none;
  558. }
  559. #loginButton[loading] .circle-loader,
  560. #loginButton #loginSVG {
  561. display: initial;
  562. }
  563. .circle-loader {
  564. margin-left: 20px;
  565. border: 2px solid rgba(255, 255, 255, 0.5);
  566. border-left-color: #ffffff;
  567. animation-name: loader-spin;
  568. animation-duration: 1s;
  569. animation-iteration-count: infinite;
  570. animation-timing-function: linear;
  571. position: relative;
  572. display: inline-block;
  573. vertical-align: top;
  574. border-radius: 50%;
  575. width: 16px;
  576. height: 16px;
  577. }
  578. .load-complete {
  579. animation: none;
  580. border-color: #ffffff;
  581. transition: border 500ms ease-out;
  582. }
  583. .checkmark {
  584. display: none;
  585. }
  586. .checkmark.draw:after {
  587. animation-duration: 800ms;
  588. animation-timing-function: ease;
  589. animation-name: checkmark;
  590. transform: scaleX(-1) rotate(135deg);
  591. }
  592. .checkmark:after {
  593. opacity: 1;
  594. height: 8px;
  595. width: 4px;
  596. transform-origin: left top;
  597. border-right: 2px solid #ffffff;
  598. border-top: 2px solid #ffffff;
  599. content: '';
  600. left: 2px;
  601. top: 8px;
  602. position: absolute;
  603. }
  604. @keyframes loader-spin {
  605. 0% {
  606. transform: rotate(0deg);
  607. }
  608. 100% {
  609. transform: rotate(360deg);
  610. }
  611. }
  612. @keyframes checkmark {
  613. 0% {
  614. height: 0;
  615. width: 0;
  616. opacity: 1;
  617. }
  618. 20% {
  619. height: 0;
  620. width: 4px;
  621. opacity: 1;
  622. }
  623. 40% {
  624. height: 8px;
  625. width: 4px;
  626. opacity: 1;
  627. }
  628. 100% {
  629. height: 8px;
  630. width: 4px;
  631. opacity: 1;
  632. }
  633. }
  634. /*.spinningCircle {
  635. margin-left: 20px;
  636. height: 16px;
  637. width: 16px;
  638. border-radius: 50%;
  639. border: 2px solid rgba(255,255,255,0);
  640. border-top-color: #ffffff;
  641. border-right-color: #ffffff;
  642. border-left-color: rgba(255, 255, 255, 0.50);
  643. border-bottom-color: rgba(255, 255, 255, 0.50);
  644. animation: single2 4s infinite linear;
  645. }
  646. @keyframes single2 {
  647. 0% {
  648. transform: rotate(0deg);
  649. }
  650. 100% {
  651. transform: rotate(720deg);
  652. }
  653. }*/
  654. /* Disclaimer container. */
  655. #loginDisclaimer {
  656. display: flex;
  657. flex-direction: column;
  658. justify-content: center;
  659. align-items: center;
  660. }
  661. /* Add spacing between register anchor and disclaimer. */
  662. #loginRegisterSpan {
  663. margin-bottom: 5px;
  664. }
  665. /* Disclaimer text styles. */
  666. .loginDisclaimerText {
  667. font-family: 'Avenir Book';
  668. font-size: 7px;
  669. color: #848484;
  670. font-weight: bold;
  671. text-align: center;
  672. }
  673. /* * *
  674. * Login View | Custom Checkbox
  675. * * */
  676. /* Checkbox container. */
  677. #checkmarkContainer {
  678. display: flex;
  679. justify-content: flex-end;
  680. align-items: center;
  681. position: relative;
  682. cursor: pointer;
  683. font-size: 22px;
  684. -webkit-user-select: none;
  685. }
  686. /* Hide the default checkbox. */
  687. #checkmarkContainer input {
  688. opacity: 0;
  689. cursor: pointer;
  690. position: absolute;
  691. }
  692. /* Create a custom checkbox. */
  693. .loginCheckmark {
  694. position: relative;
  695. height: 10px;
  696. width: 10px;
  697. border: 1px solid #848484;
  698. border-radius: 1px;
  699. background: none;
  700. transition: 0.25s ease;
  701. }
  702. /* On hover and focus, add a grey border color. */
  703. #checkmarkContainer:hover input ~ *,
  704. #checkmarkContainer input:focus ~ * {
  705. color: #a2a2a2;
  706. border-color: #a2a2a2;
  707. }
  708. /* On keydown, darken the checkbox a bit. */
  709. #checkmarkContainer input:active ~ *:not(#loginRememberText) {
  710. color: #8d8d8d;
  711. border-color: #8d8d8d;
  712. }
  713. #checkmarkContainer[disabled] {
  714. pointer-events: none;
  715. }
  716. /* For checked -> #checkmarkContainer input:checked ~ * */
  717. /* Create the checkmark/indicator (hidden when not checked). */
  718. .loginCheckmark:after {
  719. content: "";
  720. display: none;
  721. }
  722. /* Show the checkmark when checked. */
  723. #checkmarkContainer input:checked ~ .loginCheckmark:after {
  724. display: block;
  725. }
  726. /* Style the checkmark/indicator. */
  727. #checkmarkContainer .loginCheckmark:after {
  728. position: absolute;
  729. left: 3.5px;
  730. top: 0.5px;
  731. width: 2px;
  732. height: 6px;
  733. border: solid #a2a2a2;
  734. border-width: 0 2px 2px 0;
  735. transform: rotate(45deg);
  736. }
  737. /* * *
  738. * Login View | Loader
  739. * * */
  740. /* Will reuse this elsewhere down the line.
  741. #loginLoading {
  742. position: absolute;
  743. display: flex;
  744. align-items: center;
  745. justify-content: center;
  746. width: 100%;
  747. height: 100%;
  748. background: rgba(0, 0, 0, 0.80);
  749. }
  750. #loginLoadingContent {
  751. position: relative;
  752. display: flex;
  753. flex-direction: column;
  754. align-items: center;
  755. justify-content: center;
  756. }
  757. #loadSpinnerContainer {
  758. position: relative;
  759. display: flex;
  760. align-items: center;
  761. justify-content: center;
  762. }
  763. #loadCenterImage {
  764. position: absolute;
  765. width: 200px;
  766. height: auto;
  767. }
  768. #loadSpinnerImage {
  769. width: 280px;
  770. height: auto;
  771. }
  772. #loadDescText {
  773. color: #f1eada;
  774. font-family: 'Avenir Medium';
  775. font-weight: bold;
  776. letter-spacing: 1px;
  777. font-size: 16px;
  778. }
  779. @keyframes rotating {
  780. from {
  781. transform: rotate(0deg);
  782. }
  783. to {
  784. transform: rotate(360deg);
  785. }
  786. }
  787. .rotating {
  788. animation: rotating 10s linear infinite;
  789. }*/
  790. /*
  791. #login_filter {
  792. height: calc(100% - 22px);
  793. width: 100%;
  794. z-index: 9000;
  795. position: absolute;
  796. filter: blur(8px) contrast(0.9) brightness(1.0);
  797. background: url('./../images/backgrounds/0.jpg') no-repeat center center fixed;
  798. transform: scale(1.2);
  799. background-size: cover;
  800. }
  801. */
  802. /*******************************************************************************
  803. * *
  804. * Landing View (Structural Styles) *
  805. * *
  806. ******************************************************************************/
  807. /* Main content container. */
  808. #landingContainer {
  809. height: 100%;
  810. position: relative;
  811. transition: background 2s ease;
  812. overflow-y: hidden;
  813. }
  814. /* Upper content container. */
  815. #landingContainer > #upper {
  816. position: relative;
  817. transition: top 2s ease;
  818. top: 0px;
  819. height: 77%;
  820. display: flex;
  821. }
  822. #landingContainer > #upper > #left {
  823. display: inline-flex;
  824. width: 15%;
  825. height: 100%;
  826. justify-content: flex-end;
  827. }
  828. #landingContainer > #upper > #content {
  829. display: inline-flex;
  830. width: 70%;
  831. height: 100%;
  832. }
  833. #landingContainer > #upper > #right {
  834. display: inline-flex;
  835. width: 15%;
  836. height: 100%;
  837. }
  838. /* Lower content container. */
  839. #landingContainer > #lower {
  840. height: 23%;
  841. display: flex;
  842. background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  843. }
  844. #landingContainer > #lower > #left {
  845. position: relative;
  846. transition: top 2s ease;
  847. top: 0px;
  848. height: 100%;
  849. width: 33%;
  850. display: inline-flex;
  851. justify-content: center;
  852. }
  853. #landingContainer > #lower > #left #content {
  854. position: relative;
  855. top: 25px;
  856. display: inline-flex;
  857. line-height: 24px;
  858. left: 50px;
  859. }
  860. #landingContainer > #lower > #center {
  861. position: relative;
  862. transition: top 2s ease;
  863. top: 0px;
  864. height: 100%;
  865. width: 34%;
  866. display: inline-flex;
  867. justify-content: center;
  868. }
  869. #landingContainer > #lower > #center #content {
  870. position: relative;
  871. z-index: 500;
  872. transition: top 2s ease;
  873. top: 10px;
  874. }
  875. #landingContainer > #lower > #right {
  876. position: relative;
  877. transition: top 2s ease;
  878. top: 0px;
  879. height: 100%;
  880. width: 33%;
  881. display: inline-flex;
  882. }
  883. /*******************************************************************************
  884. * *
  885. * Landing View (News Styles) *
  886. * *
  887. ******************************************************************************/
  888. /* Main container. */
  889. #newsContainer {
  890. position: absolute;
  891. top: 100%;
  892. height: 100%;
  893. width: 100%;
  894. transition: top 2s ease;
  895. display: flex;
  896. align-items: flex-end;
  897. justify-content: center;
  898. }
  899. /* News content container. */
  900. #newsContent {
  901. height: 82vh;
  902. width: 82vw;
  903. display: flex;
  904. }
  905. /* News article status container (left). */
  906. #newsStatusContainer {
  907. width: 25%;
  908. height: 100%;
  909. padding: 15px;
  910. display: flex;
  911. flex-direction: column;
  912. justify-content: space-between;
  913. }
  914. /* News status content. */
  915. #newsStatusContent {
  916. display: flex;
  917. flex-direction: column;
  918. }
  919. /* News article title styles. */
  920. #newsArticleTitle {
  921. font-size: 20px;
  922. font-weight: bold;
  923. font-family: 'Avenir Medium';
  924. }
  925. #newsArticleTitle {
  926. color: white;
  927. text-decoration: none;
  928. transition: 0.25s ease;
  929. }
  930. #newsArticleTitle:hover,
  931. #newsArticleTitle:focus {
  932. text-shadow: 0px 0px 20px white;
  933. }
  934. #newsArticleTitle:active {
  935. color: #c7c7c7;
  936. text-shadow: 0px 0px 20px #c7c7c7;
  937. }
  938. /* News meta container. */
  939. #newsMetaContainer {
  940. display: flex;
  941. flex-direction: column;
  942. }
  943. /* Date and author shared styles. */
  944. #newsArticleDate,
  945. #newsArticleAuthor {
  946. display: inline-block;
  947. font-size: 10px;
  948. color: rgb(255, 255, 255);
  949. font-family: 'Avenir Book';
  950. padding: 0px 5px;
  951. font-weight: bold;
  952. border-radius: 2px;
  953. }
  954. /* Date styles. */
  955. #newsArticleDate {
  956. background: white;
  957. color: black;
  958. margin-top: 5px;
  959. }
  960. /* Author styles. */
  961. #newsArticleAuthor {
  962. background: #a02d2a;
  963. }
  964. /* News article comments styles. */
  965. #newsArticleComments {
  966. margin-top: 5px;
  967. display: inline-block;
  968. font-size: 10px;
  969. color: rgb(255, 255, 255);
  970. font-family: 'Avenir Book';
  971. text-decoration: none;
  972. transition: 0.25s ease;
  973. }
  974. #newsArticleComments:focus,
  975. #newsArticleComments:hover {
  976. color: #e0e0e0;
  977. }
  978. #newsArticleComments:active {
  979. color: #c7c7c7;
  980. }
  981. /* Article content container (right). */
  982. #newsArticleContainer {
  983. width: 75%;
  984. height: 100%;
  985. }
  986. /* Article content styles. */
  987. #newsArticleContentScrollable {
  988. color: white;
  989. font-family: 'Avenir Book';
  990. font-size: 12px;
  991. max-width: 80%;
  992. margin: 25px 35px 0px 25px;
  993. overflow-y: scroll;
  994. height: calc(100% - 25px);
  995. padding: 0px 15px 0px 15px;
  996. }
  997. #newsArticleContentScrollable img {
  998. max-width: 95%;
  999. display: block;
  1000. margin: 0 auto;
  1001. }
  1002. #newsArticleContentScrollable a {
  1003. color: rgba(202, 202, 202, 0.75);
  1004. transition: 0.25s ease;
  1005. }
  1006. #newsArticleContentScrollable a:hover,
  1007. #newsArticleContentScrollable a:focus {
  1008. color: rgba(255, 255, 255, 0.75);
  1009. }
  1010. #newsArticleContentScrollable a:active {
  1011. color: rgba(165, 165, 165, 0.75);
  1012. }
  1013. #newsArticleContentScrollable::-webkit-scrollbar {
  1014. width: 2px;
  1015. }
  1016. #newsArticleContentScrollable::-webkit-scrollbar-track {
  1017. display: none;
  1018. }
  1019. #newsArticleContentScrollable::-webkit-scrollbar-thumb {
  1020. border-radius: 10px;
  1021. box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.50);
  1022. }
  1023. /* News navigation container. */
  1024. #newsNavigationContainer {
  1025. display: flex;
  1026. justify-content: center;
  1027. align-items: center;
  1028. margin-bottom: 40px;
  1029. }
  1030. /* Navigation status span. */
  1031. #newsNavigationStatus {
  1032. color: white;
  1033. font-family: 'Avenir Book';
  1034. font-size: 12px;
  1035. margin: 0px 15px;
  1036. }
  1037. /* Left and right navigation button styles. */
  1038. #newsNavigateLeft,
  1039. #newsNavigateRight {
  1040. color: white;
  1041. font-family: 'Avenir Book';
  1042. background: none;
  1043. border: none;
  1044. outline: none;
  1045. height: 20px;
  1046. cursor: pointer;
  1047. }
  1048. #newsNavigateLeft:hover #newsNavigationLeftSVG,
  1049. #newsNavigateLeft:focus #newsNavigationLeftSVG,
  1050. #newsNavigateRight:hover #newsNavigationRightSVG,
  1051. #newsNavigateRight:focus #newsNavigationRightSVG {
  1052. -webkit-filter: drop-shadow(0px 0px 2px #fff);
  1053. }
  1054. #newsNavigateLeft:active #newsNavigationLeftSVG .arrowLine,
  1055. #newsNavigateRight:active #newsNavigationRightSVG .arrowLine {
  1056. stroke: #c7c7c7;
  1057. }
  1058. #newsNavigateLeft:active #newsNavigationLeftSVG,
  1059. #newsNavigateRight:active #newsNavigationRightSVG {
  1060. -webkit-filter: drop-shadow(0px 0px 2px #c7c7c7);
  1061. }
  1062. #newsNavigateLeft:disabled #newsNavigationLeftSVG .arrowLine,
  1063. #newsNavigateRight:disabled #newsNavigationRightSVG .arrowLine {
  1064. stroke: rgba(255, 255, 255, 0.75);
  1065. }
  1066. #newsNavigationLeftSVG {
  1067. transform: rotate(-90deg);
  1068. width: 15px;
  1069. }
  1070. #newsNavigationRightSVG {
  1071. transform: rotate(90deg);
  1072. width: 15px;
  1073. }
  1074. /* News error (message) container. */
  1075. #newsErrorContainer {
  1076. height: 100%;
  1077. display: flex;
  1078. align-items: center;
  1079. flex-direction: column;
  1080. justify-content: center;
  1081. }
  1082. #newsErrorFailed {
  1083. display: flex;
  1084. align-items: center;
  1085. flex-direction: column;
  1086. justify-content: center;
  1087. }
  1088. /* News error content (message). */
  1089. .newsErrorContent {
  1090. color: white;
  1091. font-size: 20px;
  1092. font-family: 'Avenir Book';
  1093. }
  1094. #newsErrorLoading {
  1095. display: flex;
  1096. width: 168.92px;
  1097. }
  1098. #nELoadSpan {
  1099. white-space: pre;
  1100. }
  1101. /* News error retry button styles. */
  1102. #newsErrorRetry {
  1103. color: #ffffff;
  1104. font-family: 'Avenir Book';
  1105. font-size: 12px;
  1106. font-weight: bold;
  1107. cursor: pointer;
  1108. background: none;
  1109. border: none;
  1110. outline: none;
  1111. transition: 0.25s ease;
  1112. }
  1113. #newsErrorRetry:focus,
  1114. #newsErrorRetry:hover {
  1115. text-shadow: 0px 0px 20px white;
  1116. }
  1117. #newsErrorRetry:active {
  1118. color: #c7c7c7;
  1119. text-shadow: 0px 0px 20px #c7c7c7;
  1120. }
  1121. /*******************************************************************************
  1122. * *
  1123. * Landing View (Top Styles) *
  1124. * *
  1125. ******************************************************************************/
  1126. /* * *
  1127. * Landing View (Top Styles) | Left Content
  1128. * * */
  1129. /* Logo image. */
  1130. #image_seal {
  1131. height: 70px;
  1132. width: auto;
  1133. position: relative;
  1134. border: 2px solid white;
  1135. box-sizing: border-box;
  1136. border-radius: 50%;
  1137. }
  1138. /* Logo container styles. */
  1139. #image_seal_container {
  1140. position: relative;
  1141. height: 70px;
  1142. width: 70px;
  1143. border-radius: 50%;
  1144. margin-top: 50px;
  1145. }
  1146. /* Logo container styles w/ update. */
  1147. #image_seal_container[update]{
  1148. cursor: pointer
  1149. }
  1150. #image_seal_container[update]:before,
  1151. #image_seal_container[update]:after {
  1152. cursor: pointer;
  1153. position: absolute;
  1154. content: '';
  1155. height: 100%;
  1156. width: 100%;
  1157. top: 0%;
  1158. left: 0%;
  1159. border-radius: 50%;
  1160. box-shadow: 0 0 15px #43c628;
  1161. animation: glow-grow 4s ease-out infinite;
  1162. background: rgba(0, 0, 0, 0.15);
  1163. }
  1164. #image_seal_container[update]:before {
  1165. animation-delay: 2s;
  1166. }
  1167. /* Update available tooltip styles. */
  1168. #updateAvailableTooltip {
  1169. cursor: pointer;
  1170. visibility: hidden;
  1171. opacity: 0;
  1172. width: 100px;
  1173. height: 15px;
  1174. background-color: rgb(0, 0, 0);
  1175. color: #fff;
  1176. text-align: center;
  1177. border-radius: 4px;
  1178. padding: 2px;
  1179. position: absolute;
  1180. z-index: 1;
  1181. top: 115%;
  1182. left: -17.5px;
  1183. font-family: 'Avenir Medium';
  1184. font-size: 12px;
  1185. transition: visibility 0s linear 0.25s, opacity 0.25s ease;
  1186. }
  1187. #updateAvailableTooltip::after {
  1188. content: " ";
  1189. position: absolute;
  1190. left: 50%;
  1191. bottom: 100%;
  1192. margin-left: -5px;
  1193. border-width: 5px;
  1194. border-style: solid;
  1195. border-color: transparent transparent rgb(0, 0, 0) transparent;
  1196. }
  1197. #image_seal_container[update]:hover #updateAvailableTooltip {
  1198. visibility: visible;
  1199. opacity: 1;
  1200. transition-delay: 0s;
  1201. }
  1202. /* Update available animation. */
  1203. @keyframes glow-grow {
  1204. 0% {
  1205. opacity: 0;
  1206. transform: scale(1);
  1207. }
  1208. 80% {
  1209. opacity: 1;
  1210. }
  1211. 100% {
  1212. transform: scale(1.5);
  1213. opacity: 0;
  1214. }
  1215. }
  1216. /* * *
  1217. * Landing View (Bottom Styles) | Right Content
  1218. * * */
  1219. /* Wrapper container for top, right content. */
  1220. #rightContainer {
  1221. display: flex;
  1222. flex-direction: column;
  1223. position: relative;
  1224. top: 50px;
  1225. align-items: flex-start;
  1226. height: calc(100% - 50px);
  1227. }
  1228. /* Right hand user content container. */
  1229. #user_content {
  1230. display: flex;
  1231. align-items: center;
  1232. justify-content: center;
  1233. box-sizing: border-box;
  1234. position: relative;
  1235. }
  1236. /* User profile avatar container. */
  1237. #avatarContainer {
  1238. border-radius: 50%;
  1239. border: 2px solid #cad7e1;
  1240. box-sizing: border-box;
  1241. background: rgba(1, 2, 1, 0.5);
  1242. height: 70px;
  1243. width: 70px;
  1244. box-shadow: 0px 0px 10px 0px rgb(0, 0, 0);
  1245. overflow: hidden;
  1246. position: relative;
  1247. background-image: url('https://cdn.discordapp.com/avatars/169197209630277642/6650b5a50e1cb3d00a79b9b88b9a0cd4.png');
  1248. background-size: contain;
  1249. }
  1250. /* Avatar edit overlay. */
  1251. #avatarOverlay {
  1252. opacity: 0;
  1253. position: absolute;
  1254. z-index: 1;
  1255. display: flex;
  1256. justify-content: center;
  1257. align-items: center;
  1258. font-family: 'Avenir Book';
  1259. color: #fff;
  1260. transition: 0.25s ease;
  1261. font-weight: bold;
  1262. letter-spacing: 2px;
  1263. background: linear-gradient(65deg, rgba(0, 0, 0, 0.4), rgba(136, 77, 77, 0.4) 60%);
  1264. -webkit-user-select: none;
  1265. cursor: pointer;
  1266. width: 100%;
  1267. height: 100%;
  1268. border-radius: 50%;
  1269. }
  1270. #avatarOverlay:hover {
  1271. opacity: 1;
  1272. }
  1273. /* User profile name text. */
  1274. #user_text {
  1275. font-family: 'Avenir Book';
  1276. font-size: 12px;
  1277. min-width: 135px;
  1278. font-weight: 900;
  1279. letter-spacing: 1px;
  1280. color: white;
  1281. text-shadow: 0px 0px 20px black;
  1282. position: absolute;
  1283. right: 95px;
  1284. text-align: right;
  1285. }
  1286. /* Social media icon content container. */
  1287. #mediaContent {
  1288. position: relative;
  1289. display: flex;
  1290. flex-direction: column;
  1291. margin-top: 25px;
  1292. height: calc(100% - 95px);
  1293. width: 70px;
  1294. align-items: center;
  1295. }
  1296. /* Social Media Icon division containers. */
  1297. #internalMedia, #externalMedia {
  1298. display: flex;
  1299. flex-direction: column;
  1300. }
  1301. /* Container object which wraps an icon to ensure fluid transitions. */
  1302. .mediaContainer {
  1303. display: flex;
  1304. justify-content: center;
  1305. align-items: center;
  1306. height: 27px;
  1307. }
  1308. /* Divider bar between the external and internal icons. */
  1309. .mediaDivider {
  1310. height: 1px;
  1311. width: 14px;
  1312. background: rgb(255, 255, 255);
  1313. margin: 10px 0px;
  1314. }
  1315. /* Social media icon shared styles. */
  1316. .mediaSVG {
  1317. fill: #ffffff;
  1318. height: 12px;
  1319. transition: 0.25s ease;
  1320. cursor: pointer;
  1321. height: 12px;
  1322. width: 25px;
  1323. }
  1324. .mediaSVG:hover,
  1325. .mediaURL:focus .mediaSVG,
  1326. .mediaSVG:active {
  1327. height: 20px;
  1328. }
  1329. /* Social media URL shared styles. */
  1330. .mediaURL {
  1331. outline: none;
  1332. }
  1333. /* Settings icon colors. */
  1334. #settingsSVG {
  1335. stroke: #ffffff;
  1336. height: 15px;
  1337. }
  1338. #settingsSVG:hover {
  1339. height: 23px;
  1340. }
  1341. /* Twitter icon colors. */
  1342. #twitterSVG:hover,
  1343. #twitterURL:focus #twitterSVG {
  1344. fill: #1da1f2;
  1345. }
  1346. #twitterSVG:active {
  1347. fill: #1b8dd4;
  1348. }
  1349. /* Instagram icon colors. */
  1350. #instagramSVG:hover,
  1351. #instagramURL:focus #instagramSVG {
  1352. fill: url('#instaFill')
  1353. /*fill: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); */
  1354. }
  1355. #instagramSVG:active {
  1356. fill: url('#instaFill')
  1357. }
  1358. /* Youtube icon colors. */
  1359. #youtubeSVG:hover,
  1360. #youtubeURL:focus #youtubeSVG {
  1361. fill: #f00;
  1362. }
  1363. #youtubeSVG:active {
  1364. fill: #ea0202;
  1365. }
  1366. /* Discord icon colors. */
  1367. #discordSVG:hover,
  1368. #discordURL:focus #discordSVG {
  1369. fill: #7288d9;
  1370. }
  1371. #discordSVG:active {
  1372. fill: #657ac4;
  1373. }
  1374. /*******************************************************************************
  1375. * *
  1376. * Landing View (Bottom Styles) *
  1377. * *
  1378. ******************************************************************************/
  1379. /* Style for a general label on the bottom of the landing view. */
  1380. .bot_label {
  1381. color: white;
  1382. font-family: 'Avenir Book';
  1383. font-size: 9px;
  1384. letter-spacing: 1px;
  1385. font-weight: bold;
  1386. text-shadow: 0px 0px 0px #bebcbb;
  1387. }
  1388. /* Divider used on the bottom of the landing view. */
  1389. .bot_divider {
  1390. height: 25px;
  1391. width: 2px;
  1392. background: rgba(107, 105, 105, 0.7);
  1393. margin-left: 20px;
  1394. margin-right: 20px;
  1395. }
  1396. /* * *
  1397. * Landing View (Bottom Styles) | Left Content
  1398. * * */
  1399. /* Maintains maximum width on the status bar. */
  1400. #server_status_wrapper {
  1401. display: inline-flex;
  1402. width: 75px;
  1403. }
  1404. /* Span which displays the player count of the selected server. */
  1405. #player_count {
  1406. color: #949494;
  1407. font-family: 'Avenir Book';
  1408. font-size: 8px;
  1409. font-weight: 900;
  1410. text-shadow: 0px 0px 20px #949494;
  1411. margin-left: 10px;
  1412. }
  1413. /* Icon which displays the status of the mojang services. */
  1414. #mojang_status_icon {
  1415. font-size: 30px;
  1416. color: #848484;
  1417. margin-left: 15px;
  1418. }
  1419. /* * *
  1420. * Landing View (Bottom Styles) | Center Content
  1421. * * */
  1422. /* Button which opens the news view. */
  1423. #newsButton {
  1424. font-family: 'Avenir Book';
  1425. background: none;
  1426. border: none;
  1427. cursor: pointer;
  1428. outline: none;
  1429. }
  1430. #newsButton:hover #newsButtonText,
  1431. #newsButton:focus #newsButtonText {
  1432. text-shadow: 0px 0px 20px #fff, 0px 0px 20px #fff;
  1433. }
  1434. #newsButton:active {
  1435. color: #c7c7c7;
  1436. text-shadow: 0px 0px 20px #c7c7c7, 0px 0px 20px #c7c7c7;
  1437. }
  1438. #newsButton:hover #newsButtonSVG,
  1439. #newsButton:focus #newsButtonSVG {
  1440. -webkit-filter: drop-shadow(0px 0px 2px #fff);
  1441. }
  1442. #newsButton:active #newsButtonSVG .arrowLine {
  1443. stroke: #c7c7c7;
  1444. }
  1445. #newsButton:active #newsButtonSVG {
  1446. -webkit-filter: drop-shadow(0px 0px 2px #c7c7c7);
  1447. }
  1448. #newsButton:disabled #newsButtonSVG .arrowLine {
  1449. stroke: rgba(255, 255, 255, 0.75);
  1450. }
  1451. /* Arrow image which floats above the news button. */
  1452. #newsButtonSVG {
  1453. height: 11px;
  1454. margin-left: -2px;
  1455. transition: 0.25s ease;
  1456. }
  1457. /* Span which contains the news button text. */
  1458. #newsButtonText {
  1459. color: white;
  1460. font-weight: 900;
  1461. letter-spacing: 2px;
  1462. text-shadow: 0px 0px 0px #bebcbb;
  1463. font-size: 11px;
  1464. line-height: 30px;
  1465. display: flex;
  1466. transition: 0.25s ease;
  1467. }
  1468. /* * *
  1469. * Landing View (Bottom Styles) | Right Content
  1470. * * */
  1471. /* Main launch content container. */
  1472. #landingContainer > #lower > #right #launch_content {
  1473. position: relative;
  1474. top: 25px;
  1475. display: inline-flex;
  1476. }
  1477. /* The launch button. */
  1478. #launch_button {
  1479. font-family: 'Avenir Book';
  1480. background: none;
  1481. border: none;
  1482. cursor: pointer;
  1483. color: #fff;
  1484. font-weight: 900;
  1485. letter-spacing: 2px;
  1486. text-shadow: 0px 0px 0px #bebcbb;
  1487. font-size: 20px;
  1488. padding: 0px;
  1489. transition: 0.25s ease;
  1490. outline: none;
  1491. }
  1492. #launch_button:hover,
  1493. #launch_button:focus {
  1494. text-shadow: 0px 0px 20px #fff, 0px 0px 20px #fff;
  1495. }
  1496. #launch_button:active {
  1497. color: #c7c7c7;
  1498. text-shadow: 0px 0px 20px #c7c7c7, 0px 0px 20px #c7c7c7;
  1499. }
  1500. #launch_button:disabled {
  1501. color: #c7c7c7;
  1502. cursor: default;
  1503. pointer-events: none;
  1504. }
  1505. /* Launch details main container, hidden until launch processing begins. */
  1506. #launch_details {
  1507. position: relative;
  1508. top: 25px;
  1509. display: none;
  1510. }
  1511. /* Left side of launch details container, displays percentage and a divider. */
  1512. #launch_details_left {
  1513. display: flex;
  1514. }
  1515. /* Span which displays percentage complete. */
  1516. #launch_progress_label {
  1517. color: white;
  1518. font-family: 'Avenir Book';
  1519. font-weight: 900;
  1520. letter-spacing: 1px;
  1521. text-shadow: 0px 0px 0px #bebcbb;
  1522. font-size: 20px;
  1523. min-width: 53.21px;
  1524. max-width: 53.21px;
  1525. text-align: right;
  1526. }
  1527. /* Right side of launch details container, displays progress bar and details. */
  1528. #launch_details_right {
  1529. display: flex;
  1530. flex-direction: column;
  1531. justify-content: center;
  1532. }
  1533. /* Button which opens the server selection view. */
  1534. #server_selection_button {
  1535. background: none;
  1536. border: none;
  1537. outline: none;
  1538. cursor: pointer;
  1539. line-height: 24px;
  1540. padding: 0px;
  1541. transition: 0.25s ease;
  1542. }
  1543. #server_selection_button:hover,
  1544. #server_selection_button:focus {
  1545. text-shadow: 0px 0px 20px #fff, 0px 0px 20px #fff, 0px 0px 20px #fff;
  1546. }
  1547. #server_selection_button:active {
  1548. color: #c7c7c7;
  1549. text-shadow: 0px 0px 20px #c7c7c7, 0px 0px 20px #c7c7c7, 0px 0px 20px #c7c7c7;
  1550. }
  1551. /* Progress bar styles. */
  1552. #launch_progress[value] {
  1553. height: 3px;
  1554. width: 265px;
  1555. -webkit-appearance: none;
  1556. }
  1557. #launch_progress[value]::-webkit-progress-bar {
  1558. background-color: transparent;
  1559. }
  1560. #launch_progress[value]::-webkit-progress-value {
  1561. background-color: #fff;
  1562. }
  1563. /* Span which displays information about the status of the launch process. */
  1564. #launch_details_text {
  1565. font-size: 11px;
  1566. text-overflow: ellipsis;
  1567. white-space: nowrap;
  1568. overflow: hidden;
  1569. }
  1570. /*******************************************************************************
  1571. * *
  1572. * Overlay View (overlay.ejs) *
  1573. * *
  1574. ******************************************************************************/
  1575. /* * *
  1576. * Overlay View (Main Content)
  1577. * * */
  1578. /* Overlay container, placed over the main div. */
  1579. #overlayContainer {
  1580. position: absolute;
  1581. z-index: 500;
  1582. top: 22px;
  1583. display: flex;
  1584. align-items: center;
  1585. justify-content: center;
  1586. width: 100%;
  1587. height: calc(100% - 22px);
  1588. background: rgba(0, 0, 0, 0.50);
  1589. }
  1590. /* Main overlay content. */
  1591. #overlayContent {
  1592. position: relative;
  1593. display: flex;
  1594. flex-direction: column;
  1595. align-items: center;
  1596. /*justify-content: space-between;*/
  1597. width: 300px;
  1598. /*height: 35%;*/
  1599. box-sizing: border-box;
  1600. padding: 15px 0px;
  1601. /* background-color: #424242; */
  1602. text-align: center;
  1603. }
  1604. /* Main overlay content anchor styles. */
  1605. #overlayContent a,
  1606. #overlayDismiss {
  1607. color: rgba(202, 202, 202, 0.75);
  1608. transition: 0.25s ease;
  1609. }
  1610. #overlayContent a:hover,
  1611. #overlayContent a:focus,
  1612. #overlayDismiss:focus {
  1613. color: rgba(255, 255, 255, 0.75);
  1614. }
  1615. #overlayContent a:active,
  1616. #overlayDismiss:active {
  1617. color: rgba(165, 165, 165, 0.75);
  1618. }
  1619. /* Add spacing between overlay content elements. */
  1620. #overlayContent > *:first-child {
  1621. margin-top: 0px !important;
  1622. }
  1623. #overlayContent > *:last-child {
  1624. margin-bottom: 0px !important;
  1625. }
  1626. #overlayContent > * {
  1627. margin: 8px 0px;
  1628. }
  1629. /* Overlay title styles. */
  1630. #overlayTitle {
  1631. font-family: 'Avenir Medium';
  1632. font-size: 20px;
  1633. color: #fff;
  1634. font-weight: bold;
  1635. letter-spacing: 1px;
  1636. }
  1637. /* Overlay description styles. */
  1638. #overlayDesc {
  1639. font-family: 'Avenir Book';
  1640. font-size: 12px;
  1641. color: #fff;
  1642. font-weight: bold;
  1643. }
  1644. /* Div which contains action buttons. */
  1645. #overlayActionContainer {
  1646. display: flex;
  1647. flex-direction: column;
  1648. justify-content: center;
  1649. }
  1650. /* Overlay acknowledge button styles. */
  1651. #overlayAcknowledge {
  1652. background: none;
  1653. border: 1px solid #ffffff;
  1654. color: white;
  1655. font-family: 'Avenir Medium';
  1656. font-weight: bold;
  1657. border-radius: 2px;
  1658. padding: 0px 8.1px;
  1659. cursor: pointer;
  1660. transition: 0.25s ease;
  1661. }
  1662. #overlayAcknowledge:hover,
  1663. #overlayAcknowledge:focus {
  1664. box-shadow: 0px 0px 10px 0px #fff;
  1665. outline: none;
  1666. }
  1667. #overlayAcknowledge:active {
  1668. border-color: rgba(255, 255, 255, 0.75);
  1669. color: rgba(255, 255, 255, 0.75);
  1670. }
  1671. /* Overlay dismiss option styles. */
  1672. #overlayDismiss {
  1673. font-family: 'Avenir Book';
  1674. font-weight: bold;
  1675. font-size: 10px;
  1676. text-decoration: none;
  1677. padding-top: 2.5px;
  1678. background: none;
  1679. border: none;
  1680. outline: none;
  1681. cursor: pointer;
  1682. }
  1683. #overlayDismiss:hover {
  1684. color: rgba(255, 255, 255, 0.75);
  1685. }
  1686. #overlayDismiss:active {
  1687. color: rgba(165, 165, 165, 0.75);
  1688. }
  1689. /* * *
  1690. * Overlay View (Server Selection Content)
  1691. * * */
  1692. /* Server selection content container. */
  1693. #serverSelectContent {
  1694. display: flex;
  1695. flex-direction: column;
  1696. justify-content: center;
  1697. align-items: center;
  1698. height: 75%;
  1699. }
  1700. /* Server selection header. */
  1701. #serverSelectHeader {
  1702. font-family: 'Avenir Medium';
  1703. font-size: 20px;
  1704. font-weight: bold;
  1705. color: #fff;
  1706. margin-bottom: 25px;
  1707. }
  1708. /* Wrapper div for the list of available servers. */
  1709. #serverSelectList {
  1710. display: flex;
  1711. flex-direction: column;
  1712. align-items: center;
  1713. justify-content: center;
  1714. max-height: 65%;
  1715. min-height: 40%;
  1716. }
  1717. /* Scrollable div which lists the available servers. */
  1718. #serverSelectListScrollable {
  1719. padding: 0px 5px;
  1720. overflow-y: scroll;
  1721. }
  1722. #serverSelectListScrollable::-webkit-scrollbar {
  1723. width: 2px;
  1724. }
  1725. #serverSelectListScrollable::-webkit-scrollbar-track {
  1726. display: none;
  1727. }
  1728. #serverSelectListScrollable::-webkit-scrollbar-thumb {
  1729. border-radius: 10px;
  1730. box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.50);
  1731. }
  1732. /* Content container for a server listing. */
  1733. .serverListing {
  1734. border: none;
  1735. padding: 0px;
  1736. width: 375px;
  1737. min-height: 60px;
  1738. display: flex;
  1739. justify-content: flex-start;
  1740. align-items: center;
  1741. opacity: 0.6;
  1742. transition: 0.25s ease;
  1743. cursor: pointer;
  1744. position: relative;
  1745. background: rgba(131, 131, 131, 0.25);
  1746. }
  1747. .serverListing[selected] {
  1748. cursor: default;
  1749. opacity: 1.0;
  1750. }
  1751. .serverListing:hover,
  1752. .serverListing:focus {
  1753. outline: none;
  1754. opacity: 1.0;
  1755. }
  1756. /* Add spacing between server listings. */
  1757. #serverSelectListScrollable > .serverListing:not(:first-child):not(:last-child) {
  1758. margin: 5px 0px;
  1759. }
  1760. #serverSelectListScrollable > .serverListing:first-child {
  1761. margin-bottom: 5px;
  1762. }
  1763. #serverSelectListScrollable > .serverListing:last-child {
  1764. margin-top: 5px;
  1765. }
  1766. /* Server listing image. */
  1767. .serverListingImg {
  1768. margin: 0px 10px 0px 5px;
  1769. border: 1px solid #fff;
  1770. height: 50px;
  1771. width: 50px;
  1772. }
  1773. /* Content container for the server listing's details. */
  1774. .serverListingDetails {
  1775. display: flex;
  1776. flex-direction: column;
  1777. align-items: flex-start;
  1778. justify-content: space-between;
  1779. height: 50px;
  1780. }
  1781. /* The name of the server listing. */
  1782. .serverListingName {
  1783. font-family: 'Avenir Book';
  1784. font-size: 14px;
  1785. font-weight: bold;
  1786. color: #fff;
  1787. }
  1788. /* Description for the server listing. */
  1789. .serverListingDescription {
  1790. font-family: 'Avenir Book';
  1791. font-size: 10px;
  1792. line-height: 10px;
  1793. font-weight: bold;
  1794. color: #fff;
  1795. }
  1796. /* Content container for the server listing's information. */
  1797. .serverListingInfo {
  1798. width: 100%;
  1799. display: flex;
  1800. justify-content: flex-start;
  1801. }
  1802. /* The minecraft version of the server listing. */
  1803. .serverListingVersion {
  1804. font-size: 10px;
  1805. color: #fff;
  1806. font-family: 'Avenir Book';
  1807. text-align: center;
  1808. display: flex;
  1809. justify-content: center;
  1810. align-items: center;
  1811. line-height: 12px;
  1812. height: 12px;
  1813. border-radius: 2px;
  1814. background: rgba(31, 140, 11, 0.8);
  1815. padding: 0px 2px;
  1816. }
  1817. /* The revision version of the server's manifest. */
  1818. .serverListingRevision {
  1819. font-family: 'Avenir Book';
  1820. color: #969696;
  1821. font-size: 10px;
  1822. line-height: 12px;
  1823. padding: 0px 5px;
  1824. }
  1825. /* Star which indicates the default (main) server. */
  1826. .serverListingStarWrapper {
  1827. display: flex;
  1828. align-items: center;
  1829. cursor: pointer;
  1830. height: 12px;
  1831. position: relative;
  1832. }
  1833. /* Tooltip which displays when hovering over the star. */
  1834. .serverListingStarTooltip {
  1835. visibility: hidden;
  1836. opacity: 0;
  1837. width: 65px;
  1838. background-color: rgba(0, 0, 0, 0.40);
  1839. color: #fff;
  1840. text-align: center;
  1841. border-radius: 4px;
  1842. position: absolute;
  1843. z-index: 1;
  1844. left: 130%;
  1845. font-family: 'Avenir Book';
  1846. font-size: 10px;
  1847. transition: visibility 0s linear 0.25s, opacity 0.25s ease;
  1848. }
  1849. .serverListingStarTooltip::after {
  1850. content: " ";
  1851. position: absolute;
  1852. top: 50%;
  1853. right: 100%; /* To the left of the tooltip */
  1854. margin-top: -5px;
  1855. border-width: 5px;
  1856. border-style: solid;
  1857. border-color: transparent rgba(0, 0, 0, 0.40) transparent transparent;
  1858. }
  1859. .serverListingStarWrapper:hover .serverListingStarTooltip {
  1860. visibility: visible;
  1861. opacity: 1;
  1862. transition-delay:0s;
  1863. }
  1864. /* Content container which contains the server select actions. */
  1865. #serverSelectActions {
  1866. display: flex;
  1867. flex-direction: column;
  1868. justify-content: center;
  1869. align-items: center;
  1870. margin-top: 25px;
  1871. }
  1872. /* Server selection confirm button styles. */
  1873. #serverSelectConfirm {
  1874. background: none;
  1875. border: 1px solid #ffffff;
  1876. color: white;
  1877. font-family: 'Avenir Medium';
  1878. font-weight: bold;
  1879. border-radius: 2px;
  1880. padding: 0px 8.1px;
  1881. cursor: pointer;
  1882. transition: 0.25s ease;
  1883. min-height: 20.67px;
  1884. }
  1885. #serverSelectConfirm:hover,
  1886. #serverSelectConfirm:focus {
  1887. box-shadow: 0px 0px 10px 0px #fff;
  1888. outline: none;
  1889. }
  1890. #serverSelectConfirm:active {
  1891. border-color: rgba(255, 255, 255, 0.75);
  1892. color: rgba(255, 255, 255, 0.75);
  1893. }
  1894. /* Server selection cancel button styles. */
  1895. #serverSelectCancel {
  1896. font-family: 'Avenir Book';
  1897. font-weight: bold;
  1898. font-size: 10px;
  1899. text-decoration: none;
  1900. padding-top: 2.5px;
  1901. color: rgba(202, 202, 202, 0.75);
  1902. transition: 0.25s ease;
  1903. background: none;
  1904. border: none;
  1905. outline: none;
  1906. cursor: pointer;
  1907. }
  1908. #serverSelectCancel:hover,
  1909. #serverSelectCancel:focus {
  1910. color: rgba(255, 255, 255, 0.75);
  1911. }
  1912. #serverSelectCancel:active {
  1913. color: rgba(165, 165, 165, 0.75);
  1914. }