launcher.css 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777
  1. /* Github Code Highlighting. */
  2. @import "../../../node_modules/github-syntax-dark/lib/github-dark.css";
  3. /*******************************************************************************
  4. * *
  5. * Fonts *
  6. * *
  7. ******************************************************************************/
  8. @font-face {
  9. font-family: 'Avenir Book';
  10. src: url('../fonts/Avenir-Book.ttf');
  11. }
  12. @font-face {
  13. font-family: 'Avenir Medium';
  14. src: url('../fonts/Avenir-Medium.ttf');
  15. }
  16. @font-face {
  17. font-family: 'Ringbearer';
  18. src: url('../fonts/Ringbearer.ttf');
  19. }
  20. /*******************************************************************************
  21. * *
  22. * Element Styles *
  23. * *
  24. ******************************************************************************/
  25. /* Reset body, html, and div presets. */
  26. body, html, div {
  27. margin: 0px;
  28. padding: 0px;
  29. }
  30. /* Reset p presets. */
  31. p {
  32. -webkit-margin-before: 0em;
  33. -webkit-margin-after: 0em;
  34. }
  35. /* Set default font and color. */
  36. body, button {
  37. font-family: 'Avenir Book';
  38. color: white;
  39. }
  40. /*body {
  41. background: url('./../images/backgrounds/0.jpg') no-repeat center center fixed;
  42. background-size: cover;
  43. }*/
  44. /*******************************************************************************
  45. * *
  46. * Frame Styles (frame.ejs) *
  47. * *
  48. ******************************************************************************/
  49. /* Frame Bar */
  50. #frameBar {
  51. position: relative;
  52. z-index: 100;
  53. display: flex;
  54. flex-direction: column;
  55. transition: background-color 1s ease;
  56. /*background-color: rgba(0, 0, 0, 0.5);*/
  57. -webkit-user-select: none;
  58. }
  59. /* Undraggable region on the top of the frame. */
  60. #frameResizableTop {
  61. height: 2px;
  62. width: 100%;
  63. -webkit-app-region: no-drag;
  64. }
  65. /* Flexbox to wrap the main frame content. */
  66. #frameMain {
  67. display: flex;
  68. height: 20px
  69. }
  70. /* Undraggable region on the left and right of the frame. */
  71. .frameResizableVert {
  72. width: 2px;
  73. -webkit-app-region: no-drag;
  74. }
  75. /* Main frame content for windows. */
  76. #frameContentWin {
  77. display: flex;
  78. justify-content: space-between;
  79. width: 100%;
  80. -webkit-app-region: drag;
  81. }
  82. /* Main frame content for darwin. */
  83. #frameContentDarwin {
  84. display: flex;
  85. justify-content: flex-start;
  86. align-items: center;
  87. width: 100%;
  88. -webkit-app-region: drag;
  89. }
  90. /* Frame logo (windows only). */
  91. #frameTitleDock {
  92. padding: 0px 10px;
  93. }
  94. #frameTitleText {
  95. font-size: 14px;
  96. font-family: 'Avenir Medium';
  97. letter-spacing: 0.5px;
  98. }
  99. /* Windows frame button dock. */
  100. #frameButtonDockWin {
  101. -webkit-app-region: no-drag !important;
  102. position: relative;
  103. top: -2px;
  104. right: -2px;
  105. height: 22px;
  106. }
  107. #frameButtonDockWin > .frameButton:not(:first-child) {
  108. margin-left: -4px;
  109. }
  110. /* Darwin frame button dock: NaN; */
  111. #frameButtonDockDarwin {
  112. -webkit-app-region: no-drag !important;
  113. position: relative;
  114. top: -1px;
  115. right: -1px;
  116. }
  117. /* Windows Frame Button Styles. */
  118. .frameButton {
  119. background: none;
  120. border: none;
  121. height: 22px;
  122. width: 39px;
  123. cursor: pointer;
  124. }
  125. .frameButton:hover,
  126. .frameButton:focus {
  127. background: rgba(189, 189, 189, 0.43);
  128. }
  129. .frameButton:active {
  130. background: rgba(156, 156, 156, 0.43);
  131. }
  132. .frameButton:focus {
  133. outline: 0px;
  134. }
  135. /* Close button is red. */
  136. #frameButton_close:hover,
  137. #frameButton_close:focus {
  138. background: rgba(255, 53, 53, 0.61) !important;
  139. }
  140. #frameButton_close:active {
  141. background: rgba(235, 0, 0, 0.61) !important;
  142. }
  143. /* Darwin Frame Button Styles. */
  144. .frameButtonDarwin {
  145. height: 12px;
  146. width: 12px;
  147. border-radius: 50%;
  148. border: 0px;
  149. margin-left: 5px;
  150. -webkit-app-region: no-drag !important;
  151. cursor: pointer;
  152. }
  153. .frameButtonDarwin:focus {
  154. outline: 0px;
  155. }
  156. #frameButtonDarwin_close {
  157. background-color: #e74c32;
  158. }
  159. #frameButtonDarwin_close:hover,
  160. #frameButtonDarwin_close:focus {
  161. background-color: #FF9A8A;
  162. }
  163. #frameButtonDarwin_close:active {
  164. background-color: #ff8d7b;
  165. }
  166. #frameButtonDarwin_minimize {
  167. background-color: #fed045;
  168. }
  169. #frameButtonDarwin_minimize:hover,
  170. #frameButtonDarwin_minimize:focus {
  171. background-color: #FFE9A9;
  172. }
  173. #frameButtonDarwin_minimize:active {
  174. background-color: #ffde7b;
  175. }
  176. #frameButtonDarwin_restoredown {
  177. background-color: #96e734;
  178. }
  179. #frameButtonDarwin_restoredown:hover,
  180. #frameButtonDarwin_restoredown:focus {
  181. background-color: #D6FFA6;
  182. }
  183. #frameButtonDarwin_restoredown:active {
  184. background-color: #bfff76;
  185. }
  186. /*******************************************************************************
  187. * *
  188. * Welcome View (welcome.ejs) *
  189. * *
  190. ******************************************************************************/
  191. #welcomeContainer {
  192. position: relative;
  193. display: flex;
  194. justify-content: center;
  195. align-items: center;
  196. height: 100%;
  197. width: 100%;
  198. }
  199. #welcomeContent {
  200. display: flex;
  201. flex-direction: column;
  202. justify-content: center;
  203. align-items: center;
  204. width: 50%;
  205. top: -10%;
  206. position: relative;
  207. }
  208. /*
  209. .cloudDiv {
  210. position: absolute;
  211. height: 100%;
  212. width: 100%;
  213. display: flex;
  214. flex-direction: column;
  215. }
  216. .cloudTop {
  217. height: 50%;
  218. width: 100%;
  219. background-image: url('../images/cloudTrans.png');
  220. animation: clouds1 80s linear infinite;
  221. background-size: cover;
  222. }
  223. .cloudBottom {
  224. height: 50%;
  225. width: 100%;
  226. background-image: url('../images/cloudTrans2.png');
  227. animation: clouds2 70s linear infinite;
  228. background-size: cover;
  229. }
  230. @keyframes clouds1 {
  231. to {
  232. background-position: 200%;
  233. }
  234. }
  235. @keyframes clouds2 {
  236. to {
  237. background-position: 230%;
  238. }
  239. }
  240. */
  241. #welcomeImageSeal {
  242. border-radius: 50%;
  243. border: 2px solid #cad7e1;
  244. background: rgba(1, 2, 1, 0.5);
  245. height: 125px;
  246. width: 125px;
  247. box-shadow: 0px 0px 10px 0px rgb(0, 0, 0);
  248. margin-bottom: 5%;
  249. margin-top: 10%;
  250. }
  251. #welcomeHeader {
  252. font-family: 'Avenir Medium';
  253. text-align: center;
  254. color: white;
  255. margin-bottom: 25px;
  256. letter-spacing: 1px;
  257. font-size: 20px;
  258. text-shadow: white 0px 0px 0px;
  259. }
  260. #welcomeDescription {
  261. text-align: justify;
  262. font-size: 13px;
  263. font-weight: 100;
  264. text-shadow: rgba(255, 255, 255, 0.75) 0px 0px 20px
  265. }
  266. #welcomeDescCTA {
  267. text-align: center;
  268. font-size: 14px;
  269. font-weight: 100;
  270. text-shadow: rgba(255, 255, 255, 0.75) 0px 0px 20px
  271. }
  272. /* Login button styles. */
  273. #welcomeButton {
  274. background: none;
  275. font-weight: bold;
  276. letter-spacing: 2px;
  277. border: none;
  278. padding: 15px 5px;
  279. margin: 10px 0px;
  280. cursor: pointer;
  281. position: relative;
  282. right: -20px;
  283. transition: 0.5s ease;
  284. margin-top: 5%;
  285. margin-bottom: -5%;
  286. }
  287. #welcomeButton:disabled {
  288. color: rgba(255, 255, 255, 0.75);
  289. pointer-events: none;
  290. }
  291. #welcomeButton:hover,
  292. #welcomeButton:focus {
  293. text-shadow: 0px 0px 20px #fff;
  294. outline: none;
  295. }
  296. #welcomeButton:active {
  297. color: #c7c7c7;
  298. text-shadow: 0px 0px 20px #c7c7c7;
  299. }
  300. #welcomeSVG {
  301. -webkit-transform: translate3d(0, 0, 0);
  302. overflow: visible;
  303. transform: rotate(90deg);
  304. margin-left: 20px;
  305. transition: 0.25s ease;
  306. width: 20px;
  307. height: 20px;
  308. }
  309. #welcomeButton:hover #welcomeSVG,
  310. #welcomeButton:focus #welcomeSVG {
  311. -webkit-filter: drop-shadow(0px 0px 2px #fff);
  312. }
  313. #welcomeButton:active #welcomeSVG .arrowLine {
  314. stroke: #c7c7c7;
  315. }
  316. #welcomeButton:active #welcomeSVG {
  317. -webkit-filter: drop-shadow(0px 0px 2px #c7c7c7);
  318. }
  319. #welcomeButton:disabled #welcomeSVG .arrowLine {
  320. stroke: rgba(255, 255, 255, 0.75);
  321. }
  322. #welcomeButtonContent {
  323. display: flex;
  324. align-items: center;
  325. }
  326. /*******************************************************************************
  327. * *
  328. * Login View (login.ejs) *
  329. * *
  330. ******************************************************************************/
  331. /* Styles for dimmer login span. */
  332. .loginSpanDim {
  333. font-size: 12px;
  334. color: #848484;
  335. font-weight: bold;
  336. }
  337. /* Main login container. */
  338. #loginContainer {
  339. position: relative;
  340. display: flex;
  341. justify-content: center;
  342. align-items: center;
  343. height: 100%;
  344. width: 100%;
  345. transition: filter 0.25s ease;
  346. background: rgba(0, 0, 0, 0.50);
  347. }
  348. /* Login cancel button styles. */
  349. #loginCancelContainer {
  350. position: absolute;
  351. top: 5%;
  352. right: 5%;
  353. }
  354. /* Login cancel button styles. */
  355. #loginCancelButton {
  356. background: none;
  357. border: none;
  358. outline: none;
  359. cursor: pointer;
  360. transition: 0.25s ease;
  361. }
  362. #loginCancelButton:hover #loginCancelIcon,
  363. #loginCancelButton:hover #loginCancelText,
  364. #loginCancelButton:focus #loginCancelIcon,
  365. #loginCancelButton:focus #loginCancelText {
  366. text-shadow: 0px 0px 20px white;
  367. }
  368. #loginCancelButton:hover #loginCancelIcon,
  369. #loginCancelButton:focus #loginCancelIcon {
  370. box-shadow: 0px 0px 20px white;
  371. }
  372. #loginCancelButton:active #loginCancelIcon,
  373. #loginCancelButton:active #loginCancelText {
  374. text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.75);
  375. color: rgba(255, 255, 255, 0.75);
  376. border-color: rgba(255, 255, 255, 0.75);
  377. }
  378. #loginCancelButton:active #loginCancelIcon {
  379. box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.75);
  380. }
  381. #loginCancelButton:disabled {
  382. pointer-events: none;
  383. }
  384. #loginCancelButton:disabled #loginCancelIcon,
  385. #loginCancelButton:disabled #loginCancelText {
  386. color: rgba(255, 255, 255, 0.75);
  387. border-color: rgba(255, 255, 255, 0.75);
  388. }
  389. /* The X in a circle icon for the cancel button. */
  390. #loginCancelIcon {
  391. border-radius: 50%;
  392. border: 1px solid white;
  393. box-sizing: border-box;
  394. height: 30px;
  395. width: 30px;
  396. font-size: 19px;
  397. line-height: 30px;
  398. margin: 0 auto;
  399. margin-bottom: 5px;
  400. transition: 0.25s ease;
  401. }
  402. /* Text for the login cancel button. */
  403. #loginCancelText {
  404. font-size: 15px;
  405. transition: 0.25s ease;
  406. }
  407. /* Login content wrapper. */
  408. #loginContent {
  409. display: flex;
  410. justify-content: center;
  411. align-items: center;
  412. height: 100%;
  413. padding: 0px 25px;
  414. }
  415. /* Login form. */
  416. #loginForm {
  417. display: flex;
  418. flex-direction: column;
  419. justify-content: center;
  420. align-items: center;
  421. }
  422. /* Login form anchor styles. */
  423. #loginForm a {
  424. font-size: 12px;
  425. color: #848484;
  426. font-weight: bold;
  427. text-decoration: none;
  428. transition: 0.25s ease;
  429. }
  430. #loginForm a:hover,
  431. #loginForm a:focus {
  432. color: #a2a2a2;
  433. outline: none;
  434. }
  435. #loginForm a:active {
  436. color: #8b8b8b;
  437. }
  438. /* Logo on login form. */
  439. #loginImageSeal {
  440. border-radius: 50%;
  441. border: 2px solid #cad7e1;
  442. background: rgba(1, 2, 1, 0.5);
  443. height: 125px;
  444. width: 125px;
  445. box-shadow: 0px 0px 10px 0px rgb(0, 0, 0);
  446. margin-bottom: 20px;
  447. }
  448. /* Header on login view. */
  449. #loginSubheader {
  450. font-family: 'Avenir Medium';
  451. margin-bottom: 25px;
  452. font-size: 12px;
  453. letter-spacing: 1px;
  454. font-weight: bold;
  455. }
  456. /* Container to organize login field elements. */
  457. .loginFieldContainer {
  458. position: relative;
  459. display: flex;
  460. flex-direction: column;
  461. justify-content: center;
  462. align-items: center;
  463. }
  464. /* SVG icons on the login view. */
  465. .loginSVG {
  466. fill: #fff;
  467. height: 20px;
  468. width: 20px;
  469. }
  470. /* Span which displays errors related to login field content. */
  471. .loginErrorSpan {
  472. font-family: 'Avenir Medium';
  473. font-weight: bold;
  474. font-size: 8px;
  475. color: #ff1b0c;
  476. width: 100%;
  477. text-align: right;
  478. position: absolute;
  479. top: 7px;
  480. opacity: 0;
  481. transition: 0.25s ease;
  482. }
  483. .shake {
  484. animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
  485. }
  486. @keyframes shake {
  487. 10%, 90% {
  488. transform: translate3d(-1px, 0, 0);
  489. }
  490. 20%, 80% {
  491. transform: translate3d(2px, 0, 0);
  492. }
  493. 30%, 50%, 70% {
  494. transform: translate3d(-4px, 0, 0);
  495. }
  496. 40%, 60% {
  497. transform: translate3d(4px, 0, 0);
  498. }
  499. }
  500. /* Login text input styles. */
  501. .loginField {
  502. font-family: 'Avenir Book';
  503. background: none;
  504. border-width: 1.5px 0px 0px 0px;
  505. border-style: solid;
  506. width: 250px;
  507. margin-bottom: 20px;
  508. border-color: #fff;
  509. color: rgba(255, 255, 255, 0.75);
  510. font-weight: bold;
  511. text-align: center;
  512. box-sizing: border-box;
  513. padding: 7.5px;
  514. font-size: 10px;
  515. letter-spacing: 1px;
  516. }
  517. .loginField:focus {
  518. outline: none;
  519. }
  520. .loginField:disabled {
  521. color: rgba(255, 255, 255, 0.50);
  522. }
  523. .loginField::-webkit-input-placeholder {
  524. color: rgba(255, 255, 255, 0.75);
  525. font-size: 10px;
  526. letter-spacing: 1px;
  527. text-align: center;
  528. font-weight: bold;
  529. }
  530. .loginField:focus::-webkit-input-placeholder {
  531. color: transparent;
  532. }
  533. /* Add spacing between password field and options bar. */
  534. #labelPassword {
  535. margin-bottom: 13px;
  536. }
  537. /* Container which contains the forgot and remember options. */
  538. #loginOptions {
  539. display: flex;
  540. justify-content: space-between;
  541. width: 100%;
  542. }
  543. /* Remember option text. */
  544. #loginRememberText {
  545. padding-right: 10px;
  546. transition: 0.25s ease;
  547. }
  548. /* Login button styles. */
  549. #loginButton {
  550. background: none;
  551. font-weight: bold;
  552. letter-spacing: 2px;
  553. border: none;
  554. padding: 15px 5px;
  555. margin: 10px 0px;
  556. cursor: pointer;
  557. position: relative;
  558. right: -20px;
  559. transition: 0.5s ease;
  560. }
  561. #loginButton:disabled {
  562. color: rgba(255, 255, 255, 0.75);
  563. pointer-events: none;
  564. }
  565. #loginButton[loading] {
  566. color: #fff;
  567. }
  568. #loginButton:hover,
  569. #loginButton:focus {
  570. text-shadow: 0px 0px 20px #fff;
  571. outline: none;
  572. }
  573. #loginButton:active {
  574. color: #c7c7c7;
  575. text-shadow: 0px 0px 20px #c7c7c7;
  576. }
  577. #loginSVG {
  578. -webkit-transform: translate3d(0, 0, 0);
  579. overflow: visible;
  580. transform: rotate(90deg);
  581. margin-left: 20px;
  582. transition: 0.25s ease;
  583. width: 20px;
  584. height: 20px;
  585. }
  586. #loginButton:hover #loginSVG,
  587. #loginButton:focus #loginSVG {
  588. -webkit-filter: drop-shadow(0px 0px 2px #fff);
  589. }
  590. #loginButton:active #loginSVG .arrowLine {
  591. stroke: #c7c7c7;
  592. }
  593. #loginButton:active #loginSVG {
  594. -webkit-filter: drop-shadow(0px 0px 2px #c7c7c7);
  595. }
  596. #loginButton:disabled #loginSVG .arrowLine {
  597. stroke: rgba(255, 255, 255, 0.75);
  598. }
  599. #loginButtonContent {
  600. display: flex;
  601. align-items: center;
  602. }
  603. #loginButton .circle-loader,
  604. #loginButton[loading] #loginSVG {
  605. display: none;
  606. }
  607. #loginButton[loading] .circle-loader,
  608. #loginButton #loginSVG {
  609. display: initial;
  610. }
  611. .circle-loader {
  612. margin-left: 20px;
  613. border: 2px solid rgba(255, 255, 255, 0.5);
  614. border-left-color: #ffffff;
  615. animation-name: loader-spin;
  616. animation-duration: 1s;
  617. animation-iteration-count: infinite;
  618. animation-timing-function: linear;
  619. position: relative;
  620. display: inline-block;
  621. vertical-align: top;
  622. border-radius: 50%;
  623. width: 16px;
  624. height: 16px;
  625. }
  626. .load-complete {
  627. animation: none;
  628. border-color: #ffffff;
  629. transition: border 500ms ease-out;
  630. }
  631. .checkmark {
  632. display: none;
  633. }
  634. .checkmark.draw:after {
  635. animation-duration: 800ms;
  636. animation-timing-function: ease;
  637. animation-name: checkmark;
  638. transform: scaleX(-1) rotate(135deg);
  639. }
  640. .checkmark:after {
  641. opacity: 1;
  642. height: 8px;
  643. width: 4px;
  644. transform-origin: left top;
  645. border-right: 2px solid #ffffff;
  646. border-top: 2px solid #ffffff;
  647. content: '';
  648. left: 2px;
  649. top: 8px;
  650. position: absolute;
  651. }
  652. @keyframes loader-spin {
  653. 0% {
  654. transform: rotate(0deg);
  655. }
  656. 100% {
  657. transform: rotate(360deg);
  658. }
  659. }
  660. @keyframes checkmark {
  661. 0% {
  662. height: 0;
  663. width: 0;
  664. opacity: 1;
  665. }
  666. 20% {
  667. height: 0;
  668. width: 4px;
  669. opacity: 1;
  670. }
  671. 40% {
  672. height: 8px;
  673. width: 4px;
  674. opacity: 1;
  675. }
  676. 100% {
  677. height: 8px;
  678. width: 4px;
  679. opacity: 1;
  680. }
  681. }
  682. /*.spinningCircle {
  683. margin-left: 20px;
  684. height: 16px;
  685. width: 16px;
  686. border-radius: 50%;
  687. border: 2px solid rgba(255,255,255,0);
  688. border-top-color: #ffffff;
  689. border-right-color: #ffffff;
  690. border-left-color: rgba(255, 255, 255, 0.50);
  691. border-bottom-color: rgba(255, 255, 255, 0.50);
  692. animation: single2 4s infinite linear;
  693. }
  694. @keyframes single2 {
  695. 0% {
  696. transform: rotate(0deg);
  697. }
  698. 100% {
  699. transform: rotate(720deg);
  700. }
  701. }*/
  702. /* Disclaimer container. */
  703. #loginDisclaimer {
  704. display: flex;
  705. flex-direction: column;
  706. justify-content: center;
  707. align-items: center;
  708. }
  709. /* Add spacing between register anchor and disclaimer. */
  710. #loginRegisterSpan {
  711. margin-bottom: 5px;
  712. }
  713. /* Disclaimer text styles. */
  714. .loginDisclaimerText {
  715. font-size: 7px;
  716. color: #848484;
  717. font-weight: bold;
  718. text-align: center;
  719. }
  720. /* * *
  721. * Login View | Custom Checkbox
  722. * * */
  723. /* Checkbox container. */
  724. #checkmarkContainer {
  725. display: flex;
  726. justify-content: flex-end;
  727. align-items: center;
  728. position: relative;
  729. cursor: pointer;
  730. font-size: 22px;
  731. -webkit-user-select: none;
  732. }
  733. /* Hide the default checkbox. */
  734. #checkmarkContainer input {
  735. opacity: 0;
  736. cursor: pointer;
  737. position: absolute;
  738. }
  739. /* Create a custom checkbox. */
  740. .loginCheckmark {
  741. position: relative;
  742. height: 10px;
  743. width: 10px;
  744. border: 1px solid #848484;
  745. border-radius: 1px;
  746. background: none;
  747. transition: 0.25s ease;
  748. }
  749. /* On hover and focus, add a grey border color. */
  750. #checkmarkContainer:hover input ~ *,
  751. #checkmarkContainer input:focus ~ * {
  752. color: #a2a2a2;
  753. border-color: #a2a2a2;
  754. }
  755. /* On keydown, darken the checkbox a bit. */
  756. #checkmarkContainer input:active ~ *:not(#loginRememberText) {
  757. color: #8d8d8d;
  758. border-color: #8d8d8d;
  759. }
  760. #checkmarkContainer[disabled] {
  761. pointer-events: none;
  762. }
  763. /* For checked -> #checkmarkContainer input:checked ~ * */
  764. /* Create the checkmark/indicator (hidden when not checked). */
  765. .loginCheckmark:after {
  766. content: "";
  767. display: none;
  768. }
  769. /* Show the checkmark when checked. */
  770. #checkmarkContainer input:checked ~ .loginCheckmark:after {
  771. display: block;
  772. }
  773. /* Style the checkmark/indicator. */
  774. #checkmarkContainer .loginCheckmark:after {
  775. position: absolute;
  776. left: 3.5px;
  777. top: 0.5px;
  778. width: 2px;
  779. height: 6px;
  780. border: solid #a2a2a2;
  781. border-width: 0 2px 2px 0;
  782. transform: rotate(45deg);
  783. }
  784. /*
  785. #login_filter {
  786. height: calc(100% - 22px);
  787. width: 100%;
  788. z-index: 9000;
  789. position: absolute;
  790. filter: blur(8px) contrast(0.9) brightness(1.0);
  791. background: url('./../images/backgrounds/0.jpg') no-repeat center center fixed;
  792. transform: scale(1.2);
  793. background-size: cover;
  794. }
  795. */
  796. /*******************************************************************************
  797. * *
  798. * Settings View (sttings.ejs) *
  799. * *
  800. ******************************************************************************/
  801. /* Main settings container. */
  802. #settingsContainer {
  803. position: relative;
  804. height: 100%;
  805. display: flex;
  806. background-color: rgba(0, 0, 0, 0.50);
  807. transition: background-color 0.25s cubic-bezier(.02, .01, .47, 1);
  808. }
  809. /* Drop shadow displayed when content is scrolled out of view. */
  810. #settingsContainer:before {
  811. content: '';
  812. background: linear-gradient(rgba(0, 0, 0, 0.25), transparent);
  813. width: 100%;
  814. height: 5px;
  815. position: absolute;
  816. opacity: 0;
  817. transition: opacity 0.25s ease;
  818. }
  819. #settingsContainer[scrolled]:before {
  820. opacity: 1;
  821. }
  822. /* Left hand side of the settings UI, for navigation. */
  823. #settingsContainerLeft {
  824. padding-top: 4%;
  825. height: 100%;
  826. width: 25%;
  827. box-sizing: border-box;
  828. }
  829. /* Settings navigation container. */
  830. #settingsNavContainer {
  831. height: 100%;
  832. display: flex;
  833. flex-direction: column;
  834. }
  835. /* Navigation header styles. */
  836. #settingsNavHeader {
  837. height: 15%;
  838. display: flex;
  839. justify-content: center;
  840. }
  841. #settingsNavHeaderText {
  842. font-size: 20px;
  843. }
  844. /* Navigation items outer container. */
  845. #settingsNavItemsContainer {
  846. height: 85%;
  847. display: flex;
  848. justify-content: center;
  849. box-sizing: border-box;
  850. }
  851. /* Navigation items content container. */
  852. #settingsNavItemsContent {
  853. height: 100%;
  854. display: flex;
  855. flex-direction: column;
  856. position: relative;
  857. }
  858. /* Navigation item shared styles. */
  859. .settingsNavItem {
  860. background: none;
  861. border: none;
  862. text-align: left;
  863. margin: 5px 0px;
  864. padding: 0px 20px;
  865. color: grey;
  866. cursor: pointer;
  867. outline: none;
  868. transition: 0.25s ease;
  869. }
  870. .settingsNavItem:hover,
  871. .settingsNavItem:focus {
  872. color: #c1c1c1;
  873. text-shadow: 0px 0px 20px #c1c1c1;
  874. }
  875. .settingsNavItem[selected] {
  876. cursor: default;
  877. color: white;
  878. text-shadow: none;
  879. }
  880. /* Div to add some space between nav items. */
  881. .settingsNavSpacer {
  882. height: 25px;
  883. }
  884. /* Content container for the done button. */
  885. #settingsNavContentBottom {
  886. position: absolute;
  887. top: 65%;
  888. }
  889. /* Settings navigational divider. */
  890. .settingsNavDivider {
  891. width: 75%;
  892. height: 1px;
  893. background: rgba(126, 126, 126, 0.57);
  894. margin-left: auto;
  895. margin-bottom: 25px;
  896. }
  897. /* Settings done button styles. */
  898. #settingsNavDone {
  899. background: none;
  900. border: none;
  901. text-align: left;
  902. margin: 5px 0px;
  903. padding: 0px 20px;
  904. color: white;
  905. cursor: pointer;
  906. outline: none;
  907. transition: 0.25s ease;
  908. }
  909. #settingsNavDone:hover,
  910. #settingsNavDone:focus {
  911. text-shadow: 0px 0px 20px white, 0px 0px 20px white, 0px 0px 20px white;
  912. }
  913. #settingsNavDone:active {
  914. 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);
  915. color: rgba(255, 255, 255, 0.75);
  916. }
  917. #settingsNavDone:disabled {
  918. color: rgba(255, 255, 255, 0.75);
  919. pointer-events: none;
  920. }
  921. /* Right hand side of the settings container, for tabs. */
  922. #settingsContainerRight {
  923. height: 100%;
  924. width: 75%;
  925. box-sizing: border-box;
  926. }
  927. /* Settings tab shared styles. */
  928. .settingsTab {
  929. width: 100%;
  930. height: 100%;
  931. overflow-y: auto;
  932. }
  933. .settingsTab::-webkit-scrollbar {
  934. width: 2px;
  935. }
  936. .settingsTab::-webkit-scrollbar-track {
  937. display: none;
  938. }
  939. .settingsTab::-webkit-scrollbar-thumb {
  940. border-radius: 10px;
  941. box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.50);
  942. }
  943. /* Add spacing to the top of each settings tab. */
  944. .settingsTab > *:first-child {
  945. margin-top: 5%;
  946. }
  947. /* Add spacing to the bottom of each settings tab. */
  948. .settingsTab > *:last-child {
  949. margin-bottom: 20%;
  950. }
  951. /* Tab header shared styles. */
  952. .settingsTabHeader {
  953. display: flex;
  954. flex-direction: column;
  955. margin-bottom: 20px;
  956. }
  957. .settingsTabHeaderText {
  958. font-size: 20px;
  959. font-family: 'Avenir Medium';
  960. }
  961. .settingsTabHeaderDesc {
  962. font-size: 12px;
  963. }
  964. /* Remove spin button from number inputs. */
  965. #settingsContainer input[type=number]::-webkit-inner-spin-button {
  966. -webkit-appearance: none;
  967. }
  968. /* Default styles for text/number inputs. */
  969. #settingsContainer input[type=number],
  970. #settingsContainer input[type=text] {
  971. color: white;
  972. background: rgba(0, 0, 0, 0.25);
  973. border-radius: 3px;
  974. border: 1px solid rgba(126, 126, 126, 0.57);
  975. font-family: 'Avenir Book';
  976. transition: 0.25s ease;
  977. }
  978. #settingsContainer input[type=number]:focus,
  979. #settingsContainer input[type=text]:focus {
  980. outline: none;
  981. border-color: rgba(126, 126, 126, 0.87);
  982. }
  983. #settingsContainer input[type=number][error] {
  984. border-color: rgb(255, 27, 12);
  985. background: rgba(236, 0, 0, 0.25);
  986. color: rgb(255, 27, 12);
  987. }
  988. /* Styles for a generic settings entry. */
  989. .settingsFieldContainer {
  990. display: flex;
  991. align-items: center;
  992. justify-content: space-between;
  993. padding: 20px 0px;
  994. width: 75%;
  995. border-bottom: 1px solid rgba(255, 255, 255, 0.50);
  996. }
  997. .settingsFieldLeft {
  998. display: flex;
  999. flex-direction: column;
  1000. }
  1001. .settingsFieldTitle {
  1002. font-size: 14px;
  1003. font-family: 'Avenir Medium';
  1004. color: rgba(255, 255, 255, 0.95);
  1005. }
  1006. .settingsFieldDesc {
  1007. font-size: 12px;
  1008. color: rgba(255, 255, 255, .95);
  1009. margin-top: 5px;
  1010. }
  1011. .settingsDivider {
  1012. height: 1px;
  1013. width: 75%;
  1014. background: rgba(255, 255, 255, 0.25);
  1015. }
  1016. /* Toggle Switch */
  1017. .toggleSwitch {
  1018. position: relative;
  1019. display: inline-block;
  1020. width: 40px;
  1021. height: 20px;
  1022. border-radius: 50px;
  1023. box-sizing: border-box;
  1024. }
  1025. .toggleSwitch input {
  1026. display:none;
  1027. }
  1028. .toggleSwitchSlider {
  1029. position: absolute;
  1030. cursor: pointer;
  1031. top: 0;
  1032. left: 0;
  1033. right: 0;
  1034. bottom: 0;
  1035. background-color: rgba(255, 255, 255, 0.35);
  1036. transition: .4s;
  1037. border-radius: 50px;
  1038. border: 1px solid rgba(126, 126, 126, 0.57);
  1039. }
  1040. .toggleSwitchSlider:before {
  1041. position: absolute;
  1042. content: "";
  1043. height: 13px;
  1044. width: 16px;
  1045. left: 3px;
  1046. bottom: 3px;
  1047. background-color: white;
  1048. box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.75);
  1049. border-radius: 50px;
  1050. transition: .4s;
  1051. }
  1052. input:checked + .toggleSwitchSlider {
  1053. background-color: rgb(31, 140, 11);
  1054. /* box-shadow: inset 2px 1px 20px black; */
  1055. border: 1px solid rgb(31, 140, 11);
  1056. }
  1057. input:checked + .toggleSwitchSlider:before {
  1058. transform: translateX(15px);
  1059. }
  1060. /* Range Slider styles. */
  1061. .rangeSlider {
  1062. width: 35%;
  1063. height: 5px;
  1064. margin: 15px 0px;
  1065. background: grey;
  1066. border-radius: 3px;
  1067. position: relative;
  1068. }
  1069. .rangeSliderBar {
  1070. position: absolute;
  1071. background: #8be88b;
  1072. width: 50%;
  1073. height: 5px;
  1074. border-radius: 3px 0px 0px 3px;
  1075. transition: background 0.25s ease;
  1076. }
  1077. .rangeSliderTrack {
  1078. position: absolute;
  1079. top: -7.5px;
  1080. width: 7px;
  1081. height: 20px;
  1082. background: white;
  1083. border-radius: 3px;
  1084. left: 50%;
  1085. cursor: ew-resize;
  1086. }
  1087. /* File selectors */
  1088. /* Main container for File selectors. */
  1089. .settingsFileSelContainer {
  1090. display: flex;
  1091. flex-direction: column;
  1092. border-bottom: 1px solid rgba(255, 255, 255, 0.50);
  1093. margin-bottom: 20px;
  1094. margin-top: 20px;
  1095. width: 75%;
  1096. }
  1097. /* File selector title. */
  1098. .settingsFileSelTitle {
  1099. margin-bottom: 10px;
  1100. }
  1101. /* Wrapper container for the actionable elements. */
  1102. .settingsFileSelActions {
  1103. display: flex;
  1104. width: 90%;
  1105. }
  1106. /* File selector icon settings. */
  1107. .settingsFileSelIcon {
  1108. display: flex;
  1109. align-items: center;
  1110. background: rgba(126, 126, 126, 0.57);
  1111. border-radius: 3px 0px 0px 3px;
  1112. padding: 5px;
  1113. transition: 0.25s ease;
  1114. }
  1115. .settingsFileSelSVG {
  1116. width: 20px;
  1117. height: 20px;
  1118. fill: white;
  1119. }
  1120. /* Disabled text field which stores the selected file path. */
  1121. .settingsFileSelVal {
  1122. border-radius: 0px !important;
  1123. width: 100%;
  1124. padding: 5px 10px;
  1125. font-size: 12px;
  1126. height: 30px;
  1127. }
  1128. /* File selection button. */
  1129. .settingsFileSelButton {
  1130. border: 0px;
  1131. border-radius: 0px 3px 3px 0px;
  1132. font-size: 12px;
  1133. padding: 0px 5px;
  1134. cursor: pointer;
  1135. background: rgba(126, 126, 126, 0.57);
  1136. transition: 0.25s ease;
  1137. white-space: nowrap;
  1138. outline: none;
  1139. }
  1140. .settingsFileSelButton:hover,
  1141. .settingsFileSelButton:focus {
  1142. text-shadow: 0px 0px 20px white;
  1143. }
  1144. .settingsFileSelButton:active {
  1145. text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.75);
  1146. color: rgba(255, 255, 255, 0.75);
  1147. }
  1148. /* Description for the file selector. */
  1149. .settingsFileSelDesc {
  1150. font-size: 10px;
  1151. margin: 20px 0px;
  1152. color: lightgrey;
  1153. width: 89%;
  1154. }
  1155. .settingsFileSelDesc strong {
  1156. font-family: 'Avenir Medium';
  1157. }
  1158. /* * *
  1159. * Settings View (Account Tab)
  1160. * * */
  1161. /* Add account button styles. */
  1162. #settingsAddAccount {
  1163. background: rgba(0, 0, 0, 0.25);
  1164. border: 1px solid rgba(126, 126, 126, 0.57);
  1165. border-radius: 3px;
  1166. height: 50px;
  1167. width: 75%;
  1168. text-align: left;
  1169. padding: 0px 50px;
  1170. cursor: pointer;
  1171. outline: none;
  1172. transition: 0.25s ease;
  1173. }
  1174. #settingsAddAccount:hover,
  1175. #settingsAddAccount:focus {
  1176. background: rgba(54, 54, 54, 0.25);
  1177. text-shadow: 0px 0px 20px white;
  1178. }
  1179. /* Settings auth accounts header. */
  1180. #settingsCurrentAccountsHeader {
  1181. margin: 20px 0px;
  1182. }
  1183. /* Auth account list container styles. */
  1184. #settingsCurrentAccounts {
  1185. margin-bottom: 5%;
  1186. }
  1187. #settingsCurrentAccounts > .settingsAuthAccount:not(:last-child) {
  1188. margin-bottom: 10px;
  1189. }
  1190. #settingsCurrentAccounts > .settingsAuthAccount:not(:first-child) {
  1191. margin-top: 10px;
  1192. }
  1193. /* Auth account shared styles. */
  1194. .settingsAuthAccount {
  1195. display: flex;
  1196. width: 75%;
  1197. background: rgba(0, 0, 0, 0.25);
  1198. border-radius: 3px;
  1199. border: 1px solid rgba(126, 126, 126, 0.57);
  1200. }
  1201. /* Left hand side of an auth account element, for the skin image. */
  1202. .settingsAuthAccountLeft {
  1203. padding: 5px 5px 5px 20px;
  1204. }
  1205. /* Image of the auth account's skin. */
  1206. .settingsAuthAccountImage {
  1207. height: 115px;
  1208. }
  1209. /* Right hand side of the auth account, for info + actions. */
  1210. .settingsAuthAccountRight {
  1211. display: flex;
  1212. width: 100%;
  1213. }
  1214. /* Account details container. */
  1215. .settingsAuthAccountDetails {
  1216. display: flex;
  1217. flex-direction: column;
  1218. justify-content: center;
  1219. margin-left: 20px;
  1220. width: 100%;
  1221. }
  1222. .settingsAuthAccountDetails > *:not(:last-child) {
  1223. margin-bottom: 20px;
  1224. }
  1225. /* Account detail element styles. */
  1226. .settingsAuthAccountDetailPane {
  1227. display: flex;
  1228. flex-direction: column;
  1229. }
  1230. .settingsAuthAccountDetailTitle {
  1231. font-size: 12px;
  1232. color: grey;
  1233. font-weight: bold;
  1234. font-family: 'Avenir Medium';
  1235. }
  1236. .settingsAuthAccountDetailValue {
  1237. font-size: 14px;
  1238. -webkit-user-select: initial;
  1239. }
  1240. /* Account actions container. */
  1241. .settingsAuthAccountActions {
  1242. display: flex;
  1243. flex-direction: column;
  1244. justify-content: space-between;
  1245. align-items: flex-end;
  1246. padding: 10px;
  1247. }
  1248. /* Account select button shared styles. */
  1249. .settingsAuthAccountSelect {
  1250. opacity: 0;
  1251. border: none;
  1252. white-space: nowrap;
  1253. background: none;
  1254. font-family: 'Avenir Medium';
  1255. outline: none;
  1256. transition: 0.25s ease;
  1257. }
  1258. .settingsAuthAccountSelect:hover:not([selected]),
  1259. .settingsAuthAccountSelect:focus:not([selected]) {
  1260. text-shadow: 0px 0px 20px white, 0px 0px 20px white;
  1261. cursor: pointer;
  1262. }
  1263. .settingsAuthAccount:hover .settingsAuthAccountSelect:not([selected]),
  1264. .settingsAuthAccountSelect[selected] {
  1265. opacity: 1;
  1266. }
  1267. .settingsAuthAccountSelect[selected] {
  1268. pointer-events: none;
  1269. }
  1270. /* Account logout button shared styles. */
  1271. .settingsAuthAccountLogOut {
  1272. opacity: 0;
  1273. border: 1px solid rgb(241, 55, 55);
  1274. color: rgb(241, 55, 55);
  1275. background: none;
  1276. font-size: 12px;
  1277. border-radius: 3px;
  1278. font-family: 'Avenir Medium';
  1279. transition: 0.25s ease;
  1280. cursor: pointer;
  1281. outline: none;
  1282. }
  1283. .settingsAuthAccountLogOut:hover,
  1284. .settingsAuthAccountLogOut:focus {
  1285. box-shadow: 0px 0px 20px rgb(241, 55, 55);
  1286. background: rgba(241, 55, 55, 0.25);
  1287. }
  1288. .settingsAuthAccountLogOut:active {
  1289. box-shadow: 0px 0px 20px rgb(185, 47, 47);
  1290. background: rgba(185, 47, 47, 0.25);
  1291. border: 1px solid rgb(185, 47, 47);
  1292. color: rgb(185, 47, 47);
  1293. }
  1294. .settingsAuthAccount:hover .settingsAuthAccountLogOut {
  1295. opacity: 1;
  1296. }
  1297. /* * *
  1298. * Settings View (Minecraft Tab)
  1299. * * */
  1300. /* Game resolution UI elements. */
  1301. #settingsGameResolutionContainer {
  1302. display: flex;
  1303. flex-direction: column;
  1304. padding-bottom: 20px;
  1305. border-bottom: 1px solid rgba(255, 255, 255, 0.50);
  1306. width: 75%;
  1307. }
  1308. #settingsGameResolutionContent {
  1309. display: flex;
  1310. align-items: center;
  1311. padding-top: 10px;
  1312. }
  1313. #settingsGameResolutionCross {
  1314. color: grey;
  1315. padding: 0px 15px;
  1316. }
  1317. #settingsGameWidth,
  1318. #settingsGameHeight {
  1319. padding: 7.5px 5px;
  1320. width: 75px;
  1321. }
  1322. /* * *
  1323. * Settings View (Mods Tab)
  1324. * * */
  1325. /* Selected server content container */
  1326. #settingsSelServContainer {
  1327. background: rgba(0, 0, 0, 0.25);
  1328. width: 75%;
  1329. border-radius: 3px;
  1330. display: flex;
  1331. justify-content: space-between;
  1332. margin: 15px 0px;
  1333. }
  1334. /* Div which will be populated with the selected server's information. */
  1335. #settingsSelServContent {
  1336. display: flex;
  1337. align-items: center;
  1338. justify-content: flex-start;
  1339. padding: 5px 0px;
  1340. }
  1341. /* Wrapper container for the switch server button. */
  1342. #settingsSwitchServerContainer {
  1343. display: flex;
  1344. align-items: center;
  1345. padding: 15px;
  1346. }
  1347. /* Button to switch server configurations on the mods tab. */
  1348. #settingsSwitchServerButton {
  1349. opacity: 0;
  1350. border: 1px solid rgb(255, 255, 255);
  1351. color: rgb(255, 255, 255);
  1352. background: none;
  1353. font-size: 12px;
  1354. border-radius: 3px;
  1355. font-family: 'Avenir Medium';
  1356. transition: 0.25s ease;
  1357. cursor: pointer;
  1358. outline: none;
  1359. }
  1360. #settingsSwitchServerButton:hover,
  1361. #settingsSwitchServerButton:focus {
  1362. box-shadow: 0px 0px 20px rgb(255, 255, 255);
  1363. background: rgba(255, 255, 255, 0.25);
  1364. }
  1365. #settingsSwitchServerButton:active {
  1366. box-shadow: 0px 0px 20px rgb(187, 187, 187);
  1367. background: rgba(187, 187, 187, 0.25);
  1368. border: 1px solid rgb(187, 187, 187);
  1369. color: rgb(187, 187, 187);
  1370. }
  1371. #settingsSelServContainer:hover #settingsSwitchServerButton {
  1372. opacity: 1;
  1373. }
  1374. /* Main content container for the mod elements. */
  1375. #settingsModsContainer {
  1376. width: 75%;
  1377. }
  1378. /* Mod sub-container header text. */
  1379. .settingsModsHeader {
  1380. padding-bottom: 10px;
  1381. border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  1382. margin-bottom: 10px;
  1383. }
  1384. /* Mod elements sub-containers. */
  1385. #settingsReqModsContainer,
  1386. #settingsOptModsContainer,
  1387. #settingsDropinModsContainer {
  1388. padding-bottom: 25px;
  1389. }
  1390. /* Main content containers for mod elements. */
  1391. #settingsReqModsContent,
  1392. #settingsOptModsContent,
  1393. #settingsDropinModsContent {
  1394. font-size: 12px;
  1395. background: rgba(0, 0, 0, 0.25);
  1396. border-radius: 3px;
  1397. color: white;
  1398. }
  1399. /* Mod elements. */
  1400. .settingsMod,
  1401. .settingsDropinMod {
  1402. padding: 10px;
  1403. }
  1404. .settingsSubMod {
  1405. padding: 10px 0px 10px 15px;
  1406. margin-left: 20px;
  1407. border-left: 1px solid rgba(255, 255, 255, 0.5);
  1408. }
  1409. /* Main content container for mod element information. */
  1410. .settingsModContent {
  1411. display: flex;
  1412. align-items: center;
  1413. justify-content: space-between;
  1414. transition: opacity 0.25s ease;
  1415. }
  1416. /* Wrapper container for the left side of a mod element. */
  1417. .settingsModMainWrapper {
  1418. display: flex;
  1419. align-items: center;
  1420. }
  1421. /* Mod enabled/disabled status. */
  1422. .settingsModStatus {
  1423. width: 7px;
  1424. height: 7px;
  1425. border-radius: 50%;
  1426. background-color: #c32625;
  1427. margin-right: 15px;
  1428. transition: 0.25s ease;
  1429. }
  1430. /* Mod details container. */
  1431. .settingsModDetails {
  1432. display: flex;
  1433. flex-direction: column;
  1434. }
  1435. /* The version of the mod. */
  1436. .settingsModVersion {
  1437. color: grey;
  1438. font-size: 10px;
  1439. }
  1440. /* Disabled toggleswitch for required mods. */
  1441. .toggleSwitch[reqmod] {
  1442. filter: grayscale(49%) brightness(60%);
  1443. pointer-events: none;
  1444. }
  1445. /* Set the status color of an enabled mod. */
  1446. .settingsBaseMod[enabled] > .settingsModContent > .settingsModMainWrapper > .settingsModStatus {
  1447. background-color: rgb(165, 195, 37);
  1448. }
  1449. /* Add opacity to submods of a disabled mod. */
  1450. .settingsBaseMod:not([enabled]) > .settingsSubModContainer .settingsModContent {
  1451. opacity: 0.5;
  1452. }
  1453. /* Curve the left border for submods. */
  1454. .settingsSubModContainer > .settingsSubMod:first-child {
  1455. border-top-left-radius: 10px;
  1456. }
  1457. .settingsSubModContainer > .settingsSubMod:last-child {
  1458. border-bottom-left-radius: 10px;
  1459. }
  1460. .settingsSubModContainer > .settingsSubMod:only-child {
  1461. border-top-left-radius: 10px;
  1462. border-bottom-left-radius: 10px;
  1463. }
  1464. /* Wrapper container for all submods. */
  1465. .settingsSubModContainer {
  1466. margin-top: 10px;
  1467. }
  1468. /* Button to open the mods folder for drop-in mods. */
  1469. #settingsDropinFileSystemButton {
  1470. background: rgba(0, 0, 0, 0.25);
  1471. border: 1px solid rgba(126, 126, 126, 0.57);
  1472. border-radius: 3px;
  1473. height: 50px;
  1474. width: 100%;
  1475. text-align: left;
  1476. padding: 0px 50px;
  1477. cursor: pointer;
  1478. outline: none;
  1479. transition: 0.25s ease;
  1480. margin-bottom: 10px;
  1481. }
  1482. #settingsDropinFileSystemButton:hover,
  1483. #settingsDropinFileSystemButton:focus,
  1484. #settingsDropinFileSystemButton[drag] {
  1485. background: rgba(54, 54, 54, 0.25);
  1486. text-shadow: 0px 0px 20px white;
  1487. }
  1488. /* Refresh instructions on the file system button. */
  1489. #settingsDropinRefreshNote {
  1490. font-size: 10px;
  1491. pointer-events: none;
  1492. }
  1493. /* Button to remove drop-in mods. */
  1494. .settingsDropinRemoveButton {
  1495. background: none;
  1496. border: none;
  1497. font-size: 10px;
  1498. text-align: left;
  1499. padding: 0px;
  1500. color: #c32625;
  1501. font-weight: bold;
  1502. cursor: pointer;
  1503. outline: none;
  1504. transition: 0.25s ease;
  1505. }
  1506. .settingsDropinRemoveButton:hover,
  1507. .settingsDropinRemoveButton:focus {
  1508. text-shadow: 0px 0px 20px #c32625, 0px 0px 20px #c32625, 0px 0px 20px #c32625;
  1509. }
  1510. .settingsDropinRemoveButton:active {
  1511. color: #9b1f1f;
  1512. text-shadow: 0px 0px 20px #9b1f1f, 0px 0px 20px #9b1f1f, 0px 0px 20px #9b1f1f;
  1513. }
  1514. /* Shaderpack settings description. */
  1515. #settingsShaderpackDesc {
  1516. font-size: 10px;
  1517. margin: 10px 0px;
  1518. color: lightgrey;
  1519. font-weight: bold;
  1520. width: 89%;
  1521. }
  1522. /* Wrapper container. */
  1523. #settingsShaderpackWrapper {
  1524. display: flex;
  1525. }
  1526. /* Button to add shaderpacks. */
  1527. #settingsShaderpackButton {
  1528. background: rgba(0, 0, 0, 0.25);
  1529. border: 1px solid rgba(126, 126, 126, 0.57);
  1530. border-radius: 3px;
  1531. cursor: pointer;
  1532. outline: none;
  1533. transition: 0.25s ease;
  1534. font-size: 14px;
  1535. padding: 6px 11px;
  1536. margin-right: 5px;
  1537. }
  1538. #settingsShaderpackButton:hover,
  1539. #settingsShaderpackButton:focus,
  1540. #settingsShaderpackButton[drag] {
  1541. background: rgba(54, 54, 54, 0.25);
  1542. text-shadow: 0px 0px 20px white;
  1543. }
  1544. /* Main select container. */
  1545. .settingsSelectContainer {
  1546. position: relative;
  1547. width: 50%;
  1548. }
  1549. /* Div which displays the selected option. */
  1550. .settingsSelectSelected {
  1551. border-radius: 3px;
  1552. border-width: 1px;
  1553. font-size: 14px;
  1554. padding: 6px 16px;
  1555. }
  1556. /* Style the arrow inside the select element. */
  1557. .settingsSelectSelected:after {
  1558. position: absolute;
  1559. content: "";
  1560. top: calc(50% - 3px);
  1561. right: 10px;
  1562. width: 0;
  1563. height: 0;
  1564. border: 6px solid transparent;
  1565. border-color: rgba(126, 126, 126, 0.57) transparent transparent transparent;
  1566. }
  1567. /* Point the arrow upwards when the select box is open (active). */
  1568. .settingsSelectSelected.select-arrow-active:after {
  1569. border-color: transparent transparent rgba(126, 126, 126, 0.57) transparent;
  1570. top: 7px;
  1571. }
  1572. .settingsSelectSelected.select-arrow-active {
  1573. border-radius: 3px 3px 0px 0px;
  1574. }
  1575. /* Options content container. */
  1576. .settingsSelectOptions {
  1577. position: absolute;
  1578. top: 100%;
  1579. left: 0;
  1580. right: 0;
  1581. z-index: 99;
  1582. max-height: 300%;
  1583. overflow-y: scroll;
  1584. border: 1px solid rgba(126, 126, 126, 0.57);
  1585. border-top: none;
  1586. border-radius: 0px 0px 3px 3px;
  1587. }
  1588. /* Hide the items when the select box is closed. */
  1589. .settingsSelectOptions[hidden] {
  1590. display: none;
  1591. }
  1592. .settingsSelectOptions::-webkit-scrollbar {
  1593. width: 2px;
  1594. }
  1595. .settingsSelectOptions::-webkit-scrollbar-track {
  1596. display: none;
  1597. }
  1598. .settingsSelectOptions::-webkit-scrollbar-thumb {
  1599. border-radius: 10px;
  1600. box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.50);
  1601. }
  1602. /* Shared styles between options and selection div. */
  1603. .settingsSelectOptions div,
  1604. .settingsSelectSelected {
  1605. background: rgba(0, 0, 0, 0.25);
  1606. border-style: solid;
  1607. border-color: rgba(126, 126, 126, 0.57);
  1608. color: #ffffff;
  1609. cursor: pointer;
  1610. }
  1611. .settingsSelectOptions div {
  1612. border-width: 0px 0px 1px 0px;
  1613. font-size: 12px;
  1614. padding: 4px 16px;
  1615. }
  1616. .settingsSelectOptions div:last-child {
  1617. border-bottom: none;
  1618. }
  1619. /* Hover + selected styles. */
  1620. .settingsSelectOptions div:hover, .settingsSelectOptions div[selected] {
  1621. background-color: rgba(255, 255, 255, 0.25) !important;
  1622. }
  1623. /* * *
  1624. * Settings View (Java Tab)
  1625. * * */
  1626. /* Style links on the Java tab. */
  1627. #settingsTabJava a,
  1628. .settingsChangelogText a {
  1629. color: rgba(202, 202, 202, 0.75);
  1630. transition: 0.25s ease;
  1631. outline: none;
  1632. }
  1633. #settingsTabJava a:hover,
  1634. #settingsTabJava a:focus,
  1635. .settingsChangelogText a:hover,
  1636. .settingsChangelogText a:focus {
  1637. color: rgba(255, 255, 255, 0.75);
  1638. }
  1639. #settingsTabJava a:active,
  1640. .settingsChangelogText a:active {
  1641. color: rgba(165, 165, 165, 0.75);
  1642. }
  1643. /* Main container for memory management. */
  1644. #settingsMemoryContainer {
  1645. width: 75%;
  1646. display: flex;
  1647. flex-direction: column;
  1648. border-bottom: 1px solid rgba(255, 255, 255, 0.50);
  1649. margin-bottom: 20px;
  1650. }
  1651. /* Memory management title. */
  1652. #settingsMemoryTitle {
  1653. margin-bottom: 10px;
  1654. padding-bottom: 5px;
  1655. border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  1656. }
  1657. /* Memory management content. */
  1658. #settingsMemoryContent {
  1659. display: flex;
  1660. justify-content: space-between;
  1661. width: 100%;
  1662. }
  1663. #settingsMemoryContentLeft {
  1664. width: 69%;
  1665. }
  1666. #settingsMemoryContentRight {
  1667. display: flex;
  1668. align-items: center;
  1669. margin-right: 10%;
  1670. }
  1671. /* Header for memory sliders. */
  1672. .settingsMemoryHeader {
  1673. font-size: 14px;
  1674. }
  1675. /* Wrapper container for a memory slider and label. */
  1676. .settingsMemoryActionContainer {
  1677. display: flex;
  1678. align-items: center;
  1679. justify-content: space-between;
  1680. }
  1681. /* Label which displays a memory slider's value. */
  1682. .settingsMemoryLabel {
  1683. font-size: 14px;
  1684. margin-right: 2%;
  1685. }
  1686. /* Range sliders for min and max memory settings. */
  1687. #settingsMaxRAMRange,
  1688. #settingsMinRAMRange {
  1689. width: 85%;
  1690. }
  1691. /* Memory status elements. */
  1692. #settingsMemoryStatus {
  1693. display: flex;
  1694. flex-direction: column;
  1695. }
  1696. #settingsMemoryStatus > .settingsMemoryStatusContainer:not(:last-child){
  1697. margin-bottom: 50%;
  1698. }
  1699. .settingsMemoryStatusContainer {
  1700. display: flex;
  1701. flex-direction: column;
  1702. align-items: center;
  1703. }
  1704. .settingsMemoryStatusTitle {
  1705. font-size: 12px;
  1706. color: grey;
  1707. font-weight: bold;
  1708. }
  1709. .settingsMemoryStatusValue {
  1710. color: lightgrey;
  1711. font-size: 16px;
  1712. }
  1713. /* Description for memory management. */
  1714. #settingsMemoryDesc {
  1715. font-size: 10px;
  1716. margin: 20px 0px;
  1717. color: lightgrey;
  1718. font-weight: bold;
  1719. }
  1720. /* Status text which displays details on the selected executable. */
  1721. #settingsJavaExecDetails {
  1722. font-weight: bold;
  1723. color: grey;
  1724. font-size: 12px;
  1725. }
  1726. /* Main container for the JVM options setting. */
  1727. #settingsJVMOptsContainer {
  1728. width: 75%;
  1729. }
  1730. /* JVM options title. */
  1731. #settingsJVMOptsTitle {
  1732. margin-bottom: 10px;
  1733. }
  1734. /* Wrapper container for the actionable elements. */
  1735. #settingsJVMOptsContent {
  1736. display: flex;
  1737. width: 90%;
  1738. }
  1739. /* Text field to input the JVM options. */
  1740. #settingsJVMOptsVal {
  1741. border-radius: 0px 3px 3px 0px !important;
  1742. width: 100%;
  1743. padding: 5px 10px;
  1744. font-size: 12px;
  1745. }
  1746. #settingsJVMOptsContent:focus-within > .settingsJavaIcon {
  1747. background: rgba(126, 126, 126, 0.87);
  1748. }
  1749. /* Description for the JVM options setting. */
  1750. #settingsJVMOptsDesc {
  1751. font-size: 10px;
  1752. margin: 20px 0px;
  1753. color: lightgrey;
  1754. font-weight: bold;
  1755. width: 89%;
  1756. }
  1757. /* * *
  1758. * Settings View (Launcher Tab)
  1759. * * */
  1760. /* Tailored style for the data directory header. */
  1761. #settingsDataDirTitle {
  1762. margin-bottom: 10px;
  1763. }
  1764. /* * *
  1765. * Settings View (About Tab)
  1766. * * */
  1767. /* Main about content container. */
  1768. #settingsAboutCurrentContainer {
  1769. display: flex;
  1770. flex-direction: column;
  1771. background: rgba(0, 0, 0, 0.25);
  1772. border: 1px solid rgba(126, 126, 126, 0.57);
  1773. border-radius: 3px;
  1774. width: 75%;
  1775. margin-bottom: 20px;
  1776. }
  1777. /* About content. */
  1778. #settingsAboutCurrentContent {
  1779. display: flex;
  1780. flex-direction: column;
  1781. padding: 15px;
  1782. }
  1783. /* About header elements. */
  1784. #settingsAboutCurrentHeadline {
  1785. display: flex;
  1786. align-items: center;
  1787. padding-bottom: 5px;
  1788. border-bottom: 1px solid rgba(126, 126, 126, 0.57);
  1789. }
  1790. #settingsAboutLogo {
  1791. width: 30px;
  1792. height: 30px;
  1793. padding: 5px;
  1794. }
  1795. #settingsAboutTitle {
  1796. font-size: 23px;
  1797. padding-left: 10px;
  1798. }
  1799. /* Current version container. */
  1800. #settingsAboutCurrentVersion {
  1801. display: flex;
  1802. align-items: center;
  1803. padding-top: 10px;
  1804. }
  1805. /* Checkmark next to the version information. */
  1806. #settingsAboutCurrentVersionCheck {
  1807. border-radius: 50%;
  1808. background: #23aa23;
  1809. text-align: center;
  1810. font-weight: bold;
  1811. margin: 11px 12px;
  1812. color: white;
  1813. height: 15px;
  1814. width: 15px;
  1815. font-size: 12px;
  1816. line-height: 17px;
  1817. }
  1818. /* Current version details container. */
  1819. #settingsAboutCurrentVersionDetails {
  1820. margin-left: 10px;
  1821. }
  1822. /* Release type text. */
  1823. #settingsAboutCurrentVersionTitle {
  1824. font-size: 12px;
  1825. font-family: 'Avenir Medium';
  1826. color: #23aa23;
  1827. font-weight: bold;
  1828. }
  1829. /* Current version text. */
  1830. #settingsAboutCurrentVersionLine {
  1831. font-size: 10px;
  1832. color: grey;
  1833. font-weight: bold;
  1834. }
  1835. /* About information links. */
  1836. #settingsAboutButtons {
  1837. display: flex;
  1838. padding: 0px 15px;
  1839. margin-bottom: 5px;
  1840. }
  1841. .settingsAboutButton {
  1842. background: none;
  1843. border: none;
  1844. font-size: 10px;
  1845. color: grey;
  1846. padding: 0px 5px;
  1847. transition: 0.25s ease;
  1848. outline: none;
  1849. text-decoration: none;
  1850. }
  1851. .settingsAboutButton:hover,
  1852. .settingsAboutButton:focus {
  1853. color: rgb(165, 165, 165);
  1854. }
  1855. .settingsAboutButton:active {
  1856. color: rgba(124, 124, 124, 0.75);
  1857. }
  1858. /* Main changelog container. */
  1859. .settingsChangelogContainer {
  1860. display: flex;
  1861. flex-direction: column;
  1862. background: rgba(0, 0, 0, 0.25);
  1863. border: 1px solid rgba(126, 126, 126, 0.57);
  1864. border-radius: 3px;
  1865. width: 75%;
  1866. margin-bottom: 20px;
  1867. }
  1868. /* Changelog content container. */
  1869. .settingsChangelogContent {
  1870. display: flex;
  1871. flex-direction: column;
  1872. padding: 15px;
  1873. }
  1874. /* Changelog header container. */
  1875. .settingsChangelogHeadline {
  1876. padding-bottom: 10px;
  1877. margin-bottom: 10px;
  1878. border-bottom: 1px solid rgba(126, 126, 126, 0.57);
  1879. }
  1880. /* Changelog header label. */
  1881. .settingsChangelogLabel {
  1882. font-size: 12px;
  1883. color: grey;
  1884. font-weight: bold;
  1885. }
  1886. /* Changelog text content container. */
  1887. .settingsChangelogText {
  1888. font-size: 12px;
  1889. }
  1890. /* Styles for the changelog elements. */
  1891. .settingsChangelogText p {
  1892. margin-bottom: 16px;
  1893. line-height: 1.5;
  1894. }
  1895. .settingsChangelogText blockquote {
  1896. border-left: 0.25em solid rgba(126, 126, 126, 0.95);
  1897. margin: 0px;
  1898. padding: 0 0 0 1em;
  1899. color: rgba(255, 255, 255, 0.85);
  1900. }
  1901. .settingsChangelogText code {
  1902. padding: 0.1em 0.4em;
  1903. font-size: 85%;
  1904. background-color: rgba(255, 255, 255, 0.25);
  1905. color: white;
  1906. border-radius: 3px;
  1907. font-family: 'Avenir Book';
  1908. }
  1909. .settingsChangelogText li+li {
  1910. margin-top: .25em;
  1911. }
  1912. .settingsChangelogText a.commit-link {
  1913. font-weight: 400;
  1914. color: #ffffff;
  1915. text-decoration: none;
  1916. }
  1917. .settingsChangelogText a.commit-link:hover {
  1918. text-decoration: underline !important;
  1919. text-decoration-color: black;
  1920. }
  1921. .settingsChangelogText tt {
  1922. padding: 0.1em 0.4em;
  1923. font-size: 86%;
  1924. background-color: white;
  1925. border-radius: 3px;
  1926. color: black;
  1927. font-weight: bold;
  1928. }
  1929. .settingsChangelogText a.commit-link:hover tt {
  1930. text-decoration: underline;
  1931. text-decoration-color: black;
  1932. }
  1933. .settingsChangelogText .highlight {
  1934. background: rgba(0, 0, 0, 0.30);
  1935. user-select: initial;
  1936. padding: 5px 10px;
  1937. }
  1938. .settingsChangelogText .highlight pre {
  1939. margin: 0px;
  1940. }
  1941. /* Container for the changelog button. */
  1942. .settingsChangelogActions {
  1943. padding: 0px 15px 5px 15px;
  1944. }
  1945. /* Open changelog on GitHub. */
  1946. .settingsChangelogButton {
  1947. padding: 0px;
  1948. }
  1949. /* * *
  1950. * Settings View (Updates Tab)
  1951. * * */
  1952. /* Main about content container. */
  1953. #settingsUpdateStatusContainer {
  1954. display: flex;
  1955. flex-direction: column;
  1956. background: rgba(0, 0, 0, 0.25);
  1957. border: 1px solid rgba(126, 126, 126, 0.57);
  1958. border-radius: 3px;
  1959. width: 75%;
  1960. margin-bottom: 20px;
  1961. }
  1962. /* Update content. */
  1963. #settingsUpdateStatusContent {
  1964. display: flex;
  1965. flex-direction: column;
  1966. padding: 15px;
  1967. }
  1968. /* Update header elements. */
  1969. #settingsUpdateStatusHeadline {
  1970. display: flex;
  1971. align-items: center;
  1972. padding-bottom: 5px;
  1973. border-bottom: 1px solid rgba(126, 126, 126, 0.57);
  1974. }
  1975. #settingsUpdateTitle {
  1976. font-size: 16px;
  1977. padding-left: 10px;
  1978. font-weight: bold;
  1979. }
  1980. /* Update version container. */
  1981. #settingsUpdateVersion {
  1982. display: flex;
  1983. align-items: center;
  1984. padding: 10px 0px;
  1985. border-bottom: 1px solid rgba(126, 126, 126, 0.57);
  1986. }
  1987. /* Checkmark next to the version information. */
  1988. #settingsUpdateVersionCheck {
  1989. border-radius: 50%;
  1990. background: #23aa23;
  1991. text-align: center;
  1992. font-weight: bold;
  1993. margin: 11px 12px;
  1994. color: white;
  1995. height: 15px;
  1996. width: 15px;
  1997. font-size: 12px;
  1998. line-height: 17px;
  1999. }
  2000. /* Update version details container. */
  2001. #settingsUpdateVersionDetails {
  2002. margin-left: 10px;
  2003. }
  2004. /* Release type text. */
  2005. #settingsUpdateVersionTitle {
  2006. font-size: 12px;
  2007. font-family: 'Avenir Medium';
  2008. color: #23aa23;
  2009. font-weight: bold;
  2010. }
  2011. /* Current version text. */
  2012. #settingsUpdateVersionLine {
  2013. font-size: 10px;
  2014. color: grey;
  2015. font-weight: bold;
  2016. }
  2017. /* Update action container. */
  2018. #settingsUpdateActionContainer {
  2019. padding-top: 10px;
  2020. font-size: 14px;
  2021. font-weight: bold;
  2022. }
  2023. /* Update action button styles. */
  2024. #settingsUpdateActionButton {
  2025. display: flex;
  2026. flex-direction: column;
  2027. padding-left: 10px;
  2028. background: none;
  2029. border: none;
  2030. font-size: 14px;
  2031. font-weight: bold;
  2032. cursor: pointer;
  2033. outline: none;
  2034. text-align: left;
  2035. transition: 0.25s ease;
  2036. }
  2037. #settingsUpdateActionButton:hover,
  2038. #settingsUpdateActionButton:focus {
  2039. text-shadow: 0px 0px 20px white, 0px 0px 20px white, 0px 0px 20px white;
  2040. }
  2041. #settingsUpdateActionButton:active {
  2042. text-shadow: 0px 0px 20px #c7c7c7, 0px 0px 20px #c7c7c7, 0px 0px 20px #c7c7c7;
  2043. color: #c7c7c7;
  2044. }
  2045. #settingsUpdateActionButton:disabled {
  2046. pointer-events: none;
  2047. }
  2048. /*******************************************************************************
  2049. * *
  2050. * Landing View (Structural Styles) *
  2051. * *
  2052. ******************************************************************************/
  2053. /* Main content container. */
  2054. #landingContainer {
  2055. height: 100%;
  2056. position: relative;
  2057. transition: background 2s ease;
  2058. overflow-y: hidden;
  2059. }
  2060. /* Upper content container. */
  2061. #landingContainer > #upper {
  2062. position: relative;
  2063. transition: top 2s ease;
  2064. top: 0px;
  2065. height: 77%;
  2066. display: flex;
  2067. }
  2068. #landingContainer > #upper > #left {
  2069. display: inline-flex;
  2070. width: 15%;
  2071. height: 100%;
  2072. justify-content: flex-end;
  2073. }
  2074. #landingContainer > #upper > #content {
  2075. display: inline-flex;
  2076. width: 70%;
  2077. height: 100%;
  2078. }
  2079. #landingContainer > #upper > #right {
  2080. display: inline-flex;
  2081. width: 15%;
  2082. height: 100%;
  2083. }
  2084. /* Lower content container. */
  2085. #landingContainer > #lower {
  2086. height: 23%;
  2087. display: flex;
  2088. background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  2089. }
  2090. #landingContainer > #lower > #left {
  2091. position: relative;
  2092. transition: top 2s ease;
  2093. top: 0px;
  2094. height: 100%;
  2095. width: 33%;
  2096. display: inline-flex;
  2097. justify-content: center;
  2098. }
  2099. #landingContainer > #lower > #left #content {
  2100. position: relative;
  2101. top: 25px;
  2102. display: inline-flex;
  2103. line-height: 24px;
  2104. left: 50px;
  2105. }
  2106. #landingContainer > #lower > #center {
  2107. position: relative;
  2108. transition: top 2s ease;
  2109. top: 0px;
  2110. height: 100%;
  2111. width: 34%;
  2112. display: inline-flex;
  2113. justify-content: center;
  2114. }
  2115. #landingContainer > #lower > #center #content {
  2116. position: relative;
  2117. z-index: 500;
  2118. transition: top 2s ease;
  2119. top: 10px;
  2120. }
  2121. #landingContainer > #lower > #right {
  2122. position: relative;
  2123. transition: top 2s ease;
  2124. top: 0px;
  2125. height: 100%;
  2126. width: 33%;
  2127. display: inline-flex;
  2128. }
  2129. /*******************************************************************************
  2130. * *
  2131. * Landing View (News Styles) *
  2132. * *
  2133. ******************************************************************************/
  2134. /* Main container. */
  2135. #newsContainer {
  2136. position: absolute;
  2137. top: 100%;
  2138. height: 100%;
  2139. width: 100%;
  2140. transition: top 2s ease;
  2141. display: flex;
  2142. align-items: flex-end;
  2143. justify-content: center;
  2144. }
  2145. /* News content container. */
  2146. #newsContent {
  2147. height: 82vh;
  2148. width: 100%;
  2149. display: flex;
  2150. -webkit-user-select: initial;
  2151. position: relative;
  2152. }
  2153. /* Drop shadow displayed when content is scrolled out of view. */
  2154. #newsContent:before {
  2155. content: '';
  2156. background: linear-gradient(rgba(0, 0, 0, 0.25), transparent);
  2157. width: 100%;
  2158. height: 5px;
  2159. position: absolute;
  2160. opacity: 0;
  2161. transition: opacity 0.25s ease;
  2162. }
  2163. #newsContent[scrolled]:before {
  2164. opacity: 1;
  2165. }
  2166. /* News article status container (left). */
  2167. #newsStatusContainer {
  2168. width: calc(30% - 60px);
  2169. height: calc(100% - 30px);
  2170. padding: 15px 15px 15px 45px;
  2171. display: flex;
  2172. flex-direction: column;
  2173. justify-content: space-between;
  2174. position: relative;
  2175. }
  2176. /* News status content. */
  2177. #newsStatusContent {
  2178. display: flex;
  2179. flex-direction: column;
  2180. align-items: flex-end;
  2181. }
  2182. /* News title wrapper. */
  2183. #newsTitleContainer {
  2184. display: flex;
  2185. max-width: 90%;
  2186. }
  2187. /* News article title styles. */
  2188. #newsArticleTitle {
  2189. font-size: 18px;
  2190. font-weight: bold;
  2191. font-family: 'Avenir Medium';
  2192. color: white;
  2193. text-decoration: none;
  2194. transition: 0.25s ease;
  2195. outline: none;
  2196. text-align: right;
  2197. }
  2198. #newsArticleTitle:hover,
  2199. #newsArticleTitle:focus {
  2200. text-shadow: 0px 0px 20px white;
  2201. }
  2202. #newsArticleTitle:active {
  2203. color: #c7c7c7;
  2204. text-shadow: 0px 0px 20px #c7c7c7;
  2205. }
  2206. /* News meta container. */
  2207. #newsMetaContainer {
  2208. display: flex;
  2209. flex-direction: column;
  2210. }
  2211. /* Date and author wrappers. */
  2212. #newsArticleDateWrapper,
  2213. #newsArticleAuthorWrapper {
  2214. display: flex;
  2215. justify-content: flex-end;
  2216. }
  2217. /* Date and author shared styles. */
  2218. #newsArticleDate,
  2219. #newsArticleAuthor {
  2220. display: inline-block;
  2221. font-size: 10px;
  2222. padding: 0px 5px;
  2223. font-weight: bold;
  2224. border-radius: 2px;
  2225. }
  2226. /* Date styles. */
  2227. #newsArticleDate {
  2228. background: white;
  2229. color: black;
  2230. margin-top: 5px;
  2231. }
  2232. /* Author styles. */
  2233. #newsArticleAuthor {
  2234. background: #a02d2a;
  2235. }
  2236. /* News article comments styles. */
  2237. #newsArticleComments {
  2238. margin-top: 5px;
  2239. display: inline-block;
  2240. font-size: 10px;
  2241. color: #ffffff;
  2242. text-decoration: none;
  2243. transition: 0.25s ease;
  2244. outline: none;
  2245. text-align: right;
  2246. }
  2247. #newsArticleComments:focus,
  2248. #newsArticleComments:hover {
  2249. color: #e0e0e0;
  2250. }
  2251. #newsArticleComments:active {
  2252. color: #c7c7c7;
  2253. }
  2254. /* Article content container (right). */
  2255. #newsArticleContainer {
  2256. width: calc(100% - 25px);
  2257. height: 100%;
  2258. margin: 0px 0px 0px 25px;
  2259. }
  2260. /* Article content styles. */
  2261. #newsArticleContentScrollable {
  2262. font-size: 12px;
  2263. overflow-y: scroll;
  2264. height: 100%;
  2265. padding: 0px 15px 0px 15px;
  2266. }
  2267. #newsArticleContentScrollable img,
  2268. #newsArticleContentScrollable iframe {
  2269. max-width: 95%;
  2270. display: block;
  2271. margin: 0 auto;
  2272. }
  2273. #newsArticleContentScrollable a {
  2274. color: rgba(202, 202, 202, 0.75);
  2275. transition: 0.25s ease;
  2276. outline: none;
  2277. }
  2278. #newsArticleContentScrollable a:hover,
  2279. #newsArticleContentScrollable a:focus {
  2280. color: rgba(255, 255, 255, 0.75);
  2281. }
  2282. #newsArticleContentScrollable a:active {
  2283. color: rgba(165, 165, 165, 0.75);
  2284. }
  2285. #newsArticleContentScrollable::-webkit-scrollbar {
  2286. width: 2px;
  2287. }
  2288. #newsArticleContentScrollable::-webkit-scrollbar-track {
  2289. display: none;
  2290. }
  2291. #newsArticleContentScrollable::-webkit-scrollbar-thumb {
  2292. border-radius: 10px;
  2293. box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.50);
  2294. }
  2295. .bbCodeSpoilerButton {
  2296. background: none;
  2297. border: none;
  2298. outline: none;
  2299. cursor: pointer;
  2300. font-size: 16px;
  2301. transition: 0.25s ease;
  2302. width: 100%;
  2303. border-bottom: 1px solid white;
  2304. padding-bottom: 15px;
  2305. }
  2306. .bbCodeSpoilerButton:hover,
  2307. .bbCodeSpoilerButton:focus {
  2308. text-shadow: 0px 0px 20px #ffffff, 0px 0px 20px #ffffff, 0px 0px 20px #ffffff;
  2309. }
  2310. .bbCodeSpoilerButton:active {
  2311. color: #c7c7c7;
  2312. text-shadow: 0px 0px 20px #c7c7c7, 0px 0px 20px #c7c7c7, 0px 0px 20px #c7c7c7;
  2313. }
  2314. .bbCodeSpoilerText {
  2315. display: none;
  2316. padding: 15px 0px;
  2317. border-bottom: 1px solid white;
  2318. }
  2319. #newsArticleContentWrapper {
  2320. width: 80%;
  2321. }
  2322. .newsArticleSpacerTop {
  2323. height: 15px;
  2324. }
  2325. /* Div to add spacing at the end of a news article. */
  2326. .newsArticleSpacerBot {
  2327. height: 30px;
  2328. }
  2329. /* News navigation container. */
  2330. #newsNavigationContainer {
  2331. display: flex;
  2332. justify-content: center;
  2333. align-items: center;
  2334. margin-bottom: 10px;
  2335. -webkit-user-select: none;
  2336. position: absolute;
  2337. bottom: 15px;
  2338. right: 0px;
  2339. }
  2340. /* Navigation status span. */
  2341. #newsNavigationStatus {
  2342. font-size: 12px;
  2343. margin: 0px 15px;
  2344. }
  2345. /* Left and right navigation button styles. */
  2346. #newsNavigateLeft,
  2347. #newsNavigateRight {
  2348. background: none;
  2349. border: none;
  2350. outline: none;
  2351. height: 20px;
  2352. cursor: pointer;
  2353. }
  2354. #newsNavigateLeft:hover #newsNavigationLeftSVG,
  2355. #newsNavigateLeft:focus #newsNavigationLeftSVG,
  2356. #newsNavigateRight:hover #newsNavigationRightSVG,
  2357. #newsNavigateRight:focus #newsNavigationRightSVG {
  2358. -webkit-filter: drop-shadow(0px 0px 2px #fff);
  2359. }
  2360. #newsNavigateLeft:active #newsNavigationLeftSVG .arrowLine,
  2361. #newsNavigateRight:active #newsNavigationRightSVG .arrowLine {
  2362. stroke: #c7c7c7;
  2363. }
  2364. #newsNavigateLeft:active #newsNavigationLeftSVG,
  2365. #newsNavigateRight:active #newsNavigationRightSVG {
  2366. -webkit-filter: drop-shadow(0px 0px 2px #c7c7c7);
  2367. }
  2368. #newsNavigateLeft:disabled #newsNavigationLeftSVG .arrowLine,
  2369. #newsNavigateRight:disabled #newsNavigationRightSVG .arrowLine {
  2370. stroke: rgba(255, 255, 255, 0.75);
  2371. }
  2372. #newsNavigationLeftSVG {
  2373. transform: rotate(-90deg);
  2374. width: 15px;
  2375. }
  2376. #newsNavigationRightSVG {
  2377. transform: rotate(90deg);
  2378. width: 15px;
  2379. }
  2380. /* News error (message) container. */
  2381. #newsErrorContainer {
  2382. height: 100%;
  2383. display: flex;
  2384. align-items: center;
  2385. flex-direction: column;
  2386. justify-content: center;
  2387. }
  2388. #newsErrorFailed {
  2389. display: flex;
  2390. align-items: center;
  2391. flex-direction: column;
  2392. justify-content: center;
  2393. }
  2394. /* News error content (message). */
  2395. .newsErrorContent {
  2396. font-size: 20px;
  2397. }
  2398. #newsErrorLoading {
  2399. display: flex;
  2400. width: 168.92px;
  2401. }
  2402. #nELoadSpan {
  2403. white-space: pre;
  2404. }
  2405. /* News error retry button styles. */
  2406. #newsErrorRetry {
  2407. font-size: 12px;
  2408. font-weight: bold;
  2409. cursor: pointer;
  2410. background: none;
  2411. border: none;
  2412. outline: none;
  2413. transition: 0.25s ease;
  2414. }
  2415. #newsErrorRetry:focus,
  2416. #newsErrorRetry:hover {
  2417. text-shadow: 0px 0px 20px white;
  2418. }
  2419. #newsErrorRetry:active {
  2420. color: #c7c7c7;
  2421. text-shadow: 0px 0px 20px #c7c7c7;
  2422. }
  2423. /*******************************************************************************
  2424. * *
  2425. * Landing View (Top Styles) *
  2426. * *
  2427. ******************************************************************************/
  2428. /* * *
  2429. * Landing View (Top Styles) | Left Content
  2430. * * */
  2431. /* Logo image. */
  2432. #image_seal {
  2433. height: 70px;
  2434. width: auto;
  2435. position: relative;
  2436. border: 2px solid white;
  2437. box-sizing: border-box;
  2438. border-radius: 50%;
  2439. }
  2440. /* Logo container styles. */
  2441. #image_seal_container {
  2442. position: relative;
  2443. height: 70px;
  2444. width: 70px;
  2445. border-radius: 50%;
  2446. margin-top: 50px;
  2447. }
  2448. /* Logo container styles w/ update. */
  2449. #image_seal_container[update]{
  2450. cursor: pointer
  2451. }
  2452. #image_seal_container[update]:before,
  2453. #image_seal_container[update]:after {
  2454. cursor: pointer;
  2455. position: absolute;
  2456. content: '';
  2457. height: 100%;
  2458. width: 100%;
  2459. top: 0%;
  2460. left: 0%;
  2461. border-radius: 50%;
  2462. box-shadow: 0 0 15px #43c628;
  2463. animation: glow-grow 4s ease-out infinite;
  2464. background: rgba(0, 0, 0, 0.15);
  2465. }
  2466. #image_seal_container[update]:before {
  2467. animation-delay: 2s;
  2468. }
  2469. /* Update available tooltip styles. */
  2470. #updateAvailableTooltip {
  2471. cursor: pointer;
  2472. visibility: hidden;
  2473. opacity: 0;
  2474. width: 100px;
  2475. height: 15px;
  2476. background-color: rgb(0, 0, 0);
  2477. color: #fff;
  2478. text-align: center;
  2479. border-radius: 4px;
  2480. padding: 2px;
  2481. position: absolute;
  2482. z-index: 1;
  2483. top: 115%;
  2484. left: -17.5px;
  2485. font-family: 'Avenir Medium';
  2486. font-size: 12px;
  2487. transition: visibility 0s linear 0.25s, opacity 0.25s ease;
  2488. }
  2489. #updateAvailableTooltip::after {
  2490. content: " ";
  2491. position: absolute;
  2492. left: 50%;
  2493. bottom: 100%;
  2494. margin-left: -5px;
  2495. border-width: 5px;
  2496. border-style: solid;
  2497. border-color: transparent transparent rgb(0, 0, 0) transparent;
  2498. }
  2499. #image_seal_container[update]:hover #updateAvailableTooltip {
  2500. visibility: visible;
  2501. opacity: 1;
  2502. transition-delay: 0s;
  2503. }
  2504. /* Update available animation. */
  2505. @keyframes glow-grow {
  2506. 0% {
  2507. opacity: 0;
  2508. transform: scale(1);
  2509. }
  2510. 80% {
  2511. opacity: 1;
  2512. }
  2513. 100% {
  2514. transform: scale(1.5);
  2515. opacity: 0;
  2516. }
  2517. }
  2518. /* * *
  2519. * Landing View (Bottom Styles) | Right Content
  2520. * * */
  2521. /* Wrapper container for top, right content. */
  2522. #rightContainer {
  2523. display: flex;
  2524. flex-direction: column;
  2525. position: relative;
  2526. top: 50px;
  2527. align-items: flex-start;
  2528. height: calc(100% - 50px);
  2529. }
  2530. /* Right hand user content container. */
  2531. #user_content {
  2532. display: flex;
  2533. align-items: center;
  2534. justify-content: center;
  2535. box-sizing: border-box;
  2536. position: relative;
  2537. }
  2538. /* User profile avatar container. */
  2539. #avatarContainer {
  2540. border-radius: 50%;
  2541. border: 2px solid #cad7e1;
  2542. box-sizing: border-box;
  2543. background: rgba(1, 2, 1, 0.5);
  2544. height: 70px;
  2545. width: 70px;
  2546. box-shadow: 0px 0px 10px 0px rgb(0, 0, 0);
  2547. overflow: hidden;
  2548. position: relative;
  2549. background-position: center;
  2550. background-repeat: no-repeat;
  2551. background-size: contain;
  2552. }
  2553. /* Avatar edit overlay. */
  2554. #avatarOverlay {
  2555. opacity: 0;
  2556. position: absolute;
  2557. z-index: 1;
  2558. display: flex;
  2559. justify-content: center;
  2560. align-items: center;
  2561. transition: 0.25s ease;
  2562. font-weight: bold;
  2563. letter-spacing: 2px;
  2564. background-color: rgba(0, 0, 0, 0.35);
  2565. -webkit-user-select: none;
  2566. border: none;
  2567. cursor: pointer;
  2568. width: 100%;
  2569. height: 100%;
  2570. border-radius: 50%;
  2571. }
  2572. #avatarOverlay:hover,
  2573. #avatarOverlay:focus {
  2574. opacity: 1;
  2575. }
  2576. #avatarOverlay:active {
  2577. background-color: rgba(0, 0, 0, 0.45);
  2578. }
  2579. /* User profile name text. */
  2580. #user_text {
  2581. font-size: 12px;
  2582. min-width: 135px;
  2583. font-weight: 900;
  2584. letter-spacing: 1px;
  2585. text-shadow: 0px 0px 20px black;
  2586. position: absolute;
  2587. right: 95px;
  2588. text-align: right;
  2589. -webkit-user-select: initial;
  2590. }
  2591. /* Social media icon content container. */
  2592. #mediaContent {
  2593. position: relative;
  2594. display: flex;
  2595. flex-direction: column;
  2596. margin-top: 25px;
  2597. height: calc(100% - 95px);
  2598. width: 70px;
  2599. align-items: center;
  2600. }
  2601. /* Social Media Icon division containers. */
  2602. #internalMedia, #externalMedia {
  2603. display: flex;
  2604. flex-direction: column;
  2605. }
  2606. /* Container object which wraps an icon to ensure fluid transitions. */
  2607. .mediaContainer {
  2608. display: flex;
  2609. justify-content: center;
  2610. align-items: center;
  2611. height: 27px;
  2612. }
  2613. /* Divider bar between the external and internal icons. */
  2614. .mediaDivider {
  2615. height: 1px;
  2616. width: 14px;
  2617. background: rgb(255, 255, 255);
  2618. margin: 10px 0px;
  2619. }
  2620. /* Social media icon shared styles. */
  2621. .mediaSVG {
  2622. fill: #ffffff;
  2623. height: 12px;
  2624. transition: 0.25s ease;
  2625. cursor: pointer;
  2626. height: 12px;
  2627. width: 25px;
  2628. }
  2629. .mediaSVG:hover,
  2630. .mediaURL:focus .mediaSVG,
  2631. .mediaSVG:active {
  2632. height: 20px;
  2633. }
  2634. /* Social media URL shared styles. */
  2635. .mediaURL {
  2636. outline: none;
  2637. }
  2638. /* Internal media button shared styles. */
  2639. .mediaButton {
  2640. background: none;
  2641. border: none;
  2642. padding: 0px;
  2643. display: flex;
  2644. align-items: center;
  2645. outline: none;
  2646. }
  2647. #settingsMediaContainer {
  2648. position: relative;
  2649. }
  2650. /* Settings icon colors. */
  2651. #settingsSVG {
  2652. stroke: #ffffff;
  2653. height: 15px;
  2654. }
  2655. .mediaButton:hover #settingsSVG,
  2656. .mediaButton:focus #settingsSVG,
  2657. .mediaButton:active #settingsSVG {
  2658. height: 23px;
  2659. }
  2660. /* Settings tooltip styles. */
  2661. #settingsTooltip {
  2662. visibility: hidden;
  2663. opacity: 0;
  2664. width: 75px;
  2665. height: 20px;
  2666. background-color: rgba(0, 0, 0, 0.75);
  2667. text-align: center;
  2668. border-radius: 4px;
  2669. position: absolute;
  2670. z-index: 1;
  2671. right: 130%;
  2672. font-size: 12px;
  2673. line-height: 20px;
  2674. transition: visibility 0s linear 0.25s, opacity 0.25s ease;
  2675. }
  2676. #settingsTooltip::after {
  2677. content: " ";
  2678. position: absolute;
  2679. top: 50%;
  2680. left: 100%;
  2681. margin-top: -5px;
  2682. border-width: 5px;
  2683. border-style: solid;
  2684. border-color: transparent transparent transparent rgba(0, 0, 0, 0.75);
  2685. }
  2686. .mediaButton:hover #settingsTooltip,
  2687. .mediaButton:focus #settingsTooltip,
  2688. .mediaButton:active #settingsTooltip {
  2689. visibility: visible;
  2690. opacity: 1;
  2691. transition-delay:0s;
  2692. }
  2693. /* Twitter icon colors. */
  2694. #twitterSVG:hover,
  2695. #twitterURL:focus #twitterSVG {
  2696. fill: #1da1f2;
  2697. }
  2698. #twitterSVG:active {
  2699. fill: #1b8dd4;
  2700. }
  2701. /* Instagram icon colors. */
  2702. #instagramSVG:hover,
  2703. #instagramURL:focus #instagramSVG {
  2704. fill: url('#instaFill')
  2705. /*fill: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); */
  2706. }
  2707. #instagramSVG:active {
  2708. fill: url('#instaFill')
  2709. }
  2710. /* Youtube icon colors. */
  2711. #youtubeSVG:hover,
  2712. #youtubeURL:focus #youtubeSVG {
  2713. fill: #f00;
  2714. }
  2715. #youtubeSVG:active {
  2716. fill: #ea0202;
  2717. }
  2718. /* Discord icon colors. */
  2719. #discordSVG:hover,
  2720. #discordURL:focus #discordSVG {
  2721. fill: #7288d9;
  2722. }
  2723. #discordSVG:active {
  2724. fill: #657ac4;
  2725. }
  2726. /*******************************************************************************
  2727. * *
  2728. * Landing View (Bottom Styles) *
  2729. * *
  2730. ******************************************************************************/
  2731. /* Style for a general label on the bottom of the landing view. */
  2732. .bot_label {
  2733. font-size: 9px;
  2734. letter-spacing: 1px;
  2735. font-weight: bold;
  2736. text-shadow: 0px 0px 0px #bebcbb;
  2737. }
  2738. /* Divider used on the bottom of the landing view. */
  2739. .bot_divider {
  2740. height: 25px;
  2741. width: 2px;
  2742. background: rgba(107, 105, 105, 0.7);
  2743. margin-left: 20px;
  2744. margin-right: 20px;
  2745. }
  2746. /* * *
  2747. * Landing View (Bottom Styles) | Left Content
  2748. * * */
  2749. /* Maintains maximum width on the status bar. */
  2750. #server_status_wrapper {
  2751. display: inline-flex;
  2752. width: 75px;
  2753. }
  2754. /* Span which displays the player count of the selected server. */
  2755. #player_count {
  2756. color: #949494;
  2757. font-size: 8px;
  2758. font-weight: 900;
  2759. text-shadow: 0px 0px 20px #949494;
  2760. margin-left: 10px;
  2761. }
  2762. /* Wrapper container for the mojang status bar. */
  2763. #mojangStatusWrapper {
  2764. position: relative;
  2765. display: flex;
  2766. cursor: pointer;
  2767. }
  2768. /* Icon which displays the status of the mojang services. */
  2769. #mojang_status_icon {
  2770. font-size: 30px;
  2771. color: #848484;
  2772. margin-left: 15px;
  2773. font-family: 'sans-serif';
  2774. }
  2775. /* Tooltip which displays more details about the mojang statuses. */
  2776. #mojangStatusTooltip {
  2777. position: absolute;
  2778. visibility: hidden;
  2779. opacity: 0;
  2780. width: 145px;
  2781. min-height: 150px;
  2782. background-color: rgba(0, 0, 0, 0.75);
  2783. color: #fff;
  2784. border-radius: 4px;
  2785. padding: 5px 10px;
  2786. z-index: 1;
  2787. font-family: 'Avenir Medium';
  2788. font-size: 12px;
  2789. transition: visibility 0s linear 0.25s, opacity 0.25s ease;
  2790. bottom: calc(100% + 15px);
  2791. transform: translateX(-50%);
  2792. margin-left: 50%;
  2793. box-shadow: 0px 0px 20px rgb(0, 0, 0);
  2794. cursor: default;
  2795. }
  2796. #mojangStatusTooltip:after {
  2797. content: " ";
  2798. position: absolute;
  2799. left: 50%;
  2800. top: 100%;
  2801. margin-left: -5px;
  2802. border-width: 5px;
  2803. border-style: solid;
  2804. border-color: rgba(0, 0, 0, 0.75) transparent transparent transparent;
  2805. }
  2806. #mojangStatusWrapper:hover #mojangStatusTooltip {
  2807. visibility: visible;
  2808. opacity: 1;
  2809. transition-delay: 0s;
  2810. }
  2811. /* Tooltip title for the mojang statuses. */
  2812. #mojangStatusTooltipTitle {
  2813. width: 100%;
  2814. text-align: center;
  2815. margin-bottom: 5px;
  2816. letter-spacing: 1px;
  2817. }
  2818. /* Wrapper container for the non essential services title. */
  2819. #mojangStatusNEContainer {
  2820. display: flex;
  2821. align-items: center;
  2822. margin: 10px 0px;
  2823. }
  2824. /* White bar which surrounds the non essential service title. */
  2825. .mojangStatusNEBar {
  2826. height: 1px;
  2827. width: 100%;
  2828. background: white;
  2829. }
  2830. /* Non essential service title text. */
  2831. #mojangStatusNETitle {
  2832. font-size: 10px;
  2833. padding: 0px 3px;
  2834. text-align: center;
  2835. letter-spacing: 1px;
  2836. }
  2837. /* Wrapper container for mojang service information. */
  2838. .mojangStatusContainer {
  2839. display: flex;
  2840. }
  2841. /* Displays the name of the mojang service. */
  2842. .mojangStatusName {
  2843. width: 100%;
  2844. font-size: 10px;
  2845. letter-spacing: 1px;
  2846. line-height: 12px;
  2847. padding: 6px 0px;
  2848. }
  2849. /* Displays the status of the mojang service. */
  2850. .mojangStatusIcon {
  2851. margin-right: 10px;
  2852. font-size: 18.5px;
  2853. color: #848484;
  2854. }
  2855. /* * *
  2856. * Landing View (Bottom Styles) | Center Content
  2857. * * */
  2858. /* Button which opens the news view. */
  2859. #newsButton {
  2860. background: none;
  2861. border: none;
  2862. cursor: pointer;
  2863. outline: none;
  2864. }
  2865. #newsButton:hover #newsButtonText,
  2866. #newsButton:focus #newsButtonText {
  2867. text-shadow: 0px 0px 20px #fff, 0px 0px 20px #fff;
  2868. }
  2869. #newsButton:active {
  2870. color: #c7c7c7;
  2871. text-shadow: 0px 0px 20px #c7c7c7, 0px 0px 20px #c7c7c7;
  2872. }
  2873. #newsButton:hover #newsButtonSVG,
  2874. #newsButton:focus #newsButtonSVG {
  2875. -webkit-filter: drop-shadow(0px 0px 2px #fff);
  2876. }
  2877. #newsButton:active #newsButtonSVG .arrowLine {
  2878. stroke: #c7c7c7;
  2879. }
  2880. #newsButton:active #newsButtonSVG {
  2881. -webkit-filter: drop-shadow(0px 0px 2px #c7c7c7);
  2882. }
  2883. #newsButton:disabled #newsButtonSVG .arrowLine {
  2884. stroke: rgba(255, 255, 255, 0.75);
  2885. }
  2886. /* Icon which indicates there is new news. */
  2887. #newsButtonAlert {
  2888. width: 5px;
  2889. height: 5px;
  2890. position: absolute;
  2891. border-radius: 50%;
  2892. background: red;
  2893. right: -1px;
  2894. top: 50%;
  2895. }
  2896. /* Arrow image which floats above the news button. */
  2897. #newsButtonSVG {
  2898. height: 11px;
  2899. margin-left: -2px;
  2900. transition: 0.25s ease;
  2901. }
  2902. /* Span which contains the news button text. */
  2903. #newsButtonText {
  2904. color: white;
  2905. font-weight: 900;
  2906. letter-spacing: 2px;
  2907. text-shadow: 0px 0px 0px #bebcbb;
  2908. font-size: 11px;
  2909. line-height: 30px;
  2910. display: flex;
  2911. transition: 0.25s ease;
  2912. }
  2913. /* * *
  2914. * Landing View (Bottom Styles) | Right Content
  2915. * * */
  2916. /* Main launch content container. */
  2917. #landingContainer > #lower > #right #launch_content {
  2918. position: relative;
  2919. top: 25px;
  2920. display: inline-flex;
  2921. }
  2922. /* The launch button. */
  2923. #launch_button {
  2924. background: none;
  2925. border: none;
  2926. cursor: pointer;
  2927. font-weight: 900;
  2928. letter-spacing: 2px;
  2929. text-shadow: 0px 0px 0px #bebcbb;
  2930. font-size: 20px;
  2931. padding: 0px;
  2932. transition: 0.25s ease;
  2933. outline: none;
  2934. }
  2935. #launch_button:hover,
  2936. #launch_button:focus {
  2937. text-shadow: 0px 0px 20px #fff, 0px 0px 20px #fff;
  2938. }
  2939. #launch_button:active {
  2940. color: #c7c7c7;
  2941. text-shadow: 0px 0px 20px #c7c7c7, 0px 0px 20px #c7c7c7;
  2942. }
  2943. #launch_button:disabled {
  2944. color: #c7c7c7;
  2945. cursor: default;
  2946. pointer-events: none;
  2947. }
  2948. /* Launch details main container, hidden until launch processing begins. */
  2949. #launch_details {
  2950. position: relative;
  2951. top: 25px;
  2952. display: none;
  2953. }
  2954. /* Left side of launch details container, displays percentage and a divider. */
  2955. #launch_details_left {
  2956. display: flex;
  2957. }
  2958. /* Span which displays percentage complete. */
  2959. #launch_progress_label {
  2960. font-weight: 900;
  2961. letter-spacing: 1px;
  2962. text-shadow: 0px 0px 0px #bebcbb;
  2963. font-size: 20px;
  2964. min-width: 53.21px;
  2965. max-width: 53.21px;
  2966. text-align: right;
  2967. }
  2968. /* Right side of launch details container, displays progress bar and details. */
  2969. #launch_details_right {
  2970. display: flex;
  2971. flex-direction: column;
  2972. justify-content: center;
  2973. }
  2974. /* Button which opens the server selection view. */
  2975. #server_selection_button {
  2976. background: none;
  2977. border: none;
  2978. outline: none;
  2979. cursor: pointer;
  2980. line-height: 24px;
  2981. padding: 0px;
  2982. transition: 0.25s ease;
  2983. }
  2984. #server_selection_button:hover,
  2985. #server_selection_button:focus {
  2986. text-shadow: 0px 0px 20px #fff, 0px 0px 20px #fff, 0px 0px 20px #fff;
  2987. }
  2988. #server_selection_button:active {
  2989. color: #c7c7c7;
  2990. text-shadow: 0px 0px 20px #c7c7c7, 0px 0px 20px #c7c7c7, 0px 0px 20px #c7c7c7;
  2991. }
  2992. /* Progress bar styles. */
  2993. #launch_progress[value] {
  2994. height: 3px;
  2995. width: 265px;
  2996. -webkit-appearance: none;
  2997. }
  2998. #launch_progress[value]::-webkit-progress-bar {
  2999. background-color: transparent;
  3000. }
  3001. #launch_progress[value]::-webkit-progress-value {
  3002. background-color: #fff;
  3003. }
  3004. /* Span which displays information about the status of the launch process. */
  3005. #launch_details_text {
  3006. font-size: 11px;
  3007. text-overflow: ellipsis;
  3008. white-space: nowrap;
  3009. overflow: hidden;
  3010. }
  3011. /*******************************************************************************
  3012. * *
  3013. * Overlay View (overlay.ejs) *
  3014. * *
  3015. ******************************************************************************/
  3016. /* * *
  3017. * Overlay View (Main Content)
  3018. * * */
  3019. /* Overlay container, placed over the main div. */
  3020. #overlayContainer {
  3021. position: absolute;
  3022. z-index: 500;
  3023. top: 22px;
  3024. display: flex;
  3025. align-items: center;
  3026. justify-content: center;
  3027. width: 100%;
  3028. height: calc(100% - 22px);
  3029. background: rgba(0, 0, 0, 0.50);
  3030. }
  3031. /* Main overlay content. */
  3032. #overlayContent {
  3033. position: relative;
  3034. display: flex;
  3035. flex-direction: column;
  3036. align-items: center;
  3037. /*justify-content: space-between;*/
  3038. width: 300px;
  3039. /*height: 35%;*/
  3040. box-sizing: border-box;
  3041. padding: 15px 0px;
  3042. /* background-color: #424242; */
  3043. text-align: center;
  3044. }
  3045. /* Main overlay content anchor styles. */
  3046. #overlayContent a,
  3047. #overlayDismiss {
  3048. color: rgba(202, 202, 202, 0.75);
  3049. transition: 0.25s ease;
  3050. }
  3051. #overlayContent a:hover,
  3052. #overlayContent a:focus,
  3053. #overlayDismiss:focus {
  3054. color: rgba(255, 255, 255, 0.75);
  3055. }
  3056. #overlayContent a:active,
  3057. #overlayDismiss:active {
  3058. color: rgba(165, 165, 165, 0.75);
  3059. }
  3060. /* Add spacing between overlay content elements. */
  3061. #overlayContent > *:first-child {
  3062. margin-top: 0px !important;
  3063. }
  3064. #overlayContent > *:last-child {
  3065. margin-bottom: 0px !important;
  3066. }
  3067. #overlayContent > * {
  3068. margin: 8px 0px;
  3069. }
  3070. /* Overlay title styles. */
  3071. #overlayTitle {
  3072. font-family: 'Avenir Medium';
  3073. font-size: 20px;
  3074. font-weight: bold;
  3075. letter-spacing: 1px;
  3076. -webkit-user-select: initial;
  3077. }
  3078. /* Overlay description styles. */
  3079. #overlayDesc {
  3080. font-size: 12px;
  3081. font-weight: bold;
  3082. -webkit-user-select: initial;
  3083. }
  3084. /* Div which contains action buttons. */
  3085. #overlayActionContainer {
  3086. display: flex;
  3087. flex-direction: column;
  3088. justify-content: center;
  3089. }
  3090. /* Overlay acknowledge button styles. */
  3091. #overlayAcknowledge {
  3092. background: none;
  3093. border: 1px solid #ffffff;
  3094. color: white;
  3095. font-family: 'Avenir Medium';
  3096. font-weight: bold;
  3097. border-radius: 2px;
  3098. padding: 0px 8.1px;
  3099. cursor: pointer;
  3100. transition: 0.25s ease;
  3101. }
  3102. #overlayAcknowledge:hover,
  3103. #overlayAcknowledge:focus {
  3104. box-shadow: 0px 0px 10px 0px #fff;
  3105. outline: none;
  3106. }
  3107. #overlayAcknowledge:active {
  3108. border-color: rgba(255, 255, 255, 0.75);
  3109. color: rgba(255, 255, 255, 0.75);
  3110. }
  3111. /* Overlay dismiss option styles. */
  3112. #overlayDismiss {
  3113. font-weight: bold;
  3114. font-size: 10px;
  3115. text-decoration: none;
  3116. padding-top: 2.5px;
  3117. background: none;
  3118. border: none;
  3119. outline: none;
  3120. cursor: pointer;
  3121. }
  3122. #overlayDismiss:hover {
  3123. color: rgba(255, 255, 255, 0.75);
  3124. }
  3125. #overlayDismiss:active {
  3126. color: rgba(165, 165, 165, 0.75);
  3127. }
  3128. /* * *
  3129. * Overlay View (Server + Account Selection Content)
  3130. * * */
  3131. /* Server selection content container. */
  3132. #serverSelectContent,
  3133. #accountSelectContent {
  3134. display: flex;
  3135. flex-direction: column;
  3136. justify-content: center;
  3137. align-items: center;
  3138. height: 75%;
  3139. }
  3140. /* Server selection header. */
  3141. #serverSelectHeader,
  3142. #accountSelectHeader {
  3143. font-family: 'Avenir Medium';
  3144. font-size: 20px;
  3145. font-weight: bold;
  3146. color: #fff;
  3147. margin-bottom: 25px;
  3148. }
  3149. /* Wrapper div for the list of available servers. */
  3150. #serverSelectList,
  3151. #accountSelectList {
  3152. display: flex;
  3153. flex-direction: column;
  3154. align-items: center;
  3155. justify-content: center;
  3156. max-height: 65%;
  3157. min-height: 40%;
  3158. }
  3159. /* Scrollable div which lists the available servers. */
  3160. #serverSelectListScrollable,
  3161. #accountSelectListScrollable {
  3162. padding: 0px 5px;
  3163. overflow-y: scroll;
  3164. }
  3165. #serverSelectListScrollable::-webkit-scrollbar,
  3166. #accountSelectListScrollable::-webkit-scrollbar {
  3167. width: 2px;
  3168. }
  3169. #serverSelectListScrollable::-webkit-scrollbar-track,
  3170. #accountSelectListScrollable::-webkit-scrollbar-track {
  3171. display: none;
  3172. }
  3173. #serverSelectListScrollable::-webkit-scrollbar-thumb,
  3174. #accountSelectListScrollable::-webkit-scrollbar-thumb {
  3175. border-radius: 10px;
  3176. box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.50);
  3177. }
  3178. /* Content container for a server listing. */
  3179. .serverListing {
  3180. border: none;
  3181. padding: 0px;
  3182. width: 375px;
  3183. min-height: 60px;
  3184. display: flex;
  3185. justify-content: flex-start;
  3186. align-items: center;
  3187. opacity: 0.6;
  3188. transition: 0.25s ease;
  3189. cursor: pointer;
  3190. position: relative;
  3191. background: rgba(131, 131, 131, 0.25);
  3192. }
  3193. .serverListing[selected] {
  3194. cursor: default;
  3195. opacity: 1.0;
  3196. }
  3197. .serverListing:hover,
  3198. .serverListing:focus {
  3199. outline: none;
  3200. opacity: 1.0;
  3201. }
  3202. .accountListing {
  3203. color: white;
  3204. border: 1px solid rgba(126, 126, 126, 0.57);
  3205. border-radius: 3px;
  3206. padding: 5px 45px;
  3207. width: 250px;
  3208. display: flex;
  3209. justify-content: flex-start;
  3210. align-items: center;
  3211. opacity: 0.6;
  3212. transition: 0.25s ease;
  3213. cursor: pointer;
  3214. position: relative;
  3215. background: rgba(0, 0, 0, 0.25);
  3216. }
  3217. .accountListing[selected] {
  3218. cursor: default;
  3219. opacity: 1.0;
  3220. }
  3221. .accountListing:hover,
  3222. .accountListing:focus {
  3223. outline: none;
  3224. opacity: 1.0;
  3225. }
  3226. .accountListingName {
  3227. display: flex;
  3228. height: 100%;
  3229. width: 100%;
  3230. padding-left: 10px;
  3231. }
  3232. /* Add spacing between server listings. */
  3233. #serverSelectListScrollable > .serverListing:not(:first-child):not(:last-child),
  3234. #accountSelectListScrollable > .accountListing:not(:first-child):not(:last-child) {
  3235. margin: 5px 0px;
  3236. }
  3237. #serverSelectListScrollable > .serverListing:first-child,
  3238. #accountSelectListScrollable > .accountListing:first-child {
  3239. margin-bottom: 5px;
  3240. }
  3241. #serverSelectListScrollable > .serverListing:last-child,
  3242. #accountSelectListScrollable > .accountListing:last-child {
  3243. margin-top: 5px;
  3244. }
  3245. /* Server listing image. */
  3246. .serverListingImg {
  3247. margin: 0px 10px 0px 5px;
  3248. border: 1px solid #fff;
  3249. height: 50px;
  3250. width: 50px;
  3251. }
  3252. /* Content container for the server listing's details. */
  3253. .serverListingDetails {
  3254. display: flex;
  3255. flex-direction: column;
  3256. align-items: flex-start;
  3257. justify-content: space-between;
  3258. height: 50px;
  3259. }
  3260. /* The name of the server listing. */
  3261. .serverListingName {
  3262. font-size: 14px;
  3263. font-weight: bold;
  3264. }
  3265. /* Description for the server listing. */
  3266. .serverListingDescription {
  3267. font-size: 10px;
  3268. line-height: 10px;
  3269. font-weight: bold;
  3270. }
  3271. /* Content container for the server listing's information. */
  3272. .serverListingInfo {
  3273. width: 100%;
  3274. display: flex;
  3275. justify-content: flex-start;
  3276. }
  3277. /* The minecraft version of the server listing. */
  3278. .serverListingVersion {
  3279. font-size: 10px;
  3280. text-align: center;
  3281. display: flex;
  3282. justify-content: center;
  3283. align-items: center;
  3284. line-height: 12px;
  3285. height: 12px;
  3286. border-radius: 2px;
  3287. background: rgba(31, 140, 11, 0.8);
  3288. padding: 0px 2px;
  3289. }
  3290. /* The revision version of the server's manifest. */
  3291. .serverListingRevision {
  3292. color: #969696;
  3293. font-size: 10px;
  3294. line-height: 12px;
  3295. padding: 0px 5px;
  3296. }
  3297. /* Star which indicates the default (main) server. */
  3298. .serverListingStarWrapper {
  3299. display: flex;
  3300. align-items: center;
  3301. cursor: pointer;
  3302. height: 12px;
  3303. position: relative;
  3304. }
  3305. /* Tooltip which displays when hovering over the star. */
  3306. .serverListingStarTooltip {
  3307. visibility: hidden;
  3308. opacity: 0;
  3309. width: 65px;
  3310. background-color: rgba(0, 0, 0, 0.40);
  3311. text-align: center;
  3312. border-radius: 4px;
  3313. position: absolute;
  3314. z-index: 1;
  3315. left: 130%;
  3316. font-size: 10px;
  3317. transition: visibility 0s linear 0.25s, opacity 0.25s ease;
  3318. }
  3319. .serverListingStarTooltip::after {
  3320. content: " ";
  3321. position: absolute;
  3322. top: 50%;
  3323. right: 100%; /* To the left of the tooltip */
  3324. margin-top: -5px;
  3325. border-width: 5px;
  3326. border-style: solid;
  3327. border-color: transparent rgba(0, 0, 0, 0.40) transparent transparent;
  3328. }
  3329. .serverListingStarWrapper:hover .serverListingStarTooltip {
  3330. visibility: visible;
  3331. opacity: 1;
  3332. transition-delay:0s;
  3333. }
  3334. /* Content container which contains the server select actions. */
  3335. #serverSelectActions,
  3336. #accountSelectActions {
  3337. display: flex;
  3338. flex-direction: column;
  3339. justify-content: center;
  3340. align-items: center;
  3341. margin-top: 25px;
  3342. }
  3343. /* Server selection confirm button styles. */
  3344. #serverSelectConfirm,
  3345. #accountSelectConfirm {
  3346. background: none;
  3347. border: 1px solid #ffffff;
  3348. color: white;
  3349. font-family: 'Avenir Medium';
  3350. font-weight: bold;
  3351. border-radius: 2px;
  3352. padding: 0px 8.1px;
  3353. cursor: pointer;
  3354. transition: 0.25s ease;
  3355. min-height: 20.67px;
  3356. }
  3357. #serverSelectConfirm:hover,
  3358. #serverSelectConfirm:focus,
  3359. #accountSelectConfirm:hover,
  3360. #accountSelectConfirm:focus {
  3361. box-shadow: 0px 0px 10px 0px #fff;
  3362. outline: none;
  3363. }
  3364. #serverSelectConfirm:active,
  3365. #accountSelectConfirm:active {
  3366. border-color: rgba(255, 255, 255, 0.75);
  3367. color: rgba(255, 255, 255, 0.75);
  3368. }
  3369. /* Server selection cancel button styles. */
  3370. #serverSelectCancel,
  3371. #accountSelectCancel {
  3372. font-weight: bold;
  3373. font-size: 10px;
  3374. text-decoration: none;
  3375. padding-top: 2.5px;
  3376. color: rgba(202, 202, 202, 0.75);
  3377. transition: 0.25s ease;
  3378. background: none;
  3379. border: none;
  3380. outline: none;
  3381. cursor: pointer;
  3382. }
  3383. #serverSelectCancel:hover,
  3384. #serverSelectCancel:focus,
  3385. #accountSelectCancel:hover,
  3386. #accountSelectCancel:focus {
  3387. color: rgba(255, 255, 255, 0.75);
  3388. }
  3389. #serverSelectCancel:active,
  3390. #accountSelectCancel:active {
  3391. color: rgba(165, 165, 165, 0.75);
  3392. }
  3393. /*******************************************************************************
  3394. * *
  3395. * Loading Element (app.ejs) *
  3396. * *
  3397. ******************************************************************************/
  3398. /* Loading container, placed above everything. */
  3399. #loadingContainer {
  3400. position: absolute;
  3401. z-index: 400;
  3402. display: flex;
  3403. align-items: center;
  3404. justify-content: center;
  3405. width: 100%;
  3406. height: calc(100% - 22px);
  3407. }
  3408. /* Loading content container. */
  3409. #loadingContent {
  3410. position: relative;
  3411. display: flex;
  3412. flex-direction: column;
  3413. align-items: center;
  3414. justify-content: center;
  3415. }
  3416. /* Spinner container. */
  3417. #loadSpinnerContainer {
  3418. position: relative;
  3419. display: flex;
  3420. align-items: center;
  3421. justify-content: center;
  3422. }
  3423. /* Stationary image for the spinner. */
  3424. #loadCenterImage {
  3425. position: absolute;
  3426. width: 277px;
  3427. height: auto;
  3428. }
  3429. /* Rotating image for the spinner. */
  3430. #loadSpinnerImage {
  3431. width: 280px;
  3432. height: auto;
  3433. z-index: 400;
  3434. }
  3435. /* Rotating animation for the spinner. */
  3436. @keyframes rotating {
  3437. from {
  3438. transform: rotate(0deg);
  3439. }
  3440. to {
  3441. transform: rotate(360deg);
  3442. }
  3443. }
  3444. /* Class which is applied when the spinner image is spinning. */
  3445. .rotating {
  3446. animation: rotating 10s linear infinite;
  3447. }