launcher.css 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148
  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: 100%;
  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. }
  879. #newsArticleTitle:hover,
  880. #newsArticleTitle:focus {
  881. text-shadow: 0px 0px 20px white;
  882. }
  883. #newsArticleTitle:active {
  884. color: #c7c7c7;
  885. text-shadow: 0px 0px 20px #c7c7c7;
  886. }
  887. /* News meta container. */
  888. #newsMetaContainer {
  889. display: flex;
  890. flex-direction: column;
  891. }
  892. /* Date and author shared styles. */
  893. #newsArticleDate,
  894. #newsArticleAuthor {
  895. display: inline-block;
  896. font-size: 10px;
  897. color: rgb(255, 255, 255);
  898. font-family: 'Avenir Book';
  899. padding: 0px 5px;
  900. font-weight: bold;
  901. border-radius: 2px;
  902. }
  903. /* Date styles. */
  904. #newsArticleDate {
  905. background: white;
  906. color: black;
  907. margin-top: 5px;
  908. }
  909. /* Author styles. */
  910. #newsArticleAuthor {
  911. background: #a02d2a;
  912. }
  913. /* News article comments styles. */
  914. #newsArticleComments {
  915. margin-top: 5px;
  916. display: inline-block;
  917. font-size: 10px;
  918. color: rgb(255, 255, 255);
  919. font-family: 'Avenir Book';
  920. text-decoration: none;
  921. transition: 0.25s ease;
  922. }
  923. #newsArticleComments:focus,
  924. #newsArticleComments:hover {
  925. color: #e0e0e0;
  926. }
  927. #newsArticleComments:active {
  928. color: #c7c7c7;
  929. }
  930. /* Article content container (right). */
  931. #newsArticleContainer {
  932. width: 75%;
  933. height: 100%;
  934. }
  935. /* Article content styles. */
  936. #newsArticleContentScrollable {
  937. color: white;
  938. font-family: 'Avenir Book';
  939. font-size: 12px;
  940. max-width: 80%;
  941. margin: 25px 35px 0px 25px;
  942. overflow-y: scroll;
  943. height: calc(100% - 25px);
  944. padding: 0px 15px 0px 15px;
  945. }
  946. #newsArticleContentScrollable img {
  947. max-width: 95%;
  948. display: block;
  949. margin: 0 auto;
  950. }
  951. #newsArticleContentScrollable a {
  952. color: rgba(202, 202, 202, 0.75);
  953. transition: 0.25s ease;
  954. }
  955. #newsArticleContentScrollable a:hover,
  956. #newsArticleContentScrollable a:focus {
  957. color: rgba(255, 255, 255, 0.75);
  958. }
  959. #newsArticleContentScrollable a:active {
  960. color: rgba(165, 165, 165, 0.75);
  961. }
  962. #newsArticleContentScrollable::-webkit-scrollbar {
  963. width: 2px;
  964. }
  965. #newsArticleContentScrollable::-webkit-scrollbar-track {
  966. display: none;
  967. }
  968. #newsArticleContentScrollable::-webkit-scrollbar-thumb {
  969. border-radius: 10px;
  970. box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.50);
  971. }
  972. /* News navigation container. */
  973. #newsNavigationContainer {
  974. display: flex;
  975. justify-content: center;
  976. align-items: center;
  977. margin-bottom: 40px;
  978. }
  979. /* Navigation status span. */
  980. #newsNavigationStatus {
  981. color: white;
  982. font-family: 'Avenir Book';
  983. font-size: 12px;
  984. margin: 0px 15px;
  985. }
  986. /* Left and right navigation button styles. */
  987. #newsNavigateLeft,
  988. #newsNavigateRight {
  989. color: white;
  990. font-family: 'Avenir Book';
  991. background: none;
  992. border: none;
  993. outline: none;
  994. height: 20px;
  995. cursor: pointer;
  996. }
  997. #newsNavigateLeft:hover #newsNavigationLeftSVG,
  998. #newsNavigateLeft:focus #newsNavigationLeftSVG,
  999. #newsNavigateRight:hover #newsNavigationRightSVG,
  1000. #newsNavigateRight:focus #newsNavigationRightSVG {
  1001. -webkit-filter: drop-shadow(0px 0px 2px #fff);
  1002. }
  1003. #newsNavigateLeft:active #newsNavigationLeftSVG .arrowLine,
  1004. #newsNavigateRight:active #newsNavigationRightSVG .arrowLine {
  1005. stroke: #c7c7c7;
  1006. }
  1007. #newsNavigateLeft:active #newsNavigationLeftSVG,
  1008. #newsNavigateRight:active #newsNavigationRightSVG {
  1009. -webkit-filter: drop-shadow(0px 0px 2px #c7c7c7);
  1010. }
  1011. #newsNavigateLeft:disabled #newsNavigationLeftSVG .arrowLine,
  1012. #newsNavigateRight:disabled #newsNavigationRightSVG .arrowLine {
  1013. stroke: rgba(255, 255, 255, 0.75);
  1014. }
  1015. #newsNavigationLeftSVG {
  1016. transform: rotate(-90deg);
  1017. width: 15px;
  1018. }
  1019. #newsNavigationRightSVG {
  1020. transform: rotate(90deg);
  1021. width: 15px;
  1022. }
  1023. /* News error (message) container. */
  1024. #newsErrorContainer {
  1025. height: 100%;
  1026. display: flex;
  1027. align-items: center;
  1028. flex-direction: column;
  1029. justify-content: center;
  1030. }
  1031. #newsErrorFailed {
  1032. display: flex;
  1033. align-items: center;
  1034. flex-direction: column;
  1035. justify-content: center;
  1036. }
  1037. /* News error content (message). */
  1038. .newsErrorContent {
  1039. color: white;
  1040. font-size: 20px;
  1041. font-family: 'Avenir Book';
  1042. }
  1043. #newsErrorLoading {
  1044. display: flex;
  1045. width: 168.92px;
  1046. }
  1047. #nELoadSpan {
  1048. white-space: pre;
  1049. }
  1050. /* News error retry button styles. */
  1051. #newsErrorRetry {
  1052. color: #ffffff;
  1053. font-family: 'Avenir Book';
  1054. font-size: 12px;
  1055. font-weight: bold;
  1056. cursor: pointer;
  1057. background: none;
  1058. border: none;
  1059. outline: none;
  1060. transition: 0.25s ease;
  1061. }
  1062. #newsErrorRetry:focus,
  1063. #newsErrorRetry:hover {
  1064. text-shadow: 0px 0px 20px white;
  1065. }
  1066. #newsErrorRetry:active {
  1067. color: #c7c7c7;
  1068. text-shadow: 0px 0px 20px #c7c7c7;
  1069. }
  1070. /*******************************************************************************
  1071. * *
  1072. * Landing View (Top Styles) *
  1073. * *
  1074. ******************************************************************************/
  1075. /* * *
  1076. * Landing View (Top Styles) | Left Content
  1077. * * */
  1078. /* Logo image. */
  1079. #image_seal {
  1080. height: 70px;
  1081. width: auto;
  1082. position: relative;
  1083. border: 2px solid white;
  1084. box-sizing: border-box;
  1085. border-radius: 50%;
  1086. }
  1087. /* Logo container styles. */
  1088. #image_seal_container {
  1089. position: relative;
  1090. height: 70px;
  1091. width: 70px;
  1092. border-radius: 50%;
  1093. margin-top: 50px;
  1094. }
  1095. /* Logo container styles w/ update. */
  1096. #image_seal_container[update]{
  1097. cursor: pointer
  1098. }
  1099. #image_seal_container[update]:before,
  1100. #image_seal_container[update]:after {
  1101. cursor: pointer;
  1102. position: absolute;
  1103. content: '';
  1104. height: 100%;
  1105. width: 100%;
  1106. top: 0%;
  1107. left: 0%;
  1108. border-radius: 50%;
  1109. box-shadow: 0 0 15px #43c628;
  1110. animation: glow-grow 4s ease-out infinite;
  1111. background: rgba(0, 0, 0, 0.15);
  1112. }
  1113. #image_seal_container[update]:before {
  1114. animation-delay: 2s;
  1115. }
  1116. /* Update available tooltip styles. */
  1117. #updateAvailableTooltip {
  1118. cursor: pointer;
  1119. visibility: hidden;
  1120. opacity: 0;
  1121. width: 100px;
  1122. height: 15px;
  1123. background-color: rgb(0, 0, 0);
  1124. color: #fff;
  1125. text-align: center;
  1126. border-radius: 4px;
  1127. padding: 2px;
  1128. position: absolute;
  1129. z-index: 1;
  1130. top: 115%;
  1131. left: -17.5px;
  1132. font-family: 'Avenir Medium';
  1133. font-size: 12px;
  1134. transition: visibility 0s linear 0.25s, opacity 0.25s ease;
  1135. }
  1136. #updateAvailableTooltip::after {
  1137. content: " ";
  1138. position: absolute;
  1139. left: 50%;
  1140. bottom: 100%;
  1141. margin-left: -5px;
  1142. border-width: 5px;
  1143. border-style: solid;
  1144. border-color: transparent transparent rgb(0, 0, 0) transparent;
  1145. }
  1146. #image_seal_container[update]:hover #updateAvailableTooltip {
  1147. visibility: visible;
  1148. opacity: 1;
  1149. transition-delay: 0s;
  1150. }
  1151. /* Update available animation. */
  1152. @keyframes glow-grow {
  1153. 0% {
  1154. opacity: 0;
  1155. transform: scale(1);
  1156. }
  1157. 80% {
  1158. opacity: 1;
  1159. }
  1160. 100% {
  1161. transform: scale(1.5);
  1162. opacity: 0;
  1163. }
  1164. }
  1165. /* * *
  1166. * Landing View (Bottom Styles) | Right Content
  1167. * * */
  1168. /* Wrapper container for top, right content. */
  1169. #rightContainer {
  1170. display: flex;
  1171. flex-direction: column;
  1172. position: relative;
  1173. top: 50px;
  1174. align-items: flex-start;
  1175. height: calc(100% - 50px);
  1176. }
  1177. /* Right hand user content container. */
  1178. #user_content {
  1179. display: flex;
  1180. align-items: center;
  1181. justify-content: center;
  1182. box-sizing: border-box;
  1183. position: relative;
  1184. }
  1185. /* User profile avatar container. */
  1186. #avatarContainer {
  1187. border-radius: 50%;
  1188. border: 2px solid #cad7e1;
  1189. box-sizing: border-box;
  1190. background: rgba(1, 2, 1, 0.5);
  1191. height: 70px;
  1192. width: 70px;
  1193. box-shadow: 0px 0px 10px 0px rgb(0, 0, 0);
  1194. overflow: hidden;
  1195. position: relative;
  1196. background-image: url('https://cdn.discordapp.com/avatars/169197209630277642/6650b5a50e1cb3d00a79b9b88b9a0cd4.png');
  1197. background-size: contain;
  1198. }
  1199. /* Avatar edit overlay. */
  1200. #avatarOverlay {
  1201. opacity: 0;
  1202. position: absolute;
  1203. z-index: 1;
  1204. display: flex;
  1205. justify-content: center;
  1206. align-items: center;
  1207. font-family: 'Avenir Book';
  1208. color: #fff;
  1209. transition: 0.25s ease;
  1210. font-weight: bold;
  1211. letter-spacing: 2px;
  1212. background: linear-gradient(65deg, rgba(0, 0, 0, 0.4), rgba(136, 77, 77, 0.4) 60%);
  1213. -webkit-user-select: none;
  1214. cursor: pointer;
  1215. width: 100%;
  1216. height: 100%;
  1217. border-radius: 50%;
  1218. }
  1219. #avatarOverlay:hover {
  1220. opacity: 1;
  1221. }
  1222. /* User profile name text. */
  1223. #user_text {
  1224. font-family: 'Avenir Book';
  1225. font-size: 12px;
  1226. min-width: 135px;
  1227. font-weight: 900;
  1228. letter-spacing: 1px;
  1229. color: white;
  1230. text-shadow: 0px 0px 20px black;
  1231. position: absolute;
  1232. right: 95px;
  1233. text-align: right;
  1234. }
  1235. /* Social media icon content container. */
  1236. #mediaContent {
  1237. position: relative;
  1238. display: flex;
  1239. flex-direction: column;
  1240. margin-top: 25px;
  1241. height: calc(100% - 95px);
  1242. width: 70px;
  1243. align-items: center;
  1244. }
  1245. /* Social Media Icon division containers. */
  1246. #internalMedia, #externalMedia {
  1247. display: flex;
  1248. flex-direction: column;
  1249. }
  1250. /* Container object which wraps an icon to ensure fluid transitions. */
  1251. .mediaContainer {
  1252. display: flex;
  1253. justify-content: center;
  1254. align-items: center;
  1255. height: 27px;
  1256. }
  1257. /* Divider bar between the external and internal icons. */
  1258. .mediaDivider {
  1259. height: 1px;
  1260. width: 14px;
  1261. background: rgb(255, 255, 255);
  1262. margin: 10px 0px;
  1263. }
  1264. /* Social media icon shared styles. */
  1265. .mediaSVG {
  1266. fill: #ffffff;
  1267. height: 12px;
  1268. transition: 0.25s ease;
  1269. cursor: pointer;
  1270. height: 12px;
  1271. width: 25px;
  1272. }
  1273. .mediaSVG:hover,
  1274. .mediaURL:focus .mediaSVG,
  1275. .mediaSVG:active {
  1276. height: 20px;
  1277. }
  1278. /* Social media URL shared styles. */
  1279. .mediaURL {
  1280. outline: none;
  1281. }
  1282. /* Settings icon colors. */
  1283. #settingsSVG {
  1284. stroke: #ffffff;
  1285. height: 15px;
  1286. }
  1287. #settingsSVG:hover {
  1288. height: 23px;
  1289. }
  1290. /* Twitter icon colors. */
  1291. #twitterSVG:hover,
  1292. #twitterURL:focus #twitterSVG {
  1293. fill: #1da1f2;
  1294. }
  1295. #twitterSVG:active {
  1296. fill: #1b8dd4;
  1297. }
  1298. /* Instagram icon colors. */
  1299. #instagramSVG:hover,
  1300. #instagramURL:focus #instagramSVG {
  1301. fill: url('#instaFill')
  1302. /*fill: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); */
  1303. }
  1304. #instagramSVG:active {
  1305. fill: url('#instaFill')
  1306. }
  1307. /* Youtube icon colors. */
  1308. #youtubeSVG:hover,
  1309. #youtubeURL:focus #youtubeSVG {
  1310. fill: #f00;
  1311. }
  1312. #youtubeSVG:active {
  1313. fill: #ea0202;
  1314. }
  1315. /* Discord icon colors. */
  1316. #discordSVG:hover,
  1317. #discordURL:focus #discordSVG {
  1318. fill: #7288d9;
  1319. }
  1320. #discordSVG:active {
  1321. fill: #657ac4;
  1322. }
  1323. /*******************************************************************************
  1324. * *
  1325. * Landing View (Bottom Styles) *
  1326. * *
  1327. ******************************************************************************/
  1328. /* Style for a general label on the bottom of the landing view. */
  1329. .bot_label {
  1330. color: white;
  1331. font-family: 'Avenir Book';
  1332. font-size: 9px;
  1333. letter-spacing: 1px;
  1334. font-weight: bold;
  1335. text-shadow: 0px 0px 0px #bebcbb;
  1336. }
  1337. /* Divider used on the bottom of the landing view. */
  1338. .bot_divider {
  1339. height: 25px;
  1340. width: 2px;
  1341. background: rgba(107, 105, 105, 0.7);
  1342. margin-left: 20px;
  1343. margin-right: 20px;
  1344. }
  1345. /* * *
  1346. * Landing View (Bottom Styles) | Left Content
  1347. * * */
  1348. /* Maintains maximum width on the status bar. */
  1349. #server_status_wrapper {
  1350. display: inline-flex;
  1351. width: 75px;
  1352. }
  1353. /* Span which displays the player count of the selected server. */
  1354. #player_count {
  1355. color: #949494;
  1356. font-family: 'Avenir Book';
  1357. font-size: 8px;
  1358. font-weight: 900;
  1359. text-shadow: 0px 0px 20px #949494;
  1360. margin-left: 10px;
  1361. }
  1362. /* Icon which displays the status of the mojang services. */
  1363. #mojang_status_icon {
  1364. font-size: 30px;
  1365. color: #848484;
  1366. margin-left: 15px;
  1367. }
  1368. /* * *
  1369. * Landing View (Bottom Styles) | Center Content
  1370. * * */
  1371. /* Button which opens the news view. */
  1372. #newsButton {
  1373. font-family: 'Avenir Book';
  1374. background: none;
  1375. border: none;
  1376. cursor: pointer;
  1377. outline: none;
  1378. }
  1379. #newsButton:hover #newsButtonText,
  1380. #newsButton:focus #newsButtonText {
  1381. text-shadow: 0px 0px 20px #fff, 0px 0px 20px #fff;
  1382. }
  1383. #newsButton:active {
  1384. color: #c7c7c7;
  1385. text-shadow: 0px 0px 20px #c7c7c7, 0px 0px 20px #c7c7c7;
  1386. }
  1387. #newsButton:hover #newsButtonSVG,
  1388. #newsButton:focus #newsButtonSVG {
  1389. -webkit-filter: drop-shadow(0px 0px 2px #fff);
  1390. }
  1391. #newsButton:active #newsButtonSVG .arrowLine {
  1392. stroke: #c7c7c7;
  1393. }
  1394. #newsButton:active #newsButtonSVG {
  1395. -webkit-filter: drop-shadow(0px 0px 2px #c7c7c7);
  1396. }
  1397. #newsButton:disabled #newsButtonSVG .arrowLine {
  1398. stroke: rgba(255, 255, 255, 0.75);
  1399. }
  1400. /* Arrow image which floats above the news button. */
  1401. #newsButtonSVG {
  1402. height: 11px;
  1403. margin-left: -2px;
  1404. transition: 0.25s ease;
  1405. }
  1406. /* Span which contains the news button text. */
  1407. #newsButtonText {
  1408. color: white;
  1409. font-weight: 900;
  1410. letter-spacing: 2px;
  1411. text-shadow: 0px 0px 0px #bebcbb;
  1412. font-size: 11px;
  1413. line-height: 30px;
  1414. display: flex;
  1415. transition: 0.25s ease;
  1416. }
  1417. /* * *
  1418. * Landing View (Bottom Styles) | Right Content
  1419. * * */
  1420. /* Main launch content container. */
  1421. #landingContainer > #lower > #right #launch_content {
  1422. position: relative;
  1423. top: 25px;
  1424. display: inline-flex;
  1425. }
  1426. /* The launch button. */
  1427. #launch_button {
  1428. font-family: 'Avenir Book';
  1429. background: none;
  1430. border: none;
  1431. cursor: pointer;
  1432. color: #fff;
  1433. font-weight: 900;
  1434. letter-spacing: 2px;
  1435. text-shadow: 0px 0px 0px #bebcbb;
  1436. font-size: 20px;
  1437. padding: 0px;
  1438. transition: 0.25s ease;
  1439. outline: none;
  1440. }
  1441. #launch_button:hover,
  1442. #launch_button:focus {
  1443. text-shadow: 0px 0px 20px #fff, 0px 0px 20px #fff;
  1444. }
  1445. #launch_button:active {
  1446. color: #c7c7c7;
  1447. text-shadow: 0px 0px 20px #c7c7c7, 0px 0px 20px #c7c7c7;
  1448. }
  1449. #launch_button:disabled {
  1450. color: #c7c7c7;
  1451. cursor: default;
  1452. pointer-events: none;
  1453. }
  1454. /* Launch details main container, hidden until launch processing begins. */
  1455. #launch_details {
  1456. position: relative;
  1457. top: 25px;
  1458. display: none;
  1459. }
  1460. /* Left side of launch details container, displays percentage and a divider. */
  1461. #launch_details_left {
  1462. display: flex;
  1463. }
  1464. /* Span which displays percentage complete. */
  1465. #launch_progress_label {
  1466. color: white;
  1467. font-family: 'Avenir Book';
  1468. font-weight: 900;
  1469. letter-spacing: 1px;
  1470. text-shadow: 0px 0px 0px #bebcbb;
  1471. font-size: 20px;
  1472. min-width: 53.21px;
  1473. max-width: 53.21px;
  1474. text-align: right;
  1475. }
  1476. /* Right side of launch details container, displays progress bar and details. */
  1477. #launch_details_right {
  1478. display: flex;
  1479. flex-direction: column;
  1480. justify-content: center;
  1481. }
  1482. /* Button which opens the server selection view. */
  1483. #server_selection_button {
  1484. background: none;
  1485. border: none;
  1486. outline: none;
  1487. cursor: pointer;
  1488. line-height: 24px;
  1489. padding: 0px;
  1490. transition: 0.25s ease;
  1491. }
  1492. #server_selection_button:hover,
  1493. #server_selection_button:focus {
  1494. text-shadow: 0px 0px 20px #fff, 0px 0px 20px #fff, 0px 0px 20px #fff;
  1495. }
  1496. #server_selection_button:active {
  1497. color: #c7c7c7;
  1498. text-shadow: 0px 0px 20px #c7c7c7, 0px 0px 20px #c7c7c7, 0px 0px 20px #c7c7c7;
  1499. }
  1500. /* Progress bar styles. */
  1501. #launch_progress[value] {
  1502. height: 3px;
  1503. width: 265px;
  1504. -webkit-appearance: none;
  1505. }
  1506. #launch_progress[value]::-webkit-progress-bar {
  1507. background-color: transparent;
  1508. }
  1509. #launch_progress[value]::-webkit-progress-value {
  1510. background-color: #fff;
  1511. }
  1512. /* Span which displays information about the status of the launch process. */
  1513. #launch_details_text {
  1514. font-size: 11px;
  1515. text-overflow: ellipsis;
  1516. white-space: nowrap;
  1517. overflow: hidden;
  1518. }
  1519. /*******************************************************************************
  1520. * *
  1521. * Overlay View (overlay.ejs) *
  1522. * *
  1523. ******************************************************************************/
  1524. /* * *
  1525. * Overlay View (Main Content)
  1526. * * */
  1527. /* Overlay container, placed over the main div. */
  1528. #overlayContainer {
  1529. position: absolute;
  1530. z-index: 500;
  1531. top: 22px;
  1532. display: flex;
  1533. align-items: center;
  1534. justify-content: center;
  1535. width: 100%;
  1536. height: calc(100% - 22px);
  1537. background: rgba(0, 0, 0, 0.50);
  1538. }
  1539. /* Main overlay content. */
  1540. #overlayContent {
  1541. position: relative;
  1542. display: flex;
  1543. flex-direction: column;
  1544. align-items: center;
  1545. /*justify-content: space-between;*/
  1546. width: 300px;
  1547. /*height: 35%;*/
  1548. box-sizing: border-box;
  1549. padding: 15px 0px;
  1550. /* background-color: #424242; */
  1551. text-align: center;
  1552. }
  1553. /* Main overlay content anchor styles. */
  1554. #overlayContent a,
  1555. #overlayDismiss {
  1556. color: rgba(202, 202, 202, 0.75);
  1557. transition: 0.25s ease;
  1558. }
  1559. #overlayContent a:hover,
  1560. #overlayContent a:focus,
  1561. #overlayDismiss:focus {
  1562. color: rgba(255, 255, 255, 0.75);
  1563. }
  1564. #overlayContent a:active,
  1565. #overlayDismiss:active {
  1566. color: rgba(165, 165, 165, 0.75);
  1567. }
  1568. /* Add spacing between overlay content elements. */
  1569. #overlayContent > *:first-child {
  1570. margin-top: 0px !important;
  1571. }
  1572. #overlayContent > *:last-child {
  1573. margin-bottom: 0px !important;
  1574. }
  1575. #overlayContent > * {
  1576. margin: 8px 0px;
  1577. }
  1578. /* Overlay title styles. */
  1579. #overlayTitle {
  1580. font-family: 'Avenir Medium';
  1581. font-size: 20px;
  1582. color: #fff;
  1583. font-weight: bold;
  1584. letter-spacing: 1px;
  1585. }
  1586. /* Overlay description styles. */
  1587. #overlayDesc {
  1588. font-family: 'Avenir Book';
  1589. font-size: 12px;
  1590. color: #fff;
  1591. font-weight: bold;
  1592. }
  1593. /* Div which contains action buttons. */
  1594. #overlayActionContainer {
  1595. display: flex;
  1596. flex-direction: column;
  1597. justify-content: center;
  1598. }
  1599. /* Overlay acknowledge button styles. */
  1600. #overlayAcknowledge {
  1601. background: none;
  1602. border: 1px solid #ffffff;
  1603. color: white;
  1604. font-family: 'Avenir Medium';
  1605. font-weight: bold;
  1606. border-radius: 2px;
  1607. padding: 0px 8.1px;
  1608. cursor: pointer;
  1609. transition: 0.25s ease;
  1610. }
  1611. #overlayAcknowledge:hover,
  1612. #overlayAcknowledge:focus {
  1613. box-shadow: 0px 0px 10px 0px #fff;
  1614. outline: none;
  1615. }
  1616. #overlayAcknowledge:active {
  1617. border-color: rgba(255, 255, 255, 0.75);
  1618. color: rgba(255, 255, 255, 0.75);
  1619. }
  1620. /* Overlay dismiss option styles. */
  1621. #overlayDismiss {
  1622. font-family: 'Avenir Book';
  1623. font-weight: bold;
  1624. font-size: 10px;
  1625. text-decoration: none;
  1626. padding-top: 2.5px;
  1627. background: none;
  1628. border: none;
  1629. outline: none;
  1630. cursor: pointer;
  1631. }
  1632. #overlayDismiss:hover {
  1633. color: rgba(255, 255, 255, 0.75);
  1634. }
  1635. #overlayDismiss:active {
  1636. color: rgba(165, 165, 165, 0.75);
  1637. }
  1638. /* * *
  1639. * Overlay View (Server + Account Selection Content)
  1640. * * */
  1641. /* Server selection content container. */
  1642. #serverSelectContent,
  1643. #accountSelectContent {
  1644. display: flex;
  1645. flex-direction: column;
  1646. justify-content: center;
  1647. align-items: center;
  1648. height: 75%;
  1649. }
  1650. /* Server selection header. */
  1651. #serverSelectHeader,
  1652. #accountSelectHeader {
  1653. font-family: 'Avenir Medium';
  1654. font-size: 20px;
  1655. font-weight: bold;
  1656. color: #fff;
  1657. margin-bottom: 25px;
  1658. }
  1659. /* Wrapper div for the list of available servers. */
  1660. #serverSelectList,
  1661. #accountSelectList {
  1662. display: flex;
  1663. flex-direction: column;
  1664. align-items: center;
  1665. justify-content: center;
  1666. max-height: 65%;
  1667. min-height: 40%;
  1668. }
  1669. /* Scrollable div which lists the available servers. */
  1670. #serverSelectListScrollable,
  1671. #accountSelectListScrollable {
  1672. padding: 0px 5px;
  1673. overflow-y: scroll;
  1674. }
  1675. #serverSelectListScrollable::-webkit-scrollbar,
  1676. #accountSelectListScrollable::-webkit-scrollbar {
  1677. width: 2px;
  1678. }
  1679. #serverSelectListScrollable::-webkit-scrollbar-track,
  1680. #accountSelectListScrollable::-webkit-scrollbar-track {
  1681. display: none;
  1682. }
  1683. #serverSelectListScrollable::-webkit-scrollbar-thumb,
  1684. #accountSelectListScrollable::-webkit-scrollbar-thumb {
  1685. border-radius: 10px;
  1686. box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.50);
  1687. }
  1688. /* Content container for a server listing. */
  1689. .serverListing {
  1690. border: none;
  1691. padding: 0px;
  1692. width: 375px;
  1693. min-height: 60px;
  1694. display: flex;
  1695. justify-content: flex-start;
  1696. align-items: center;
  1697. opacity: 0.6;
  1698. transition: 0.25s ease;
  1699. cursor: pointer;
  1700. position: relative;
  1701. background: rgba(131, 131, 131, 0.25);
  1702. }
  1703. .serverListing[selected] {
  1704. cursor: default;
  1705. opacity: 1.0;
  1706. }
  1707. .serverListing:hover,
  1708. .serverListing:focus {
  1709. outline: none;
  1710. opacity: 1.0;
  1711. }
  1712. .accountListing {
  1713. color: white;
  1714. border: 1px solid rgba(170, 170, 170, 0.5);
  1715. border-radius: 4px;
  1716. padding: 5px 45px;
  1717. width: 250px;
  1718. display: flex;
  1719. justify-content: flex-start;
  1720. align-items: center;
  1721. opacity: 0.6;
  1722. transition: 0.25s ease;
  1723. cursor: pointer;
  1724. position: relative;
  1725. background: rgba(255, 255, 255, 0.25);
  1726. }
  1727. .accountListing[selected] {
  1728. cursor: default;
  1729. opacity: 1.0;
  1730. }
  1731. .accountListing:hover,
  1732. .accountListing:focus {
  1733. outline: none;
  1734. opacity: 1.0;
  1735. }
  1736. .accountListingName {
  1737. display: flex;
  1738. height: 100%;
  1739. width: 100%;
  1740. padding-left: 10px;
  1741. }
  1742. /* Add spacing between server listings. */
  1743. #serverSelectListScrollable > .serverListing:not(:first-child):not(:last-child),
  1744. #accountSelectListScrollable > .accountListing:not(:first-child):not(:last-child) {
  1745. margin: 5px 0px;
  1746. }
  1747. #serverSelectListScrollable > .serverListing:first-child,
  1748. #accountSelectListScrollable > .accountListing:first-child {
  1749. margin-bottom: 5px;
  1750. }
  1751. #serverSelectListScrollable > .serverListing:last-child,
  1752. #accountSelectListScrollable > .accountListing:last-child {
  1753. margin-top: 5px;
  1754. }
  1755. /* Server listing image. */
  1756. .serverListingImg {
  1757. margin: 0px 10px 0px 5px;
  1758. border: 1px solid #fff;
  1759. height: 50px;
  1760. width: 50px;
  1761. }
  1762. /* Content container for the server listing's details. */
  1763. .serverListingDetails {
  1764. display: flex;
  1765. flex-direction: column;
  1766. align-items: flex-start;
  1767. justify-content: space-between;
  1768. height: 50px;
  1769. }
  1770. /* The name of the server listing. */
  1771. .serverListingName {
  1772. font-family: 'Avenir Book';
  1773. font-size: 14px;
  1774. font-weight: bold;
  1775. color: #fff;
  1776. }
  1777. /* Description for the server listing. */
  1778. .serverListingDescription {
  1779. font-family: 'Avenir Book';
  1780. font-size: 10px;
  1781. line-height: 10px;
  1782. font-weight: bold;
  1783. color: #fff;
  1784. }
  1785. /* Content container for the server listing's information. */
  1786. .serverListingInfo {
  1787. width: 100%;
  1788. display: flex;
  1789. justify-content: flex-start;
  1790. }
  1791. /* The minecraft version of the server listing. */
  1792. .serverListingVersion {
  1793. font-size: 10px;
  1794. color: #fff;
  1795. font-family: 'Avenir Book';
  1796. text-align: center;
  1797. display: flex;
  1798. justify-content: center;
  1799. align-items: center;
  1800. line-height: 12px;
  1801. height: 12px;
  1802. border-radius: 2px;
  1803. background: rgba(31, 140, 11, 0.8);
  1804. padding: 0px 2px;
  1805. }
  1806. /* The revision version of the server's manifest. */
  1807. .serverListingRevision {
  1808. font-family: 'Avenir Book';
  1809. color: #969696;
  1810. font-size: 10px;
  1811. line-height: 12px;
  1812. padding: 0px 5px;
  1813. }
  1814. /* Star which indicates the default (main) server. */
  1815. .serverListingStarWrapper {
  1816. display: flex;
  1817. align-items: center;
  1818. cursor: pointer;
  1819. height: 12px;
  1820. position: relative;
  1821. }
  1822. /* Tooltip which displays when hovering over the star. */
  1823. .serverListingStarTooltip {
  1824. visibility: hidden;
  1825. opacity: 0;
  1826. width: 65px;
  1827. background-color: rgba(0, 0, 0, 0.40);
  1828. color: #fff;
  1829. text-align: center;
  1830. border-radius: 4px;
  1831. position: absolute;
  1832. z-index: 1;
  1833. left: 130%;
  1834. font-family: 'Avenir Book';
  1835. font-size: 10px;
  1836. transition: visibility 0s linear 0.25s, opacity 0.25s ease;
  1837. }
  1838. .serverListingStarTooltip::after {
  1839. content: " ";
  1840. position: absolute;
  1841. top: 50%;
  1842. right: 100%; /* To the left of the tooltip */
  1843. margin-top: -5px;
  1844. border-width: 5px;
  1845. border-style: solid;
  1846. border-color: transparent rgba(0, 0, 0, 0.40) transparent transparent;
  1847. }
  1848. .serverListingStarWrapper:hover .serverListingStarTooltip {
  1849. visibility: visible;
  1850. opacity: 1;
  1851. transition-delay:0s;
  1852. }
  1853. /* Content container which contains the server select actions. */
  1854. #serverSelectActions,
  1855. #accountSelectActions {
  1856. display: flex;
  1857. flex-direction: column;
  1858. justify-content: center;
  1859. align-items: center;
  1860. margin-top: 25px;
  1861. }
  1862. /* Server selection confirm button styles. */
  1863. #serverSelectConfirm,
  1864. #accountSelectConfirm {
  1865. background: none;
  1866. border: 1px solid #ffffff;
  1867. color: white;
  1868. font-family: 'Avenir Medium';
  1869. font-weight: bold;
  1870. border-radius: 2px;
  1871. padding: 0px 8.1px;
  1872. cursor: pointer;
  1873. transition: 0.25s ease;
  1874. min-height: 20.67px;
  1875. }
  1876. #serverSelectConfirm:hover,
  1877. #serverSelectConfirm:focus,
  1878. #accountSelectConfirm:hover,
  1879. #accountSelectConfirm:focus {
  1880. box-shadow: 0px 0px 10px 0px #fff;
  1881. outline: none;
  1882. }
  1883. #serverSelectConfirm:active,
  1884. #accountSelectConfirm:active {
  1885. border-color: rgba(255, 255, 255, 0.75);
  1886. color: rgba(255, 255, 255, 0.75);
  1887. }
  1888. /* Server selection cancel button styles. */
  1889. #serverSelectCancel,
  1890. #accountSelectCancel {
  1891. font-family: 'Avenir Book';
  1892. font-weight: bold;
  1893. font-size: 10px;
  1894. text-decoration: none;
  1895. padding-top: 2.5px;
  1896. color: rgba(202, 202, 202, 0.75);
  1897. transition: 0.25s ease;
  1898. background: none;
  1899. border: none;
  1900. outline: none;
  1901. cursor: pointer;
  1902. }
  1903. #serverSelectCancel:hover,
  1904. #serverSelectCancel:focus,
  1905. #accountSelectCancel:hover,
  1906. #accountSelectCancel:focus {
  1907. color: rgba(255, 255, 255, 0.75);
  1908. }
  1909. #serverSelectCancel:active,
  1910. #accountSelectCancel:active {
  1911. color: rgba(165, 165, 165, 0.75);
  1912. }
  1913. /*******************************************************************************
  1914. * *
  1915. * Loading Element (app.ejs) *
  1916. * *
  1917. ******************************************************************************/
  1918. /* Loading container, placed above everything. */
  1919. #loadingContainer {
  1920. position: absolute;
  1921. z-index: 400;
  1922. display: flex;
  1923. align-items: center;
  1924. justify-content: center;
  1925. width: 100%;
  1926. height: calc(100% - 22px);
  1927. }
  1928. /* Loading content container. */
  1929. #loadingContent {
  1930. position: relative;
  1931. display: flex;
  1932. flex-direction: column;
  1933. align-items: center;
  1934. justify-content: center;
  1935. }
  1936. /* Spinner container. */
  1937. #loadSpinnerContainer {
  1938. position: relative;
  1939. display: flex;
  1940. align-items: center;
  1941. justify-content: center;
  1942. }
  1943. /* Stationary image for the spinner. */
  1944. #loadCenterImage {
  1945. position: absolute;
  1946. width: 200px;
  1947. height: auto;
  1948. }
  1949. /* Rotating image for the spinner. */
  1950. #loadSpinnerImage {
  1951. width: 280px;
  1952. height: auto;
  1953. }
  1954. /* Rotating animation for the spinner. */
  1955. @keyframes rotating {
  1956. from {
  1957. transform: rotate(0deg);
  1958. }
  1959. to {
  1960. transform: rotate(360deg);
  1961. }
  1962. }
  1963. /* Class which is applied when the spinner image is spinning. */
  1964. .rotating {
  1965. animation: rotating 10s linear infinite;
  1966. }