launcher.css 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018
  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. /* Set default font and color. */
  34. body, button {
  35. font-family: 'Avenir Book';
  36. color: white;
  37. }
  38. /*body {
  39. background: url('./../images/backgrounds/0.jpg') no-repeat center center fixed;
  40. background-size: cover;
  41. }*/
  42. /*******************************************************************************
  43. * *
  44. * Frame Styles (frame.ejs) *
  45. * *
  46. ******************************************************************************/
  47. /* Frame Bar */
  48. #frameBar {
  49. position: relative;
  50. z-index: 100;
  51. display: flex;
  52. flex-direction: column;
  53. transition: background-color 1s ease;
  54. /*background-color: rgba(1, 2, 1, 0.5);*/
  55. -webkit-user-select: none;
  56. }
  57. /* Undraggable region on the top of the frame. */
  58. #frameResizableTop {
  59. height: 2px;
  60. width: 100%;
  61. -webkit-app-region: no-drag;
  62. }
  63. /* Flexbox to wrap the main frame content. */
  64. #frameMain {
  65. display: flex;
  66. height: 20px
  67. }
  68. /* Undraggable region on the left and right of the frame. */
  69. .frameResizableVert {
  70. width: 2px;
  71. -webkit-app-region: no-drag;
  72. }
  73. /* Main frame content for windows. */
  74. #frameContentWin {
  75. display: flex;
  76. justify-content: space-between;
  77. width: 100%;
  78. -webkit-app-region: drag;
  79. }
  80. /* Main frame content for darwin. */
  81. #frameContentDarwin {
  82. display: flex;
  83. justify-content: flex-start;
  84. align-items: center;
  85. width: 100%;
  86. -webkit-app-region: drag;
  87. }
  88. /* Frame logo (windows only). */
  89. #frameImageDock {
  90. width: 100px;
  91. display: flex;
  92. justify-content: center;
  93. align-items: center;
  94. position: relative;
  95. }
  96. #frameImage {
  97. height: 15px;
  98. filter: grayscale(100%);
  99. }
  100. /* Windows frame button dock. */
  101. #frameButtonDockWin {
  102. -webkit-app-region: no-drag !important;
  103. position: relative;
  104. top: -2px;
  105. right: -2px;
  106. height: 22px;
  107. }
  108. #frameButtonDockWin > .frameButton:not(:first-child) {
  109. margin-left: -4px;
  110. }
  111. /* Darwin frame button dock: NaN; */
  112. #frameButtonDockDarwin {
  113. -webkit-app-region: no-drag !important;
  114. position: relative;
  115. top: -1px;
  116. right: -1px;
  117. }
  118. /* Windows Frame Button Styles. */
  119. .frameButton {
  120. background: none;
  121. border: none;
  122. height: 22px;
  123. width: 39px;
  124. cursor: pointer;
  125. }
  126. .frameButton:hover,
  127. .frameButton:focus {
  128. background: rgba(189, 189, 189, 0.43);
  129. }
  130. .frameButton:active {
  131. background: rgba(156, 156, 156, 0.43);
  132. }
  133. .frameButton:focus {
  134. outline: 0px;
  135. }
  136. /* Close button is red. */
  137. #frameButton_close:hover,
  138. #frameButton_close:focus {
  139. background: rgba(255, 53, 53, 0.61) !important;
  140. }
  141. #frameButton_close:active {
  142. background: rgba(235, 0, 0, 0.61) !important;
  143. }
  144. /* Darwin Frame Button Styles. */
  145. .frameButtonDarwin {
  146. height: 12px;
  147. width: 12px;
  148. border-radius: 50%;
  149. border: 0px;
  150. margin-left: 5px;
  151. -webkit-app-region: no-drag !important;
  152. cursor: pointer;
  153. }
  154. .frameButtonDarwin:focus {
  155. outline: 0px;
  156. }
  157. #frameButtonDarwin_close {
  158. background-color: #e74c32;
  159. }
  160. #frameButtonDarwin_close:hover,
  161. #frameButtonDarwin_close:focus {
  162. background-color: #FF9A8A;
  163. }
  164. #frameButtonDarwin_close:active {
  165. background-color: #ff8d7b;
  166. }
  167. #frameButtonDarwin_minimize {
  168. background-color: #fed045;
  169. }
  170. #frameButtonDarwin_minimize:hover,
  171. #frameButtonDarwin_minimize:focus {
  172. background-color: #FFE9A9;
  173. }
  174. #frameButtonDarwin_minimize:active {
  175. background-color: #ffde7b;
  176. }
  177. #frameButtonDarwin_restoredown {
  178. background-color: #96e734;
  179. }
  180. #frameButtonDarwin_restoredown:hover,
  181. #frameButtonDarwin_restoredown:focus {
  182. background-color: #D6FFA6;
  183. }
  184. #frameButtonDarwin_restoredown:active {
  185. background-color: #bfff76;
  186. }
  187. /*******************************************************************************
  188. * *
  189. * Welcome View (welcome.ejs) *
  190. * *
  191. ******************************************************************************/
  192. #welcomeContainer {
  193. position: relative;
  194. display: flex;
  195. justify-content: center;
  196. align-items: center;
  197. height: 100%;
  198. width: 100%;
  199. }
  200. #welcomeContent {
  201. display: flex;
  202. flex-direction: column;
  203. justify-content: center;
  204. align-items: center;
  205. width: 50%;
  206. top: -10%;
  207. position: relative;
  208. }
  209. /*
  210. .cloudDiv {
  211. position: absolute;
  212. height: 100%;
  213. width: 100%;
  214. display: flex;
  215. flex-direction: column;
  216. }
  217. .cloudTop {
  218. height: 50%;
  219. width: 100%;
  220. background-image: url('../images/cloudTrans.png');
  221. animation: clouds1 80s linear infinite;
  222. background-size: cover;
  223. }
  224. .cloudBottom {
  225. height: 50%;
  226. width: 100%;
  227. background-image: url('../images/cloudTrans2.png');
  228. animation: clouds2 70s linear infinite;
  229. background-size: cover;
  230. }
  231. @keyframes clouds1 {
  232. to {
  233. background-position: 200%;
  234. }
  235. }
  236. @keyframes clouds2 {
  237. to {
  238. background-position: 230%;
  239. }
  240. }
  241. */
  242. #welcomeImageSeal {
  243. border-radius: 50%;
  244. border: 2px solid #cad7e1;
  245. background: rgba(1, 2, 1, 0.5);
  246. height: 125px;
  247. width: 125px;
  248. box-shadow: 0px 0px 10px 0px rgb(0, 0, 0);
  249. margin-bottom: 5%;
  250. margin-top: 10%;
  251. }
  252. #welcomeHeader {
  253. font-family: 'Avenir Medium';
  254. text-align: center;
  255. color: white;
  256. margin-bottom: 25px;
  257. letter-spacing: 1px;
  258. font-size: 20px;
  259. text-shadow: white 0px 0px 0px;
  260. }
  261. #welcomeDescription {
  262. text-align: justify;
  263. font-size: 13px;
  264. font-weight: 100;
  265. text-shadow: rgba(255, 255, 255, 0.75) 0px 0px 20px
  266. }
  267. #welcomeDescCTA {
  268. text-align: center;
  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. font-weight: bold;
  277. letter-spacing: 2px;
  278. border: none;
  279. padding: 15px 5px;
  280. margin: 10px 0px;
  281. cursor: pointer;
  282. position: relative;
  283. right: -20px;
  284. transition: 0.5s ease;
  285. margin-top: 5%;
  286. margin-bottom: -5%;
  287. }
  288. #welcomeButton:disabled {
  289. color: rgba(255, 255, 255, 0.75);
  290. pointer-events: none;
  291. }
  292. #welcomeButton:hover,
  293. #welcomeButton:focus {
  294. text-shadow: 0px 0px 20px #fff;
  295. outline: none;
  296. }
  297. #welcomeButton:active {
  298. color: #c7c7c7;
  299. text-shadow: 0px 0px 20px #c7c7c7;
  300. }
  301. #welcomeSVG {
  302. -webkit-transform: translate3d(0, 0, 0);
  303. overflow: visible;
  304. transform: rotate(90deg);
  305. margin-left: 20px;
  306. transition: 0.25s ease;
  307. width: 20px;
  308. height: 20px;
  309. }
  310. #welcomeButton:hover #welcomeSVG,
  311. #welcomeButton:focus #welcomeSVG {
  312. -webkit-filter: drop-shadow(0px 0px 2px #fff);
  313. }
  314. #welcomeButton:active #welcomeSVG .arrowLine {
  315. stroke: #c7c7c7;
  316. }
  317. #welcomeButton:active #welcomeSVG {
  318. -webkit-filter: drop-shadow(0px 0px 2px #c7c7c7);
  319. }
  320. #welcomeButton:disabled #welcomeSVG .arrowLine {
  321. stroke: rgba(255, 255, 255, 0.75);
  322. }
  323. #welcomeButtonContent {
  324. display: flex;
  325. align-items: center;
  326. }
  327. /*******************************************************************************
  328. * *
  329. * Login View (login.ejs) *
  330. * *
  331. ******************************************************************************/
  332. /* Styles for dimmer login span. */
  333. .loginSpanDim {
  334. font-size: 12px;
  335. color: #848484;
  336. font-weight: bold;
  337. }
  338. /* Main login container. */
  339. #loginContainer {
  340. position: relative;
  341. display: flex;
  342. justify-content: center;
  343. align-items: center;
  344. height: 100%;
  345. width: 100%;
  346. transition: filter 0.25s ease;
  347. background: rgba(0, 0, 0, 0.50);
  348. }
  349. /* Login cancel button styles. */
  350. #loginCancelContainer {
  351. position: absolute;
  352. top: 5%;
  353. right: 5%;
  354. }
  355. /* Login cancel button styles. */
  356. #loginCancelButton {
  357. background: none;
  358. border: none;
  359. outline: none;
  360. cursor: pointer;
  361. transition: 0.25s ease;
  362. }
  363. #loginCancelButton:hover #loginCancelIcon,
  364. #loginCancelButton:hover #loginCancelText,
  365. #loginCancelButton:focus #loginCancelIcon,
  366. #loginCancelButton:focus #loginCancelText {
  367. text-shadow: 0px 0px 20px white;
  368. }
  369. #loginCancelButton:hover #loginCancelIcon,
  370. #loginCancelButton:focus #loginCancelIcon {
  371. box-shadow: 0px 0px 20px white;
  372. }
  373. #loginCancelButton:active #loginCancelIcon,
  374. #loginCancelButton:active #loginCancelText {
  375. text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.75);
  376. color: rgba(255, 255, 255, 0.75);
  377. border-color: rgba(255, 255, 255, 0.75);
  378. }
  379. #loginCancelButton:active #loginCancelIcon {
  380. box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.75);
  381. }
  382. #loginCancelButton:disabled {
  383. pointer-events: none;
  384. }
  385. #loginCancelButton:disabled #loginCancelIcon,
  386. #loginCancelButton:disabled #loginCancelText {
  387. color: rgba(255, 255, 255, 0.75);
  388. border-color: rgba(255, 255, 255, 0.75);
  389. }
  390. /* The X in a circle icon for the cancel button. */
  391. #loginCancelIcon {
  392. border-radius: 50%;
  393. border: 1px solid white;
  394. box-sizing: border-box;
  395. height: 30px;
  396. width: 30px;
  397. font-size: 19px;
  398. line-height: 30px;
  399. margin: 0 auto;
  400. margin-bottom: 5px;
  401. transition: 0.25s ease;
  402. }
  403. /* Text for the login cancel button. */
  404. #loginCancelText {
  405. font-size: 15px;
  406. transition: 0.25s ease;
  407. }
  408. /* Login content wrapper. */
  409. #loginContent {
  410. display: flex;
  411. justify-content: center;
  412. align-items: center;
  413. height: 100%;
  414. padding: 0px 25px;
  415. }
  416. /* Login form. */
  417. #loginForm {
  418. display: flex;
  419. flex-direction: column;
  420. justify-content: center;
  421. align-items: center;
  422. }
  423. /* Login form anchor styles. */
  424. #loginForm a {
  425. font-size: 12px;
  426. color: #848484;
  427. font-weight: bold;
  428. text-decoration: none;
  429. transition: 0.25s ease;
  430. }
  431. #loginForm a:hover,
  432. #loginForm a:focus {
  433. color: #a2a2a2;
  434. outline: none;
  435. }
  436. #loginForm a:active {
  437. color: #8b8b8b;
  438. }
  439. /* Logo on login form. */
  440. #loginImageSeal {
  441. border-radius: 50%;
  442. border: 2px solid #cad7e1;
  443. background: rgba(1, 2, 1, 0.5);
  444. height: 125px;
  445. width: 125px;
  446. box-shadow: 0px 0px 10px 0px rgb(0, 0, 0);
  447. margin-bottom: 20px;
  448. }
  449. /* Header on login view. */
  450. #loginSubheader {
  451. font-family: 'Avenir Medium';
  452. margin-bottom: 25px;
  453. font-size: 12px;
  454. letter-spacing: 1px;
  455. font-weight: bold;
  456. }
  457. /* Container to organize login field elements. */
  458. .loginFieldContainer {
  459. position: relative;
  460. display: flex;
  461. flex-direction: column;
  462. justify-content: center;
  463. align-items: center;
  464. }
  465. /* SVG icons on the login view. */
  466. .loginSVG {
  467. fill: #fff;
  468. height: 20px;
  469. width: 20px;
  470. }
  471. /* Span which displays errors related to login field content. */
  472. .loginErrorSpan {
  473. font-family: 'Avenir Medium';
  474. font-weight: bold;
  475. font-size: 8px;
  476. color: #ff1b0c;
  477. width: 100%;
  478. text-align: right;
  479. position: absolute;
  480. top: 7px;
  481. opacity: 0;
  482. transition: 0.25s ease;
  483. }
  484. .shake {
  485. animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
  486. }
  487. @keyframes shake {
  488. 10%, 90% {
  489. transform: translate3d(-1px, 0, 0);
  490. }
  491. 20%, 80% {
  492. transform: translate3d(2px, 0, 0);
  493. }
  494. 30%, 50%, 70% {
  495. transform: translate3d(-4px, 0, 0);
  496. }
  497. 40%, 60% {
  498. transform: translate3d(4px, 0, 0);
  499. }
  500. }
  501. /* Login text input styles. */
  502. .loginField {
  503. font-family: 'Avenir Book';
  504. background: none;
  505. border-width: 1.5px 0px 0px 0px;
  506. border-style: solid;
  507. width: 250px;
  508. margin-bottom: 20px;
  509. border-color: #fff;
  510. color: rgba(255, 255, 255, 0.75);
  511. font-weight: bold;
  512. text-align: center;
  513. box-sizing: border-box;
  514. padding: 7.5px;
  515. font-size: 10px;
  516. letter-spacing: 1px;
  517. }
  518. .loginField:focus {
  519. outline: none;
  520. }
  521. .loginField:disabled {
  522. color: rgba(255, 255, 255, 0.50);
  523. }
  524. .loginField::-webkit-input-placeholder {
  525. color: rgba(255, 255, 255, 0.75);
  526. font-size: 10px;
  527. letter-spacing: 1px;
  528. text-align: center;
  529. font-weight: bold;
  530. }
  531. .loginField:focus::-webkit-input-placeholder {
  532. color: transparent;
  533. }
  534. /* Add spacing between password field and options bar. */
  535. #labelPassword {
  536. margin-bottom: 13px;
  537. }
  538. /* Container which contains the forgot and remember options. */
  539. #loginOptions {
  540. display: flex;
  541. justify-content: space-between;
  542. width: 100%;
  543. }
  544. /* Remember option text. */
  545. #loginRememberText {
  546. padding-right: 10px;
  547. transition: 0.25s ease;
  548. }
  549. /* Login button styles. */
  550. #loginButton {
  551. background: none;
  552. font-weight: bold;
  553. letter-spacing: 2px;
  554. border: none;
  555. padding: 15px 5px;
  556. margin: 10px 0px;
  557. cursor: pointer;
  558. position: relative;
  559. right: -20px;
  560. transition: 0.5s ease;
  561. }
  562. #loginButton:disabled {
  563. color: rgba(255, 255, 255, 0.75);
  564. pointer-events: none;
  565. }
  566. #loginButton[loading] {
  567. color: #fff;
  568. }
  569. #loginButton:hover,
  570. #loginButton:focus {
  571. text-shadow: 0px 0px 20px #fff;
  572. outline: none;
  573. }
  574. #loginButton:active {
  575. color: #c7c7c7;
  576. text-shadow: 0px 0px 20px #c7c7c7;
  577. }
  578. #loginSVG {
  579. -webkit-transform: translate3d(0, 0, 0);
  580. overflow: visible;
  581. transform: rotate(90deg);
  582. margin-left: 20px;
  583. transition: 0.25s ease;
  584. width: 20px;
  585. height: 20px;
  586. }
  587. #loginButton:hover #loginSVG,
  588. #loginButton:focus #loginSVG {
  589. -webkit-filter: drop-shadow(0px 0px 2px #fff);
  590. }
  591. #loginButton:active #loginSVG .arrowLine {
  592. stroke: #c7c7c7;
  593. }
  594. #loginButton:active #loginSVG {
  595. -webkit-filter: drop-shadow(0px 0px 2px #c7c7c7);
  596. }
  597. #loginButton:disabled #loginSVG .arrowLine {
  598. stroke: rgba(255, 255, 255, 0.75);
  599. }
  600. #loginButtonContent {
  601. display: flex;
  602. align-items: center;
  603. }
  604. #loginButton .circle-loader,
  605. #loginButton[loading] #loginSVG {
  606. display: none;
  607. }
  608. #loginButton[loading] .circle-loader,
  609. #loginButton #loginSVG {
  610. display: initial;
  611. }
  612. .circle-loader {
  613. margin-left: 20px;
  614. border: 2px solid rgba(255, 255, 255, 0.5);
  615. border-left-color: #ffffff;
  616. animation-name: loader-spin;
  617. animation-duration: 1s;
  618. animation-iteration-count: infinite;
  619. animation-timing-function: linear;
  620. position: relative;
  621. display: inline-block;
  622. vertical-align: top;
  623. border-radius: 50%;
  624. width: 16px;
  625. height: 16px;
  626. }
  627. .load-complete {
  628. animation: none;
  629. border-color: #ffffff;
  630. transition: border 500ms ease-out;
  631. }
  632. .checkmark {
  633. display: none;
  634. }
  635. .checkmark.draw:after {
  636. animation-duration: 800ms;
  637. animation-timing-function: ease;
  638. animation-name: checkmark;
  639. transform: scaleX(-1) rotate(135deg);
  640. }
  641. .checkmark:after {
  642. opacity: 1;
  643. height: 8px;
  644. width: 4px;
  645. transform-origin: left top;
  646. border-right: 2px solid #ffffff;
  647. border-top: 2px solid #ffffff;
  648. content: '';
  649. left: 2px;
  650. top: 8px;
  651. position: absolute;
  652. }
  653. @keyframes loader-spin {
  654. 0% {
  655. transform: rotate(0deg);
  656. }
  657. 100% {
  658. transform: rotate(360deg);
  659. }
  660. }
  661. @keyframes checkmark {
  662. 0% {
  663. height: 0;
  664. width: 0;
  665. opacity: 1;
  666. }
  667. 20% {
  668. height: 0;
  669. width: 4px;
  670. opacity: 1;
  671. }
  672. 40% {
  673. height: 8px;
  674. width: 4px;
  675. opacity: 1;
  676. }
  677. 100% {
  678. height: 8px;
  679. width: 4px;
  680. opacity: 1;
  681. }
  682. }
  683. /*.spinningCircle {
  684. margin-left: 20px;
  685. height: 16px;
  686. width: 16px;
  687. border-radius: 50%;
  688. border: 2px solid rgba(255,255,255,0);
  689. border-top-color: #ffffff;
  690. border-right-color: #ffffff;
  691. border-left-color: rgba(255, 255, 255, 0.50);
  692. border-bottom-color: rgba(255, 255, 255, 0.50);
  693. animation: single2 4s infinite linear;
  694. }
  695. @keyframes single2 {
  696. 0% {
  697. transform: rotate(0deg);
  698. }
  699. 100% {
  700. transform: rotate(720deg);
  701. }
  702. }*/
  703. /* Disclaimer container. */
  704. #loginDisclaimer {
  705. display: flex;
  706. flex-direction: column;
  707. justify-content: center;
  708. align-items: center;
  709. }
  710. /* Add spacing between register anchor and disclaimer. */
  711. #loginRegisterSpan {
  712. margin-bottom: 5px;
  713. }
  714. /* Disclaimer text styles. */
  715. .loginDisclaimerText {
  716. font-size: 7px;
  717. color: #848484;
  718. font-weight: bold;
  719. text-align: center;
  720. }
  721. /* * *
  722. * Login View | Custom Checkbox
  723. * * */
  724. /* Checkbox container. */
  725. #checkmarkContainer {
  726. display: flex;
  727. justify-content: flex-end;
  728. align-items: center;
  729. position: relative;
  730. cursor: pointer;
  731. font-size: 22px;
  732. -webkit-user-select: none;
  733. }
  734. /* Hide the default checkbox. */
  735. #checkmarkContainer input {
  736. opacity: 0;
  737. cursor: pointer;
  738. position: absolute;
  739. }
  740. /* Create a custom checkbox. */
  741. .loginCheckmark {
  742. position: relative;
  743. height: 10px;
  744. width: 10px;
  745. border: 1px solid #848484;
  746. border-radius: 1px;
  747. background: none;
  748. transition: 0.25s ease;
  749. }
  750. /* On hover and focus, add a grey border color. */
  751. #checkmarkContainer:hover input ~ *,
  752. #checkmarkContainer input:focus ~ * {
  753. color: #a2a2a2;
  754. border-color: #a2a2a2;
  755. }
  756. /* On keydown, darken the checkbox a bit. */
  757. #checkmarkContainer input:active ~ *:not(#loginRememberText) {
  758. color: #8d8d8d;
  759. border-color: #8d8d8d;
  760. }
  761. #checkmarkContainer[disabled] {
  762. pointer-events: none;
  763. }
  764. /* For checked -> #checkmarkContainer input:checked ~ * */
  765. /* Create the checkmark/indicator (hidden when not checked). */
  766. .loginCheckmark:after {
  767. content: "";
  768. display: none;
  769. }
  770. /* Show the checkmark when checked. */
  771. #checkmarkContainer input:checked ~ .loginCheckmark:after {
  772. display: block;
  773. }
  774. /* Style the checkmark/indicator. */
  775. #checkmarkContainer .loginCheckmark:after {
  776. position: absolute;
  777. left: 3.5px;
  778. top: 0.5px;
  779. width: 2px;
  780. height: 6px;
  781. border: solid #a2a2a2;
  782. border-width: 0 2px 2px 0;
  783. transform: rotate(45deg);
  784. }
  785. /*
  786. #login_filter {
  787. height: calc(100% - 22px);
  788. width: 100%;
  789. z-index: 9000;
  790. position: absolute;
  791. filter: blur(8px) contrast(0.9) brightness(1.0);
  792. background: url('./../images/backgrounds/0.jpg') no-repeat center center fixed;
  793. transform: scale(1.2);
  794. background-size: cover;
  795. }
  796. */
  797. /*******************************************************************************
  798. * *
  799. * Settings View (sttings.ejs) *
  800. * *
  801. ******************************************************************************/
  802. /* Main settings container. */
  803. #settingsContainer {
  804. position: relative;
  805. height: 100%;
  806. display: flex;
  807. background: rgba(0, 0, 0, 0.50);
  808. }
  809. /* Left hand side of the settings UI, for navigation. */
  810. #settingsContainerLeft {
  811. height: 100%;
  812. width: 25%;
  813. padding: 5% 0px;
  814. box-sizing: border-box;
  815. }
  816. /* Settings navigation container. */
  817. #settingsNavContainer {
  818. display: flex;
  819. flex-direction: column;
  820. }
  821. /* Navigation header styles. */
  822. #settingsNavHeader {
  823. display: flex;
  824. justify-content: center;
  825. }
  826. #settingsNavHeaderText {
  827. font-size: 20px;
  828. }
  829. /* Navigation items outer container. */
  830. #settingsNavItemsContainer {
  831. height: 100%;
  832. display: flex;
  833. justify-content: center;
  834. padding-top: 25%;
  835. box-sizing: border-box;
  836. }
  837. /* Navigation items content container. */
  838. #settingsNavItemsContent {
  839. display: flex;
  840. flex-direction: column;
  841. position: relative;
  842. }
  843. /* Navigation item shared styles. */
  844. .settingsNavItem {
  845. background: none;
  846. border: none;
  847. text-align: left;
  848. margin: 5px 0px;
  849. padding: 0px 20px;
  850. color: grey;
  851. cursor: pointer;
  852. outline: none;
  853. transition: 0.25s ease;
  854. }
  855. .settingsNavItem:hover,
  856. .settingsNavItem:focus {
  857. color: #c1c1c1;
  858. text-shadow: 0px 0px 20px #c1c1c1;
  859. }
  860. .settingsNavItem[selected] {
  861. cursor: default;
  862. color: white;
  863. text-shadow: none;
  864. }
  865. /* Div to add some space between nav items. */
  866. .settingsNavSpacer {
  867. height: 25px;
  868. }
  869. /* Content container for the done button. */
  870. #settingsNavContentBottom {
  871. position: absolute;
  872. bottom: 20%;
  873. }
  874. /* Settings navigational divider. */
  875. .settingsNavDivider {
  876. width: 75%;
  877. height: 0.5px;
  878. background: rgba(255, 255, 255, 0.75);
  879. margin-left: auto;
  880. margin-bottom: 25px;
  881. }
  882. /* Settings done button styles. */
  883. #settingsNavDone {
  884. background: none;
  885. border: none;
  886. text-align: left;
  887. margin: 5px 0px;
  888. padding: 0px 20px;
  889. color: white;
  890. cursor: pointer;
  891. outline: none;
  892. transition: 0.25s ease;
  893. }
  894. #settingsNavDone:hover,
  895. #settingsNavDone:focus {
  896. text-shadow: 0px 0px 20px white, 0px 0px 20px white, 0px 0px 20px white;
  897. }
  898. #settingsNavDone:active {
  899. text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.75), 0px 0px 20px rgba(255, 255, 255, 0.75), 0px 0px 20px rgba(255, 255, 255, 0.75);
  900. color: rgba(255, 255, 255, 0.75);
  901. }
  902. #settingsNavDone:disabled {
  903. color: rgba(255, 255, 255, 0.75);
  904. pointer-events: none;
  905. }
  906. /* Right hand side of the settings container, for tabs. */
  907. #settingsContainerRight {
  908. height: 100%;
  909. width: 75%;
  910. padding-top: 5%;
  911. box-sizing: border-box;
  912. }
  913. /* Settings tab shared styles. */
  914. .settingsTab {
  915. width: 100%;
  916. height: 100%;
  917. overflow-y: auto;
  918. }
  919. .settingsTab::-webkit-scrollbar {
  920. width: 2px;
  921. }
  922. .settingsTab::-webkit-scrollbar-track {
  923. display: none;
  924. }
  925. .settingsTab::-webkit-scrollbar-thumb {
  926. border-radius: 10px;
  927. box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.50);
  928. }
  929. /* Tab header shared styles. */
  930. .settingsTabHeader {
  931. display: flex;
  932. flex-direction: column;
  933. margin-bottom: 20px;
  934. }
  935. .settingsTabHeaderText {
  936. font-size: 20px;
  937. font-family: 'Avenir Medium';
  938. }
  939. .settingsTabHeaderDesc {
  940. font-size: 12px;
  941. }
  942. /* Remove spin button from number inputs. */
  943. #settingsContainer input[type=number]::-webkit-inner-spin-button {
  944. -webkit-appearance: none;
  945. }
  946. /* Default styles for text/number inputs. */
  947. #settingsContainer input[type=number],
  948. #settingsContainer input[type=text] {
  949. color: white;
  950. background: rgba(0, 0, 0, 0.25);
  951. border-radius: 3px;
  952. border: 1px solid rgba(126, 126, 126, 0.57);
  953. font-family: 'Avenir Book';
  954. transition: 0.25s ease;
  955. }
  956. #settingsContainer input[type=number]:focus,
  957. #settingsContainer input[type=text]:focus {
  958. outline: none;
  959. border-color: rgba(126, 126, 126, 0.87);
  960. }
  961. #settingsContainer input[type=number][error] {
  962. border-color: rgb(255, 27, 12);
  963. background: rgba(236, 0, 0, 0.25);
  964. color: rgb(255, 27, 12);
  965. }
  966. /* Styles for a generic settings entry. */
  967. .settingsFieldContainer {
  968. display: flex;
  969. align-items: center;
  970. justify-content: space-between;
  971. margin: 20px 0px;
  972. width: 75%;
  973. }
  974. .settingsFieldLeft {
  975. display: flex;
  976. flex-direction: column;
  977. }
  978. .settingsFieldTitle {
  979. font-size: 14px;
  980. font-family: 'Avenir Medium';
  981. color: rgba(255, 255, 255, 0.95);
  982. }
  983. .settingsFieldDesc {
  984. font-size: 12px;
  985. color: rgba(255, 255, 255, .95);
  986. }
  987. .settingsDivider {
  988. height: 1px;
  989. width: 75%;
  990. background: rgba(255, 255, 255, 0.25);
  991. }
  992. /* Toggle Switch */
  993. .toggleSwitch {
  994. position: relative;
  995. display: inline-block;
  996. width: 50px;
  997. height: 25px;
  998. border-radius: 50px;
  999. box-sizing: border-box;
  1000. }
  1001. .toggleSwitch input {
  1002. display:none;
  1003. }
  1004. .toggleSwitchSlider {
  1005. position: absolute;
  1006. cursor: pointer;
  1007. top: 0;
  1008. left: 0;
  1009. right: 0;
  1010. bottom: 0;
  1011. background-color: rgba(255, 255, 255, 0.35);
  1012. transition: .4s;
  1013. border-radius: 50px;
  1014. border: 1px solid rgba(126, 126, 126, 0.57);
  1015. }
  1016. .toggleSwitchSlider:before {
  1017. position: absolute;
  1018. content: "";
  1019. height: 17px;
  1020. width: 21px;
  1021. left: 3px;
  1022. bottom: 3px;
  1023. background-color: white;
  1024. box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.75);
  1025. border-radius: 50px;
  1026. transition: .4s;
  1027. }
  1028. input:checked + .toggleSwitchSlider {
  1029. background-color: rgb(31, 140, 11);
  1030. }
  1031. input:checked + .toggleSwitchSlider:before {
  1032. transform: translateX(21px);
  1033. }
  1034. /* Range Slider styles. */
  1035. .rangeSlider {
  1036. width: 35%;
  1037. height: 5px;
  1038. margin: 15px 0px;
  1039. background: grey;
  1040. border-radius: 3px;
  1041. position: relative;
  1042. }
  1043. .rangeSliderBar {
  1044. position: absolute;
  1045. background: #8be88b;
  1046. width: 50%;
  1047. height: 5px;
  1048. border-radius: 3px 0px 0px 3px;
  1049. transition: background 0.25s ease;
  1050. }
  1051. .rangeSliderTrack {
  1052. position: absolute;
  1053. top: -7.5px;
  1054. width: 7px;
  1055. height: 20px;
  1056. background: white;
  1057. border-radius: 3px;
  1058. left: 50%;
  1059. cursor: ew-resize;
  1060. }
  1061. /* * *
  1062. * Settings View (Account Tab)
  1063. * * */
  1064. /* Add account button styles. */
  1065. #settingsAddAccount {
  1066. background: rgba(0, 0, 0, 0.25);
  1067. border: 1px solid rgba(126, 126, 126, 0.57);
  1068. border-radius: 3px;
  1069. height: 50px;
  1070. width: 75%;
  1071. text-align: left;
  1072. padding: 0px 50px;
  1073. cursor: pointer;
  1074. outline: none;
  1075. transition: 0.25s ease;
  1076. }
  1077. #settingsAddAccount:hover,
  1078. #settingsAddAccount:focus {
  1079. background: rgba(54, 54, 54, 0.25);
  1080. text-shadow: 0px 0px 20px white;
  1081. }
  1082. /* Settings auth accounts header. */
  1083. #settingsCurrentAccountsHeader {
  1084. margin: 20px 0px;
  1085. }
  1086. /* Auth account list container styles. */
  1087. #settingsCurrentAccounts {
  1088. margin-bottom: 5%;
  1089. }
  1090. #settingsCurrentAccounts > .settingsAuthAccount:not(:last-child) {
  1091. margin-bottom: 10px;
  1092. }
  1093. #settingsCurrentAccounts > .settingsAuthAccount:not(:first-child) {
  1094. margin-top: 10px;
  1095. }
  1096. /* Auth account shared styles. */
  1097. .settingsAuthAccount {
  1098. display: flex;
  1099. width: 75%;
  1100. background: rgba(0, 0, 0, 0.25);
  1101. border-radius: 3px;
  1102. border: 1px solid rgba(126, 126, 126, 0.57);
  1103. }
  1104. /* Left hand side of an auth account element, for the skin image. */
  1105. .settingsAuthAccountLeft {
  1106. padding: 5px 5px 5px 20px;
  1107. }
  1108. /* Image of the auth account's skin. */
  1109. .settingsAuthAccountImage {
  1110. height: 115px;
  1111. }
  1112. /* Right hand side of the auth account, for info + actions. */
  1113. .settingsAuthAccountRight {
  1114. display: flex;
  1115. width: 100%;
  1116. }
  1117. /* Account details container. */
  1118. .settingsAuthAccountDetails {
  1119. display: flex;
  1120. flex-direction: column;
  1121. justify-content: center;
  1122. margin-left: 20px;
  1123. width: 100%;
  1124. }
  1125. .settingsAuthAccountDetails > *:not(:last-child) {
  1126. margin-bottom: 20px;
  1127. }
  1128. /* Account detail element styles. */
  1129. .settingsAuthAccountDetailPane {
  1130. display: flex;
  1131. flex-direction: column;
  1132. }
  1133. .settingsAuthAccountDetailTitle {
  1134. font-size: 12px;
  1135. color: grey;
  1136. font-weight: bold;
  1137. font-family: 'Avenir Medium';
  1138. }
  1139. .settingsAuthAccountDetailValue {
  1140. font-size: 14px;
  1141. -webkit-user-select: initial;
  1142. }
  1143. /* Account actions container. */
  1144. .settingsAuthAccountActions {
  1145. display: flex;
  1146. flex-direction: column;
  1147. justify-content: space-between;
  1148. align-items: flex-end;
  1149. padding: 10px;
  1150. }
  1151. /* Account select button shared styles. */
  1152. .settingsAuthAccountSelect {
  1153. opacity: 0;
  1154. border: none;
  1155. white-space: nowrap;
  1156. background: none;
  1157. font-family: 'Avenir Medium';
  1158. outline: none;
  1159. transition: 0.25s ease;
  1160. }
  1161. .settingsAuthAccountSelect:hover:not([selected]),
  1162. .settingsAuthAccountSelect:focus:not([selected]) {
  1163. text-shadow: 0px 0px 20px white, 0px 0px 20px white;
  1164. cursor: pointer;
  1165. }
  1166. .settingsAuthAccount:hover .settingsAuthAccountSelect:not([selected]),
  1167. .settingsAuthAccountSelect[selected] {
  1168. opacity: 1;
  1169. }
  1170. .settingsAuthAccountSelect[selected] {
  1171. pointer-events: none;
  1172. }
  1173. /* Account logout button shared styles. */
  1174. .settingsAuthAccountLogOut {
  1175. opacity: 0;
  1176. border: 1px solid rgb(241, 55, 55);
  1177. color: rgb(241, 55, 55);
  1178. background: none;
  1179. font-size: 12px;
  1180. border-radius: 3px;
  1181. font-family: 'Avenir Medium';
  1182. transition: 0.25s ease;
  1183. cursor: pointer;
  1184. outline: none;
  1185. }
  1186. .settingsAuthAccountLogOut:hover,
  1187. .settingsAuthAccountLogOut:focus {
  1188. box-shadow: 0px 0px 20px rgb(241, 55, 55);
  1189. background: rgba(241, 55, 55, 0.25);
  1190. }
  1191. .settingsAuthAccountLogOut:active {
  1192. box-shadow: 0px 0px 20px rgb(185, 47, 47);
  1193. background: rgba(185, 47, 47, 0.25);
  1194. border: 1px solid rgb(185, 47, 47);
  1195. color: rgb(185, 47, 47);
  1196. }
  1197. .settingsAuthAccount:hover .settingsAuthAccountLogOut {
  1198. opacity: 1;
  1199. }
  1200. /* * *
  1201. * Settings View (Minecraft Tab)
  1202. * * */
  1203. /* Game resolution UI elements. */
  1204. #settingsGameResolutionContainer {
  1205. display: flex;
  1206. flex-direction: column;
  1207. margin-bottom: 20px;
  1208. }
  1209. #settingsGameResolutionContent {
  1210. display: flex;
  1211. align-items: center;
  1212. padding-top: 10px;
  1213. }
  1214. #settingsGameResolutionCross {
  1215. color: grey;
  1216. padding: 0px 15px;
  1217. }
  1218. #settingsGameWidth,
  1219. #settingsGameHeight {
  1220. padding: 7.5px 5px;
  1221. width: 75px;
  1222. }
  1223. /* * *
  1224. * Settings View (Java Tab)
  1225. * * */
  1226. /* Style links on the Java tab. */
  1227. #settingsTabJava a {
  1228. color: rgba(202, 202, 202, 0.75);
  1229. transition: 0.25s ease;
  1230. outline: none;
  1231. }
  1232. #settingsTabJava a:hover,
  1233. #settingsTabJava a:focus {
  1234. color: rgba(255, 255, 255, 0.75);
  1235. }
  1236. #settingsTabJava a:active {
  1237. color: rgba(165, 165, 165, 0.75);
  1238. }
  1239. /* Main container for memory management. */
  1240. #settingsMemoryContainer {
  1241. width: 75%;
  1242. display: flex;
  1243. flex-direction: column;
  1244. border-bottom: 1px solid rgba(255, 255, 255, 0.50);
  1245. margin-bottom: 20px;
  1246. }
  1247. /* Memory management title. */
  1248. #settingsMemoryTitle {
  1249. margin-bottom: 10px;
  1250. padding-bottom: 5px;
  1251. border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  1252. }
  1253. /* Memory management content. */
  1254. #settingsMemoryContent {
  1255. display: flex;
  1256. justify-content: space-between;
  1257. width: 100%;
  1258. }
  1259. #settingsMemoryContentLeft {
  1260. width: 69%;
  1261. }
  1262. #settingsMemoryContentRight {
  1263. display: flex;
  1264. align-items: center;
  1265. margin-right: 10%;
  1266. }
  1267. /* Header for memory sliders. */
  1268. .settingsMemoryHeader {
  1269. font-size: 14px;
  1270. }
  1271. /* Wrapper container for a memory slider and label. */
  1272. .settingsMemoryActionContainer {
  1273. display: flex;
  1274. align-items: center;
  1275. justify-content: space-between;
  1276. }
  1277. /* Label which displays a memory slider's value. */
  1278. .settingsMemoryLabel {
  1279. font-size: 14px;
  1280. margin-right: 3%;
  1281. }
  1282. /* Range sliders for min and max memory settings. */
  1283. #settingsMaxRAMRange,
  1284. #settingsMinRAMRange {
  1285. width: 85%;
  1286. }
  1287. /* Memory status elements. */
  1288. #settingsMemoryStatus {
  1289. display: flex;
  1290. flex-direction: column;
  1291. }
  1292. #settingsMemoryStatus > .settingsMemoryStatusContainer:not(:last-child){
  1293. margin-bottom: 50%;
  1294. }
  1295. .settingsMemoryStatusContainer {
  1296. display: flex;
  1297. flex-direction: column;
  1298. align-items: center;
  1299. }
  1300. .settingsMemoryStatusTitle {
  1301. font-size: 12px;
  1302. color: grey;
  1303. font-weight: bold;
  1304. }
  1305. .settingsMemoryStatusValue {
  1306. color: lightgrey;
  1307. font-size: 16px;
  1308. }
  1309. /* Description for memory management. */
  1310. #settingsMemoryDesc {
  1311. font-size: 10px;
  1312. margin: 20px 0px;
  1313. color: lightgrey;
  1314. font-weight: bold;
  1315. }
  1316. /* Main container for the Java executable setting. */
  1317. #settingsJavaExecContainer {
  1318. display: flex;
  1319. flex-direction: column;
  1320. border-bottom: 1px solid rgba(255, 255, 255, 0.50);
  1321. margin-bottom: 20px;
  1322. width: 75%;
  1323. }
  1324. /* Java executable setting title. */
  1325. #settingsJavaExecTitle {
  1326. margin-bottom: 10px;
  1327. }
  1328. /* Status text which displays details on the selected executable. */
  1329. #settingsJavaExecDetails {
  1330. font-weight: bold;
  1331. color: grey;
  1332. font-size: 12px;
  1333. }
  1334. /* Wrapper container for the actionable elements. */
  1335. #settingsJavaExecActions {
  1336. display: flex;
  1337. width: 90%;
  1338. }
  1339. /* Java icon settings. */
  1340. .settingsJavaIcon {
  1341. display: flex;
  1342. align-items: center;
  1343. background: rgba(126, 126, 126, 0.57);
  1344. border-radius: 3px 0px 0px 3px;
  1345. padding: 5px;
  1346. transition: 0.25s ease;
  1347. }
  1348. .settingsJavaIconSVG {
  1349. width: 20px;
  1350. height: 20px;
  1351. fill: white;
  1352. }
  1353. /* Disabled text field which stores the selected executable path. */
  1354. #settingsJavaExecVal {
  1355. border-radius: 0px !important;
  1356. width: 100%;
  1357. padding: 5px 10px;
  1358. font-size: 12px;
  1359. }
  1360. /* File input for executable selection. */
  1361. #settingsJavaExecSel {
  1362. width: 0px;
  1363. height: 0px;
  1364. opacity: 0;
  1365. }
  1366. #settingsJavaExecSel::-webkit-file-upload-button {
  1367. display: none;
  1368. }
  1369. /* Wrapper label to add a custom style to the file input. */
  1370. #settingsJavaExecLabel {
  1371. border-left: 0px;
  1372. border-radius: 0px 3px 3px 0px;
  1373. font-size: 12px;
  1374. padding: 0px 5px;
  1375. cursor: pointer;
  1376. display: flex;
  1377. align-items: center;
  1378. background: rgba(126, 126, 126, 0.57);
  1379. transition: 0.25s ease;
  1380. white-space: nowrap;
  1381. }
  1382. #settingsJavaExecLabel:hover,
  1383. #settingsJavaExecLabel:focus,
  1384. #settingsJavaExecSel:focus ~ #settingsJavaExecLabel {
  1385. text-shadow: 0px 0px 20px white;
  1386. }
  1387. /* Description for the Java executable setting. */
  1388. #settingsJavaExecDesc {
  1389. font-size: 10px;
  1390. margin: 20px 0px;
  1391. color: lightgrey;
  1392. font-weight: bold;
  1393. width: 89%;
  1394. }
  1395. #settingsJavaExecDesc strong {
  1396. font-family: 'Avenir Medium';
  1397. }
  1398. /* Main container for the JVM options setting. */
  1399. #settingsJVMOptsContainer {
  1400. width: 75%;
  1401. }
  1402. /* JVM options title. */
  1403. #settingsJVMOptsTitle {
  1404. margin-bottom: 10px;
  1405. }
  1406. /* Wrapper container for the actionable elements. */
  1407. #settingsJVMOptsContent {
  1408. display: flex;
  1409. width: 90%;
  1410. }
  1411. /* Text field to input the JVM options. */
  1412. #settingsJVMOptsVal {
  1413. border-radius: 0px 3px 3px 0px !important;
  1414. width: 100%;
  1415. padding: 5px 10px;
  1416. font-size: 12px;
  1417. }
  1418. #settingsJVMOptsContent:focus-within > .settingsJavaIcon {
  1419. background: rgba(126, 126, 126, 0.87);
  1420. }
  1421. /* Description for the JVM options setting. */
  1422. #settingsJVMOptsDesc {
  1423. font-size: 10px;
  1424. margin: 20px 0px;
  1425. color: lightgrey;
  1426. font-weight: bold;
  1427. width: 89%;
  1428. }
  1429. /*******************************************************************************
  1430. * *
  1431. * Landing View (Structural Styles) *
  1432. * *
  1433. ******************************************************************************/
  1434. /* Main content container. */
  1435. #landingContainer {
  1436. height: 100%;
  1437. position: relative;
  1438. transition: background 2s ease;
  1439. overflow-y: hidden;
  1440. }
  1441. /* Upper content container. */
  1442. #landingContainer > #upper {
  1443. position: relative;
  1444. transition: top 2s ease;
  1445. top: 0px;
  1446. height: 77%;
  1447. display: flex;
  1448. }
  1449. #landingContainer > #upper > #left {
  1450. display: inline-flex;
  1451. width: 15%;
  1452. height: 100%;
  1453. justify-content: flex-end;
  1454. }
  1455. #landingContainer > #upper > #content {
  1456. display: inline-flex;
  1457. width: 70%;
  1458. height: 100%;
  1459. }
  1460. #landingContainer > #upper > #right {
  1461. display: inline-flex;
  1462. width: 15%;
  1463. height: 100%;
  1464. }
  1465. /* Lower content container. */
  1466. #landingContainer > #lower {
  1467. height: 23%;
  1468. display: flex;
  1469. background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  1470. }
  1471. #landingContainer > #lower > #left {
  1472. position: relative;
  1473. transition: top 2s ease;
  1474. top: 0px;
  1475. height: 100%;
  1476. width: 33%;
  1477. display: inline-flex;
  1478. justify-content: center;
  1479. }
  1480. #landingContainer > #lower > #left #content {
  1481. position: relative;
  1482. top: 25px;
  1483. display: inline-flex;
  1484. line-height: 24px;
  1485. left: 50px;
  1486. }
  1487. #landingContainer > #lower > #center {
  1488. position: relative;
  1489. transition: top 2s ease;
  1490. top: 0px;
  1491. height: 100%;
  1492. width: 34%;
  1493. display: inline-flex;
  1494. justify-content: center;
  1495. }
  1496. #landingContainer > #lower > #center #content {
  1497. position: relative;
  1498. z-index: 500;
  1499. transition: top 2s ease;
  1500. top: 10px;
  1501. }
  1502. #landingContainer > #lower > #right {
  1503. position: relative;
  1504. transition: top 2s ease;
  1505. top: 0px;
  1506. height: 100%;
  1507. width: 33%;
  1508. display: inline-flex;
  1509. }
  1510. /*******************************************************************************
  1511. * *
  1512. * Landing View (News Styles) *
  1513. * *
  1514. ******************************************************************************/
  1515. /* Main container. */
  1516. #newsContainer {
  1517. position: absolute;
  1518. top: 100%;
  1519. height: 100%;
  1520. width: 100%;
  1521. transition: top 2s ease;
  1522. display: flex;
  1523. align-items: flex-end;
  1524. justify-content: center;
  1525. }
  1526. /* News content container. */
  1527. #newsContent {
  1528. height: 82vh;
  1529. width: 82vw;
  1530. display: flex;
  1531. -webkit-user-select: initial;
  1532. }
  1533. /* News article status container (left). */
  1534. #newsStatusContainer {
  1535. width: 25%;
  1536. height: calc(100% - 30px);
  1537. padding: 15px;
  1538. display: flex;
  1539. flex-direction: column;
  1540. justify-content: space-between;
  1541. }
  1542. /* News status content. */
  1543. #newsStatusContent {
  1544. display: flex;
  1545. flex-direction: column;
  1546. }
  1547. /* News article title styles. */
  1548. #newsArticleTitle {
  1549. font-size: 20px;
  1550. font-weight: bold;
  1551. font-family: 'Avenir Medium';
  1552. color: white;
  1553. text-decoration: none;
  1554. transition: 0.25s ease;
  1555. outline: none;
  1556. }
  1557. #newsArticleTitle:hover,
  1558. #newsArticleTitle:focus {
  1559. text-shadow: 0px 0px 20px white;
  1560. }
  1561. #newsArticleTitle:active {
  1562. color: #c7c7c7;
  1563. text-shadow: 0px 0px 20px #c7c7c7;
  1564. }
  1565. /* News meta container. */
  1566. #newsMetaContainer {
  1567. display: flex;
  1568. flex-direction: column;
  1569. }
  1570. /* Date and author shared styles. */
  1571. #newsArticleDate,
  1572. #newsArticleAuthor {
  1573. display: inline-block;
  1574. font-size: 10px;
  1575. padding: 0px 5px;
  1576. font-weight: bold;
  1577. border-radius: 2px;
  1578. }
  1579. /* Date styles. */
  1580. #newsArticleDate {
  1581. background: white;
  1582. color: black;
  1583. margin-top: 5px;
  1584. }
  1585. /* Author styles. */
  1586. #newsArticleAuthor {
  1587. background: #a02d2a;
  1588. }
  1589. /* News article comments styles. */
  1590. #newsArticleComments {
  1591. margin-top: 5px;
  1592. display: inline-block;
  1593. font-size: 10px;
  1594. color: #ffffff;
  1595. text-decoration: none;
  1596. transition: 0.25s ease;
  1597. outline: none;
  1598. }
  1599. #newsArticleComments:focus,
  1600. #newsArticleComments:hover {
  1601. color: #e0e0e0;
  1602. }
  1603. #newsArticleComments:active {
  1604. color: #c7c7c7;
  1605. }
  1606. /* Article content container (right). */
  1607. #newsArticleContainer {
  1608. width: 75%;
  1609. height: 100%;
  1610. }
  1611. /* Article content styles. */
  1612. #newsArticleContentScrollable {
  1613. font-size: 12px;
  1614. max-width: 80%;
  1615. margin: 25px 35px 0px 25px;
  1616. overflow-y: scroll;
  1617. height: calc(100% - 25px);
  1618. padding: 0px 15px 0px 15px;
  1619. }
  1620. #newsArticleContentScrollable img {
  1621. max-width: 95%;
  1622. display: block;
  1623. margin: 0 auto;
  1624. }
  1625. #newsArticleContentScrollable a {
  1626. color: rgba(202, 202, 202, 0.75);
  1627. transition: 0.25s ease;
  1628. outline: none;
  1629. }
  1630. #newsArticleContentScrollable a:hover,
  1631. #newsArticleContentScrollable a:focus {
  1632. color: rgba(255, 255, 255, 0.75);
  1633. }
  1634. #newsArticleContentScrollable a:active {
  1635. color: rgba(165, 165, 165, 0.75);
  1636. }
  1637. #newsArticleContentScrollable::-webkit-scrollbar {
  1638. width: 2px;
  1639. }
  1640. #newsArticleContentScrollable::-webkit-scrollbar-track {
  1641. display: none;
  1642. }
  1643. #newsArticleContentScrollable::-webkit-scrollbar-thumb {
  1644. border-radius: 10px;
  1645. box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.50);
  1646. }
  1647. /* Div to add spacing at the end of a news article. */
  1648. .newsArticleSpacer {
  1649. height: 30px;
  1650. }
  1651. /* News navigation container. */
  1652. #newsNavigationContainer {
  1653. display: flex;
  1654. justify-content: center;
  1655. align-items: center;
  1656. margin-bottom: 10px;
  1657. -webkit-user-select: none;
  1658. }
  1659. /* Navigation status span. */
  1660. #newsNavigationStatus {
  1661. font-size: 12px;
  1662. margin: 0px 15px;
  1663. }
  1664. /* Left and right navigation button styles. */
  1665. #newsNavigateLeft,
  1666. #newsNavigateRight {
  1667. background: none;
  1668. border: none;
  1669. outline: none;
  1670. height: 20px;
  1671. cursor: pointer;
  1672. }
  1673. #newsNavigateLeft:hover #newsNavigationLeftSVG,
  1674. #newsNavigateLeft:focus #newsNavigationLeftSVG,
  1675. #newsNavigateRight:hover #newsNavigationRightSVG,
  1676. #newsNavigateRight:focus #newsNavigationRightSVG {
  1677. -webkit-filter: drop-shadow(0px 0px 2px #fff);
  1678. }
  1679. #newsNavigateLeft:active #newsNavigationLeftSVG .arrowLine,
  1680. #newsNavigateRight:active #newsNavigationRightSVG .arrowLine {
  1681. stroke: #c7c7c7;
  1682. }
  1683. #newsNavigateLeft:active #newsNavigationLeftSVG,
  1684. #newsNavigateRight:active #newsNavigationRightSVG {
  1685. -webkit-filter: drop-shadow(0px 0px 2px #c7c7c7);
  1686. }
  1687. #newsNavigateLeft:disabled #newsNavigationLeftSVG .arrowLine,
  1688. #newsNavigateRight:disabled #newsNavigationRightSVG .arrowLine {
  1689. stroke: rgba(255, 255, 255, 0.75);
  1690. }
  1691. #newsNavigationLeftSVG {
  1692. transform: rotate(-90deg);
  1693. width: 15px;
  1694. }
  1695. #newsNavigationRightSVG {
  1696. transform: rotate(90deg);
  1697. width: 15px;
  1698. }
  1699. /* News error (message) container. */
  1700. #newsErrorContainer {
  1701. height: 100%;
  1702. display: flex;
  1703. align-items: center;
  1704. flex-direction: column;
  1705. justify-content: center;
  1706. }
  1707. #newsErrorFailed {
  1708. display: flex;
  1709. align-items: center;
  1710. flex-direction: column;
  1711. justify-content: center;
  1712. }
  1713. /* News error content (message). */
  1714. .newsErrorContent {
  1715. font-size: 20px;
  1716. }
  1717. #newsErrorLoading {
  1718. display: flex;
  1719. width: 168.92px;
  1720. }
  1721. #nELoadSpan {
  1722. white-space: pre;
  1723. }
  1724. /* News error retry button styles. */
  1725. #newsErrorRetry {
  1726. font-size: 12px;
  1727. font-weight: bold;
  1728. cursor: pointer;
  1729. background: none;
  1730. border: none;
  1731. outline: none;
  1732. transition: 0.25s ease;
  1733. }
  1734. #newsErrorRetry:focus,
  1735. #newsErrorRetry:hover {
  1736. text-shadow: 0px 0px 20px white;
  1737. }
  1738. #newsErrorRetry:active {
  1739. color: #c7c7c7;
  1740. text-shadow: 0px 0px 20px #c7c7c7;
  1741. }
  1742. /*******************************************************************************
  1743. * *
  1744. * Landing View (Top Styles) *
  1745. * *
  1746. ******************************************************************************/
  1747. /* * *
  1748. * Landing View (Top Styles) | Left Content
  1749. * * */
  1750. /* Logo image. */
  1751. #image_seal {
  1752. height: 70px;
  1753. width: auto;
  1754. position: relative;
  1755. border: 2px solid white;
  1756. box-sizing: border-box;
  1757. border-radius: 50%;
  1758. }
  1759. /* Logo container styles. */
  1760. #image_seal_container {
  1761. position: relative;
  1762. height: 70px;
  1763. width: 70px;
  1764. border-radius: 50%;
  1765. margin-top: 50px;
  1766. }
  1767. /* Logo container styles w/ update. */
  1768. #image_seal_container[update]{
  1769. cursor: pointer
  1770. }
  1771. #image_seal_container[update]:before,
  1772. #image_seal_container[update]:after {
  1773. cursor: pointer;
  1774. position: absolute;
  1775. content: '';
  1776. height: 100%;
  1777. width: 100%;
  1778. top: 0%;
  1779. left: 0%;
  1780. border-radius: 50%;
  1781. box-shadow: 0 0 15px #43c628;
  1782. animation: glow-grow 4s ease-out infinite;
  1783. background: rgba(0, 0, 0, 0.15);
  1784. }
  1785. #image_seal_container[update]:before {
  1786. animation-delay: 2s;
  1787. }
  1788. /* Update available tooltip styles. */
  1789. #updateAvailableTooltip {
  1790. cursor: pointer;
  1791. visibility: hidden;
  1792. opacity: 0;
  1793. width: 100px;
  1794. height: 15px;
  1795. background-color: rgb(0, 0, 0);
  1796. color: #fff;
  1797. text-align: center;
  1798. border-radius: 4px;
  1799. padding: 2px;
  1800. position: absolute;
  1801. z-index: 1;
  1802. top: 115%;
  1803. left: -17.5px;
  1804. font-family: 'Avenir Medium';
  1805. font-size: 12px;
  1806. transition: visibility 0s linear 0.25s, opacity 0.25s ease;
  1807. }
  1808. #updateAvailableTooltip::after {
  1809. content: " ";
  1810. position: absolute;
  1811. left: 50%;
  1812. bottom: 100%;
  1813. margin-left: -5px;
  1814. border-width: 5px;
  1815. border-style: solid;
  1816. border-color: transparent transparent rgb(0, 0, 0) transparent;
  1817. }
  1818. #image_seal_container[update]:hover #updateAvailableTooltip {
  1819. visibility: visible;
  1820. opacity: 1;
  1821. transition-delay: 0s;
  1822. }
  1823. /* Update available animation. */
  1824. @keyframes glow-grow {
  1825. 0% {
  1826. opacity: 0;
  1827. transform: scale(1);
  1828. }
  1829. 80% {
  1830. opacity: 1;
  1831. }
  1832. 100% {
  1833. transform: scale(1.5);
  1834. opacity: 0;
  1835. }
  1836. }
  1837. /* * *
  1838. * Landing View (Bottom Styles) | Right Content
  1839. * * */
  1840. /* Wrapper container for top, right content. */
  1841. #rightContainer {
  1842. display: flex;
  1843. flex-direction: column;
  1844. position: relative;
  1845. top: 50px;
  1846. align-items: flex-start;
  1847. height: calc(100% - 50px);
  1848. }
  1849. /* Right hand user content container. */
  1850. #user_content {
  1851. display: flex;
  1852. align-items: center;
  1853. justify-content: center;
  1854. box-sizing: border-box;
  1855. position: relative;
  1856. }
  1857. /* User profile avatar container. */
  1858. #avatarContainer {
  1859. border-radius: 50%;
  1860. border: 2px solid #cad7e1;
  1861. box-sizing: border-box;
  1862. background: rgba(1, 2, 1, 0.5);
  1863. height: 70px;
  1864. width: 70px;
  1865. box-shadow: 0px 0px 10px 0px rgb(0, 0, 0);
  1866. overflow: hidden;
  1867. position: relative;
  1868. background-image: url('https://cdn.discordapp.com/avatars/169197209630277642/6650b5a50e1cb3d00a79b9b88b9a0cd4.png');
  1869. background-size: contain;
  1870. }
  1871. /* Avatar edit overlay. */
  1872. #avatarOverlay {
  1873. opacity: 0;
  1874. position: absolute;
  1875. z-index: 1;
  1876. display: flex;
  1877. justify-content: center;
  1878. align-items: center;
  1879. transition: 0.25s ease;
  1880. font-weight: bold;
  1881. letter-spacing: 2px;
  1882. background: linear-gradient(65deg, rgba(0, 0, 0, 0.4), rgba(136, 77, 77, 0.4) 60%);
  1883. -webkit-user-select: none;
  1884. cursor: pointer;
  1885. width: 100%;
  1886. height: 100%;
  1887. border-radius: 50%;
  1888. }
  1889. #avatarOverlay:hover {
  1890. opacity: 1;
  1891. }
  1892. /* User profile name text. */
  1893. #user_text {
  1894. font-size: 12px;
  1895. min-width: 135px;
  1896. font-weight: 900;
  1897. letter-spacing: 1px;
  1898. text-shadow: 0px 0px 20px black;
  1899. position: absolute;
  1900. right: 95px;
  1901. text-align: right;
  1902. -webkit-user-select: initial;
  1903. }
  1904. /* Social media icon content container. */
  1905. #mediaContent {
  1906. position: relative;
  1907. display: flex;
  1908. flex-direction: column;
  1909. margin-top: 25px;
  1910. height: calc(100% - 95px);
  1911. width: 70px;
  1912. align-items: center;
  1913. }
  1914. /* Social Media Icon division containers. */
  1915. #internalMedia, #externalMedia {
  1916. display: flex;
  1917. flex-direction: column;
  1918. }
  1919. /* Container object which wraps an icon to ensure fluid transitions. */
  1920. .mediaContainer {
  1921. display: flex;
  1922. justify-content: center;
  1923. align-items: center;
  1924. height: 27px;
  1925. }
  1926. /* Divider bar between the external and internal icons. */
  1927. .mediaDivider {
  1928. height: 1px;
  1929. width: 14px;
  1930. background: rgb(255, 255, 255);
  1931. margin: 10px 0px;
  1932. }
  1933. /* Social media icon shared styles. */
  1934. .mediaSVG {
  1935. fill: #ffffff;
  1936. height: 12px;
  1937. transition: 0.25s ease;
  1938. cursor: pointer;
  1939. height: 12px;
  1940. width: 25px;
  1941. }
  1942. .mediaSVG:hover,
  1943. .mediaURL:focus .mediaSVG,
  1944. .mediaSVG:active {
  1945. height: 20px;
  1946. }
  1947. /* Social media URL shared styles. */
  1948. .mediaURL {
  1949. outline: none;
  1950. }
  1951. /* Internal media button shared styles. */
  1952. .mediaButton {
  1953. background: none;
  1954. border: none;
  1955. padding: 0px;
  1956. display: flex;
  1957. align-items: center;
  1958. outline: none;
  1959. }
  1960. #settingsMediaContainer {
  1961. position: relative;
  1962. }
  1963. /* Settings icon colors. */
  1964. #settingsSVG {
  1965. stroke: #ffffff;
  1966. height: 15px;
  1967. }
  1968. .mediaButton:hover #settingsSVG,
  1969. .mediaButton:focus #settingsSVG,
  1970. .mediaButton:active #settingsSVG {
  1971. height: 23px;
  1972. }
  1973. /* Settings tooltip styles. */
  1974. #settingsTooltip {
  1975. visibility: hidden;
  1976. opacity: 0;
  1977. width: 75px;
  1978. height: 20px;
  1979. background-color: rgba(0, 0, 0, 0.75);
  1980. text-align: center;
  1981. border-radius: 4px;
  1982. position: absolute;
  1983. z-index: 1;
  1984. right: 130%;
  1985. font-size: 12px;
  1986. line-height: 20px;
  1987. transition: visibility 0s linear 0.25s, opacity 0.25s ease;
  1988. }
  1989. #settingsTooltip::after {
  1990. content: " ";
  1991. position: absolute;
  1992. top: 50%;
  1993. left: 100%;
  1994. margin-top: -5px;
  1995. border-width: 5px;
  1996. border-style: solid;
  1997. border-color: transparent transparent transparent rgba(0, 0, 0, 0.75);
  1998. }
  1999. .mediaButton:hover #settingsTooltip,
  2000. .mediaButton:focus #settingsTooltip,
  2001. .mediaButton:active #settingsTooltip {
  2002. visibility: visible;
  2003. opacity: 1;
  2004. transition-delay:0s;
  2005. }
  2006. /* Twitter icon colors. */
  2007. #twitterSVG:hover,
  2008. #twitterURL:focus #twitterSVG {
  2009. fill: #1da1f2;
  2010. }
  2011. #twitterSVG:active {
  2012. fill: #1b8dd4;
  2013. }
  2014. /* Instagram icon colors. */
  2015. #instagramSVG:hover,
  2016. #instagramURL:focus #instagramSVG {
  2017. fill: url('#instaFill')
  2018. /*fill: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); */
  2019. }
  2020. #instagramSVG:active {
  2021. fill: url('#instaFill')
  2022. }
  2023. /* Youtube icon colors. */
  2024. #youtubeSVG:hover,
  2025. #youtubeURL:focus #youtubeSVG {
  2026. fill: #f00;
  2027. }
  2028. #youtubeSVG:active {
  2029. fill: #ea0202;
  2030. }
  2031. /* Discord icon colors. */
  2032. #discordSVG:hover,
  2033. #discordURL:focus #discordSVG {
  2034. fill: #7288d9;
  2035. }
  2036. #discordSVG:active {
  2037. fill: #657ac4;
  2038. }
  2039. /*******************************************************************************
  2040. * *
  2041. * Landing View (Bottom Styles) *
  2042. * *
  2043. ******************************************************************************/
  2044. /* Style for a general label on the bottom of the landing view. */
  2045. .bot_label {
  2046. font-size: 9px;
  2047. letter-spacing: 1px;
  2048. font-weight: bold;
  2049. text-shadow: 0px 0px 0px #bebcbb;
  2050. }
  2051. /* Divider used on the bottom of the landing view. */
  2052. .bot_divider {
  2053. height: 25px;
  2054. width: 2px;
  2055. background: rgba(107, 105, 105, 0.7);
  2056. margin-left: 20px;
  2057. margin-right: 20px;
  2058. }
  2059. /* * *
  2060. * Landing View (Bottom Styles) | Left Content
  2061. * * */
  2062. /* Maintains maximum width on the status bar. */
  2063. #server_status_wrapper {
  2064. display: inline-flex;
  2065. width: 75px;
  2066. }
  2067. /* Span which displays the player count of the selected server. */
  2068. #player_count {
  2069. color: #949494;
  2070. font-size: 8px;
  2071. font-weight: 900;
  2072. text-shadow: 0px 0px 20px #949494;
  2073. margin-left: 10px;
  2074. }
  2075. /* Wrapper container for the mojang status bar. */
  2076. #mojangStatusWrapper {
  2077. position: relative;
  2078. display: flex;
  2079. cursor: pointer;
  2080. }
  2081. /* Icon which displays the status of the mojang services. */
  2082. #mojang_status_icon {
  2083. font-size: 30px;
  2084. color: #848484;
  2085. margin-left: 15px;
  2086. font-family: 'sans-serif';
  2087. }
  2088. /* Tooltip which displays more details about the mojang statuses. */
  2089. #mojangStatusTooltip {
  2090. position: absolute;
  2091. visibility: hidden;
  2092. opacity: 0;
  2093. width: 145px;
  2094. min-height: 150px;
  2095. background-color: rgba(0, 0, 0, 0.75);
  2096. color: #fff;
  2097. border-radius: 4px;
  2098. padding: 5px 10px;
  2099. z-index: 1;
  2100. font-family: 'Avenir Medium';
  2101. font-size: 12px;
  2102. transition: visibility 0s linear 0.25s, opacity 0.25s ease;
  2103. bottom: calc(100% + 15px);
  2104. transform: translateX(-50%);
  2105. margin-left: 50%;
  2106. box-shadow: 0px 0px 20px rgb(0, 0, 0);
  2107. cursor: default;
  2108. }
  2109. #mojangStatusTooltip:after {
  2110. content: " ";
  2111. position: absolute;
  2112. left: 50%;
  2113. top: 100%;
  2114. margin-left: -5px;
  2115. border-width: 5px;
  2116. border-style: solid;
  2117. border-color: rgba(0, 0, 0, 0.75) transparent transparent transparent;
  2118. }
  2119. #mojangStatusWrapper:hover #mojangStatusTooltip {
  2120. visibility: visible;
  2121. opacity: 1;
  2122. transition-delay: 0s;
  2123. }
  2124. /* Tooltip title for the mojang statuses. */
  2125. #mojangStatusTooltipTitle {
  2126. width: 100%;
  2127. text-align: center;
  2128. margin-bottom: 5px;
  2129. letter-spacing: 1px;
  2130. }
  2131. /* Wrapper container for the non essential services title. */
  2132. #mojangStatusNEContainer {
  2133. display: flex;
  2134. align-items: center;
  2135. margin: 10px 0px;
  2136. }
  2137. /* White bar which surrounds the non essential service title. */
  2138. .mojangStatusNEBar {
  2139. height: 1px;
  2140. width: 100%;
  2141. background: white;
  2142. }
  2143. /* Non essential service title text. */
  2144. #mojangStatusNETitle {
  2145. font-size: 10px;
  2146. padding: 0px 3px;
  2147. text-align: center;
  2148. letter-spacing: 1px;
  2149. }
  2150. /* Wrapper container for mojang service information. */
  2151. .mojangStatusContainer {
  2152. display: flex;
  2153. }
  2154. /* Displays the name of the mojang service. */
  2155. .mojangStatusName {
  2156. width: 100%;
  2157. font-size: 10px;
  2158. letter-spacing: 1px;
  2159. line-height: 12px;
  2160. padding: 6px 0px;
  2161. }
  2162. /* Displays the status of the mojang service. */
  2163. .mojangStatusIcon {
  2164. margin-right: 10px;
  2165. font-size: 18.5px;
  2166. color: #848484;
  2167. }
  2168. /* * *
  2169. * Landing View (Bottom Styles) | Center Content
  2170. * * */
  2171. /* Button which opens the news view. */
  2172. #newsButton {
  2173. background: none;
  2174. border: none;
  2175. cursor: pointer;
  2176. outline: none;
  2177. }
  2178. #newsButton:hover #newsButtonText,
  2179. #newsButton:focus #newsButtonText {
  2180. text-shadow: 0px 0px 20px #fff, 0px 0px 20px #fff;
  2181. }
  2182. #newsButton:active {
  2183. color: #c7c7c7;
  2184. text-shadow: 0px 0px 20px #c7c7c7, 0px 0px 20px #c7c7c7;
  2185. }
  2186. #newsButton:hover #newsButtonSVG,
  2187. #newsButton:focus #newsButtonSVG {
  2188. -webkit-filter: drop-shadow(0px 0px 2px #fff);
  2189. }
  2190. #newsButton:active #newsButtonSVG .arrowLine {
  2191. stroke: #c7c7c7;
  2192. }
  2193. #newsButton:active #newsButtonSVG {
  2194. -webkit-filter: drop-shadow(0px 0px 2px #c7c7c7);
  2195. }
  2196. #newsButton:disabled #newsButtonSVG .arrowLine {
  2197. stroke: rgba(255, 255, 255, 0.75);
  2198. }
  2199. /* Icon which indicates there is new news. */
  2200. #newsButtonAlert {
  2201. width: 5px;
  2202. height: 5px;
  2203. position: absolute;
  2204. border-radius: 50%;
  2205. background: red;
  2206. right: -1px;
  2207. top: 50%;
  2208. }
  2209. /* Arrow image which floats above the news button. */
  2210. #newsButtonSVG {
  2211. height: 11px;
  2212. margin-left: -2px;
  2213. transition: 0.25s ease;
  2214. }
  2215. /* Span which contains the news button text. */
  2216. #newsButtonText {
  2217. color: white;
  2218. font-weight: 900;
  2219. letter-spacing: 2px;
  2220. text-shadow: 0px 0px 0px #bebcbb;
  2221. font-size: 11px;
  2222. line-height: 30px;
  2223. display: flex;
  2224. transition: 0.25s ease;
  2225. }
  2226. /* * *
  2227. * Landing View (Bottom Styles) | Right Content
  2228. * * */
  2229. /* Main launch content container. */
  2230. #landingContainer > #lower > #right #launch_content {
  2231. position: relative;
  2232. top: 25px;
  2233. display: inline-flex;
  2234. }
  2235. /* The launch button. */
  2236. #launch_button {
  2237. background: none;
  2238. border: none;
  2239. cursor: pointer;
  2240. font-weight: 900;
  2241. letter-spacing: 2px;
  2242. text-shadow: 0px 0px 0px #bebcbb;
  2243. font-size: 20px;
  2244. padding: 0px;
  2245. transition: 0.25s ease;
  2246. outline: none;
  2247. }
  2248. #launch_button:hover,
  2249. #launch_button:focus {
  2250. text-shadow: 0px 0px 20px #fff, 0px 0px 20px #fff;
  2251. }
  2252. #launch_button:active {
  2253. color: #c7c7c7;
  2254. text-shadow: 0px 0px 20px #c7c7c7, 0px 0px 20px #c7c7c7;
  2255. }
  2256. #launch_button:disabled {
  2257. color: #c7c7c7;
  2258. cursor: default;
  2259. pointer-events: none;
  2260. }
  2261. /* Launch details main container, hidden until launch processing begins. */
  2262. #launch_details {
  2263. position: relative;
  2264. top: 25px;
  2265. display: none;
  2266. }
  2267. /* Left side of launch details container, displays percentage and a divider. */
  2268. #launch_details_left {
  2269. display: flex;
  2270. }
  2271. /* Span which displays percentage complete. */
  2272. #launch_progress_label {
  2273. font-weight: 900;
  2274. letter-spacing: 1px;
  2275. text-shadow: 0px 0px 0px #bebcbb;
  2276. font-size: 20px;
  2277. min-width: 53.21px;
  2278. max-width: 53.21px;
  2279. text-align: right;
  2280. }
  2281. /* Right side of launch details container, displays progress bar and details. */
  2282. #launch_details_right {
  2283. display: flex;
  2284. flex-direction: column;
  2285. justify-content: center;
  2286. }
  2287. /* Button which opens the server selection view. */
  2288. #server_selection_button {
  2289. background: none;
  2290. border: none;
  2291. outline: none;
  2292. cursor: pointer;
  2293. line-height: 24px;
  2294. padding: 0px;
  2295. transition: 0.25s ease;
  2296. }
  2297. #server_selection_button:hover,
  2298. #server_selection_button:focus {
  2299. text-shadow: 0px 0px 20px #fff, 0px 0px 20px #fff, 0px 0px 20px #fff;
  2300. }
  2301. #server_selection_button:active {
  2302. color: #c7c7c7;
  2303. text-shadow: 0px 0px 20px #c7c7c7, 0px 0px 20px #c7c7c7, 0px 0px 20px #c7c7c7;
  2304. }
  2305. /* Progress bar styles. */
  2306. #launch_progress[value] {
  2307. height: 3px;
  2308. width: 265px;
  2309. -webkit-appearance: none;
  2310. }
  2311. #launch_progress[value]::-webkit-progress-bar {
  2312. background-color: transparent;
  2313. }
  2314. #launch_progress[value]::-webkit-progress-value {
  2315. background-color: #fff;
  2316. }
  2317. /* Span which displays information about the status of the launch process. */
  2318. #launch_details_text {
  2319. font-size: 11px;
  2320. text-overflow: ellipsis;
  2321. white-space: nowrap;
  2322. overflow: hidden;
  2323. }
  2324. /*******************************************************************************
  2325. * *
  2326. * Overlay View (overlay.ejs) *
  2327. * *
  2328. ******************************************************************************/
  2329. /* * *
  2330. * Overlay View (Main Content)
  2331. * * */
  2332. /* Overlay container, placed over the main div. */
  2333. #overlayContainer {
  2334. position: absolute;
  2335. z-index: 500;
  2336. top: 22px;
  2337. display: flex;
  2338. align-items: center;
  2339. justify-content: center;
  2340. width: 100%;
  2341. height: calc(100% - 22px);
  2342. background: rgba(0, 0, 0, 0.50);
  2343. }
  2344. /* Main overlay content. */
  2345. #overlayContent {
  2346. position: relative;
  2347. display: flex;
  2348. flex-direction: column;
  2349. align-items: center;
  2350. /*justify-content: space-between;*/
  2351. width: 300px;
  2352. /*height: 35%;*/
  2353. box-sizing: border-box;
  2354. padding: 15px 0px;
  2355. /* background-color: #424242; */
  2356. text-align: center;
  2357. }
  2358. /* Main overlay content anchor styles. */
  2359. #overlayContent a,
  2360. #overlayDismiss {
  2361. color: rgba(202, 202, 202, 0.75);
  2362. transition: 0.25s ease;
  2363. }
  2364. #overlayContent a:hover,
  2365. #overlayContent a:focus,
  2366. #overlayDismiss:focus {
  2367. color: rgba(255, 255, 255, 0.75);
  2368. }
  2369. #overlayContent a:active,
  2370. #overlayDismiss:active {
  2371. color: rgba(165, 165, 165, 0.75);
  2372. }
  2373. /* Add spacing between overlay content elements. */
  2374. #overlayContent > *:first-child {
  2375. margin-top: 0px !important;
  2376. }
  2377. #overlayContent > *:last-child {
  2378. margin-bottom: 0px !important;
  2379. }
  2380. #overlayContent > * {
  2381. margin: 8px 0px;
  2382. }
  2383. /* Overlay title styles. */
  2384. #overlayTitle {
  2385. font-family: 'Avenir Medium';
  2386. font-size: 20px;
  2387. font-weight: bold;
  2388. letter-spacing: 1px;
  2389. -webkit-user-select: initial;
  2390. }
  2391. /* Overlay description styles. */
  2392. #overlayDesc {
  2393. font-size: 12px;
  2394. font-weight: bold;
  2395. -webkit-user-select: initial;
  2396. }
  2397. /* Div which contains action buttons. */
  2398. #overlayActionContainer {
  2399. display: flex;
  2400. flex-direction: column;
  2401. justify-content: center;
  2402. }
  2403. /* Overlay acknowledge button styles. */
  2404. #overlayAcknowledge {
  2405. background: none;
  2406. border: 1px solid #ffffff;
  2407. color: white;
  2408. font-family: 'Avenir Medium';
  2409. font-weight: bold;
  2410. border-radius: 2px;
  2411. padding: 0px 8.1px;
  2412. cursor: pointer;
  2413. transition: 0.25s ease;
  2414. }
  2415. #overlayAcknowledge:hover,
  2416. #overlayAcknowledge:focus {
  2417. box-shadow: 0px 0px 10px 0px #fff;
  2418. outline: none;
  2419. }
  2420. #overlayAcknowledge:active {
  2421. border-color: rgba(255, 255, 255, 0.75);
  2422. color: rgba(255, 255, 255, 0.75);
  2423. }
  2424. /* Overlay dismiss option styles. */
  2425. #overlayDismiss {
  2426. font-weight: bold;
  2427. font-size: 10px;
  2428. text-decoration: none;
  2429. padding-top: 2.5px;
  2430. background: none;
  2431. border: none;
  2432. outline: none;
  2433. cursor: pointer;
  2434. }
  2435. #overlayDismiss:hover {
  2436. color: rgba(255, 255, 255, 0.75);
  2437. }
  2438. #overlayDismiss:active {
  2439. color: rgba(165, 165, 165, 0.75);
  2440. }
  2441. /* * *
  2442. * Overlay View (Server + Account Selection Content)
  2443. * * */
  2444. /* Server selection content container. */
  2445. #serverSelectContent,
  2446. #accountSelectContent {
  2447. display: flex;
  2448. flex-direction: column;
  2449. justify-content: center;
  2450. align-items: center;
  2451. height: 75%;
  2452. }
  2453. /* Server selection header. */
  2454. #serverSelectHeader,
  2455. #accountSelectHeader {
  2456. font-family: 'Avenir Medium';
  2457. font-size: 20px;
  2458. font-weight: bold;
  2459. color: #fff;
  2460. margin-bottom: 25px;
  2461. }
  2462. /* Wrapper div for the list of available servers. */
  2463. #serverSelectList,
  2464. #accountSelectList {
  2465. display: flex;
  2466. flex-direction: column;
  2467. align-items: center;
  2468. justify-content: center;
  2469. max-height: 65%;
  2470. min-height: 40%;
  2471. }
  2472. /* Scrollable div which lists the available servers. */
  2473. #serverSelectListScrollable,
  2474. #accountSelectListScrollable {
  2475. padding: 0px 5px;
  2476. overflow-y: scroll;
  2477. }
  2478. #serverSelectListScrollable::-webkit-scrollbar,
  2479. #accountSelectListScrollable::-webkit-scrollbar {
  2480. width: 2px;
  2481. }
  2482. #serverSelectListScrollable::-webkit-scrollbar-track,
  2483. #accountSelectListScrollable::-webkit-scrollbar-track {
  2484. display: none;
  2485. }
  2486. #serverSelectListScrollable::-webkit-scrollbar-thumb,
  2487. #accountSelectListScrollable::-webkit-scrollbar-thumb {
  2488. border-radius: 10px;
  2489. box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.50);
  2490. }
  2491. /* Content container for a server listing. */
  2492. .serverListing {
  2493. border: none;
  2494. padding: 0px;
  2495. width: 375px;
  2496. min-height: 60px;
  2497. display: flex;
  2498. justify-content: flex-start;
  2499. align-items: center;
  2500. opacity: 0.6;
  2501. transition: 0.25s ease;
  2502. cursor: pointer;
  2503. position: relative;
  2504. background: rgba(131, 131, 131, 0.25);
  2505. }
  2506. .serverListing[selected] {
  2507. cursor: default;
  2508. opacity: 1.0;
  2509. }
  2510. .serverListing:hover,
  2511. .serverListing:focus {
  2512. outline: none;
  2513. opacity: 1.0;
  2514. }
  2515. .accountListing {
  2516. color: white;
  2517. border: 1px solid rgba(126, 126, 126, 0.57);
  2518. border-radius: 3px;
  2519. padding: 5px 45px;
  2520. width: 250px;
  2521. display: flex;
  2522. justify-content: flex-start;
  2523. align-items: center;
  2524. opacity: 0.6;
  2525. transition: 0.25s ease;
  2526. cursor: pointer;
  2527. position: relative;
  2528. background: rgba(0, 0, 0, 0.25);
  2529. }
  2530. .accountListing[selected] {
  2531. cursor: default;
  2532. opacity: 1.0;
  2533. }
  2534. .accountListing:hover,
  2535. .accountListing:focus {
  2536. outline: none;
  2537. opacity: 1.0;
  2538. }
  2539. .accountListingName {
  2540. display: flex;
  2541. height: 100%;
  2542. width: 100%;
  2543. padding-left: 10px;
  2544. }
  2545. /* Add spacing between server listings. */
  2546. #serverSelectListScrollable > .serverListing:not(:first-child):not(:last-child),
  2547. #accountSelectListScrollable > .accountListing:not(:first-child):not(:last-child) {
  2548. margin: 5px 0px;
  2549. }
  2550. #serverSelectListScrollable > .serverListing:first-child,
  2551. #accountSelectListScrollable > .accountListing:first-child {
  2552. margin-bottom: 5px;
  2553. }
  2554. #serverSelectListScrollable > .serverListing:last-child,
  2555. #accountSelectListScrollable > .accountListing:last-child {
  2556. margin-top: 5px;
  2557. }
  2558. /* Server listing image. */
  2559. .serverListingImg {
  2560. margin: 0px 10px 0px 5px;
  2561. border: 1px solid #fff;
  2562. height: 50px;
  2563. width: 50px;
  2564. }
  2565. /* Content container for the server listing's details. */
  2566. .serverListingDetails {
  2567. display: flex;
  2568. flex-direction: column;
  2569. align-items: flex-start;
  2570. justify-content: space-between;
  2571. height: 50px;
  2572. }
  2573. /* The name of the server listing. */
  2574. .serverListingName {
  2575. font-size: 14px;
  2576. font-weight: bold;
  2577. }
  2578. /* Description for the server listing. */
  2579. .serverListingDescription {
  2580. font-size: 10px;
  2581. line-height: 10px;
  2582. font-weight: bold;
  2583. }
  2584. /* Content container for the server listing's information. */
  2585. .serverListingInfo {
  2586. width: 100%;
  2587. display: flex;
  2588. justify-content: flex-start;
  2589. }
  2590. /* The minecraft version of the server listing. */
  2591. .serverListingVersion {
  2592. font-size: 10px;
  2593. text-align: center;
  2594. display: flex;
  2595. justify-content: center;
  2596. align-items: center;
  2597. line-height: 12px;
  2598. height: 12px;
  2599. border-radius: 2px;
  2600. background: rgba(31, 140, 11, 0.8);
  2601. padding: 0px 2px;
  2602. }
  2603. /* The revision version of the server's manifest. */
  2604. .serverListingRevision {
  2605. color: #969696;
  2606. font-size: 10px;
  2607. line-height: 12px;
  2608. padding: 0px 5px;
  2609. }
  2610. /* Star which indicates the default (main) server. */
  2611. .serverListingStarWrapper {
  2612. display: flex;
  2613. align-items: center;
  2614. cursor: pointer;
  2615. height: 12px;
  2616. position: relative;
  2617. }
  2618. /* Tooltip which displays when hovering over the star. */
  2619. .serverListingStarTooltip {
  2620. visibility: hidden;
  2621. opacity: 0;
  2622. width: 65px;
  2623. background-color: rgba(0, 0, 0, 0.40);
  2624. text-align: center;
  2625. border-radius: 4px;
  2626. position: absolute;
  2627. z-index: 1;
  2628. left: 130%;
  2629. font-size: 10px;
  2630. transition: visibility 0s linear 0.25s, opacity 0.25s ease;
  2631. }
  2632. .serverListingStarTooltip::after {
  2633. content: " ";
  2634. position: absolute;
  2635. top: 50%;
  2636. right: 100%; /* To the left of the tooltip */
  2637. margin-top: -5px;
  2638. border-width: 5px;
  2639. border-style: solid;
  2640. border-color: transparent rgba(0, 0, 0, 0.40) transparent transparent;
  2641. }
  2642. .serverListingStarWrapper:hover .serverListingStarTooltip {
  2643. visibility: visible;
  2644. opacity: 1;
  2645. transition-delay:0s;
  2646. }
  2647. /* Content container which contains the server select actions. */
  2648. #serverSelectActions,
  2649. #accountSelectActions {
  2650. display: flex;
  2651. flex-direction: column;
  2652. justify-content: center;
  2653. align-items: center;
  2654. margin-top: 25px;
  2655. }
  2656. /* Server selection confirm button styles. */
  2657. #serverSelectConfirm,
  2658. #accountSelectConfirm {
  2659. background: none;
  2660. border: 1px solid #ffffff;
  2661. color: white;
  2662. font-family: 'Avenir Medium';
  2663. font-weight: bold;
  2664. border-radius: 2px;
  2665. padding: 0px 8.1px;
  2666. cursor: pointer;
  2667. transition: 0.25s ease;
  2668. min-height: 20.67px;
  2669. }
  2670. #serverSelectConfirm:hover,
  2671. #serverSelectConfirm:focus,
  2672. #accountSelectConfirm:hover,
  2673. #accountSelectConfirm:focus {
  2674. box-shadow: 0px 0px 10px 0px #fff;
  2675. outline: none;
  2676. }
  2677. #serverSelectConfirm:active,
  2678. #accountSelectConfirm:active {
  2679. border-color: rgba(255, 255, 255, 0.75);
  2680. color: rgba(255, 255, 255, 0.75);
  2681. }
  2682. /* Server selection cancel button styles. */
  2683. #serverSelectCancel,
  2684. #accountSelectCancel {
  2685. font-weight: bold;
  2686. font-size: 10px;
  2687. text-decoration: none;
  2688. padding-top: 2.5px;
  2689. color: rgba(202, 202, 202, 0.75);
  2690. transition: 0.25s ease;
  2691. background: none;
  2692. border: none;
  2693. outline: none;
  2694. cursor: pointer;
  2695. }
  2696. #serverSelectCancel:hover,
  2697. #serverSelectCancel:focus,
  2698. #accountSelectCancel:hover,
  2699. #accountSelectCancel:focus {
  2700. color: rgba(255, 255, 255, 0.75);
  2701. }
  2702. #serverSelectCancel:active,
  2703. #accountSelectCancel:active {
  2704. color: rgba(165, 165, 165, 0.75);
  2705. }
  2706. /*******************************************************************************
  2707. * *
  2708. * Loading Element (app.ejs) *
  2709. * *
  2710. ******************************************************************************/
  2711. /* Loading container, placed above everything. */
  2712. #loadingContainer {
  2713. position: absolute;
  2714. z-index: 400;
  2715. display: flex;
  2716. align-items: center;
  2717. justify-content: center;
  2718. width: 100%;
  2719. height: calc(100% - 22px);
  2720. }
  2721. /* Loading content container. */
  2722. #loadingContent {
  2723. position: relative;
  2724. display: flex;
  2725. flex-direction: column;
  2726. align-items: center;
  2727. justify-content: center;
  2728. }
  2729. /* Spinner container. */
  2730. #loadSpinnerContainer {
  2731. position: relative;
  2732. display: flex;
  2733. align-items: center;
  2734. justify-content: center;
  2735. }
  2736. /* Stationary image for the spinner. */
  2737. #loadCenterImage {
  2738. position: absolute;
  2739. width: 277px;
  2740. height: auto;
  2741. }
  2742. /* Rotating image for the spinner. */
  2743. #loadSpinnerImage {
  2744. width: 280px;
  2745. height: auto;
  2746. z-index: 400;
  2747. }
  2748. /* Rotating animation for the spinner. */
  2749. @keyframes rotating {
  2750. from {
  2751. transform: rotate(0deg);
  2752. }
  2753. to {
  2754. transform: rotate(360deg);
  2755. }
  2756. }
  2757. /* Class which is applied when the spinner image is spinning. */
  2758. .rotating {
  2759. animation: rotating 10s linear infinite;
  2760. }