launcher.css 48 KB

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