| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270 |
- h1[_ngcontent-tnh-c135] {
- color: #369;
- font-family: Arial, Helvetica, sans-serif;
- font-size: 250%;
- }
- .vc-wrapper[_ngcontent-tnh-c210] {
- position: fixed;
- top: 0;
- left: 0;
- width: 100vw;
- height: 100vh;
- z-index: 2000;
- background: linear-gradient(to bottom, rgba(50, 100, 160, 0.1), rgba(50, 100, 160, 0.1)), url("/assets/images/gunbg.png");
- background-repeat: repeat;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .vc-wrapper[_ngcontent-tnh-c210]:after {
- background: #181c22;
- content: "";
- position: absolute;
- top: 50vh;
- left: 0;
- width: 100vw;
- height: 50vh;
- }
- .vc-msg[_ngcontent-tnh-c210] {
- width: 500px;
- height: -webkit-min-content;
- height: -moz-min-content;
- height: min-content;
- max-width: 100vw;
- background: white;
- z-index: 1;
- padding: 20px;
- box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
- }
- .title[_ngcontent-tnh-c210] {
- font-size: 1.5em;
- margin-bottom: 10px;
- }
- #wrapper[_ngcontent-tnh-c136] {
- padding: 30px 30px 30px 30px;
- background: linear-gradient(to bottom, rgba(50, 100, 160, 0.1), rgba(50, 100, 160, 0.1)), url("/assets/images/gunbg.png");
- }
- #page[_ngcontent-tnh-c136] {
- box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.5);
- }
- main[_ngcontent-tnh-c136] {
- background: #fff;
- }
- *[_ngcontent-tnh-c136] {
- margin: 0;
- padding: 0;
- font-family: "Roboto", sans-serif;
- font-stretch: 100%;
- }
- li[_ngcontent-tnh-c136] {
- list-style: none;
- }
- .content[_ngcontent-tnh-c136] {
- display: grid;
- grid-template-columns: repeat(24, 1fr);
- grid-template-rows: -webkit-min-content;
- grid-template-rows: min-content;
- grid-gap: 20px;
- padding: 20px;
- }
- .email-verify[_ngcontent-tnh-c136] {
- position: fixed;
- top: 0;
- left: 0;
- width: 100vw;
- background: tomato;
- color: white;
- z-index: 1003;
- text-align: center;
- padding: 5px;
- }
- .email-verify[_ngcontent-tnh-c136] a[_ngcontent-tnh-c136] {
- text-decoration: underline;
- }
- [_nghost-tnh-c136] {
- display: grid;
- grid-template-rows: 250px auto;
- grid-template-columns: 1fr;
- }
- #wrapper[_ngcontent-tnh-c136] {
- grid-row: 1/span 1;
- grid-column: 1;
- }
- .bg-gradient[_ngcontent-tnh-c136] {
- grid-row: 2/span 1;
- grid-column: 1;
- }
- #page[_ngcontent-tnh-c136] {
- display: grid;
- grid-template-columns: -webkit-min-content auto;
- grid-template-columns: min-content auto;
- grid-template-rows: 55px auto 60px;
- min-height: calc(100vh - 30px);
- }
- .router-outlet[_ngcontent-tnh-c136] {
- display: none;
- }
- main[_ngcontent-tnh-c136] {
- display: grid;
- grid-row-start: 2;
- grid-row-end: 3;
- background: #eee;
- }
- footer[_ngcontent-tnh-c136] {
- grid-column-start: 2;
- }
- @media only screen and (max-width: 800px) {
- }
- .fl-ri[_ngcontent-tnh-c136] {
- float: right;
- }
- .fl-le[_ngcontent-tnh-c136] {
- float: left;
- }
- .ta-ri[_ngcontent-tnh-c136] {
- text-align: right;
- }
- .text-center[_ngcontent-tnh-c136] {
- text-align: center;
- }
- .margin-auto[_ngcontent-tnh-c136] {
- margin: auto;
- }
- .nopadding[_ngcontent-tnh-c136] {
- padding: 0px !important;
- }
- .nopadding-sides[_ngcontent-tnh-c136] {
- padding-left: 0;
- padding-right: 0;
- }
- .grid-newline[_ngcontent-tnh-c136] {
- grid-column-start: 1;
- }
- .chubby[_ngcontent-tnh-c136] {
- grid-column-end: span 2;
- }
- .top-margin-20[_ngcontent-tnh-c136] {
- margin-top: 20px !important;
- }
- .color-green[_ngcontent-tnh-c136] {
- color: green;
- }
- .color-red[_ngcontent-tnh-c136] {
- color: #b20000;
- }
- .color-tomato[_ngcontent-tnh-c136] {
- color: #FF6347 !important;
- }
- .size-10[_ngcontent-tnh-c136] {
- font-size: 10px;
- }
- .size-32[_ngcontent-tnh-c136] {
- font-size: 32px;
- }
- .test[_ngcontent-tnh-c136] {
- color: red;
- }
-
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
- <script src="./js/page.js" defer></script>
- <script src="./js/admin.js" defer></script>
-
- [_nghost-tnh-c147] {
- position: fixed;
- bottom: 20px;
- right: 20px;
- z-index: 1002;
- }
- ul[_ngcontent-tnh-c147] li[_ngcontent-tnh-c147] {
- list-style: none;
- display: block;
- position: relative;
- min-width: 300px;
- margin-bottom: 10px;
- padding: 10px;
- box-sizing: border-box;
- color: rgba(255, 255, 255, 0.9);
- border-radius: 5px;
- box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.3);
- }
- ul[_ngcontent-tnh-c147] li[_ngcontent-tnh-c147] .icon[_ngcontent-tnh-c147] {
- color: white;
- border-right: 1px solid rgba(255, 255, 255, 0.3);
- padding-right: 10px;
- margin-right: 5px;
- }
- ul[_ngcontent-tnh-c147] li.error[_ngcontent-tnh-c147] {
- background: Tomato;
- }
- ul[_ngcontent-tnh-c147] li.warning[_ngcontent-tnh-c147] {
- background: #FF7900;
- }
- ul[_ngcontent-tnh-c147] li.success[_ngcontent-tnh-c147] {
- background: #4BB543;
- }
- ul[_ngcontent-tnh-c147] li.info[_ngcontent-tnh-c147] {
- background: #3264a0;
- }
- ul[_ngcontent-tnh-c147] li[_ngcontent-tnh-c147]:after {
- background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.2));
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- content: "";
- }
- ul[_ngcontent-tnh-c147] li.fading[_ngcontent-tnh-c147] {
- opacity: 0;
- transition: 0.5s all;
- }
- @charset "UTF-8";
- [_nghost-tnh-c138] {
- display: grid;
- grid-template-rows: auto 150px 100px 100px 200px auto;
- grid-template-columns: auto 500px auto;
- height: 100vh;
- background: linear-gradient(to bottom, rgba(50, 100, 160, 0.1), rgba(50, 100, 160, 0.1)), url("/assets/images/gunbg.png");
- }
- [_nghost-tnh-c138] .bg-footer[_ngcontent-tnh-c138] {
- grid-row-start: 4;
- grid-row-end: -1;
- grid-column-start: 1;
- grid-column-end: -1;
- background: #24282e;
- }
- [_nghost-tnh-c138] header[_ngcontent-tnh-c138] {
- background: url("/assets/images/serverlogo_big.png") no-repeat center;
- background-position-y: 0;
- grid-column: 2/span 1;
- grid-row: 2/span 1;
- }
- [_nghost-tnh-c138] main.small[_ngcontent-tnh-c138] {
- grid-row: 3/span 1;
- }
- [_nghost-tnh-c138] main.small[_ngcontent-tnh-c138] button[_ngcontent-tnh-c138] {
- margin-top: -10px;
- }
- [_nghost-tnh-c138] main[_ngcontent-tnh-c138] {
- grid-row: 3/span 2;
- grid-column: 2/span 1;
- z-index: 1;
- }
- [_nghost-tnh-c138] main[_ngcontent-tnh-c138] a[_ngcontent-tnh-c138] {
- color: #fff;
- text-decoration: none;
- }
- [_nghost-tnh-c138] main[_ngcontent-tnh-c138] a[_ngcontent-tnh-c138]:hover {
- margin-top: -1px;
- }
- [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fieldset[_ngcontent-tnh-c138] {
- background: #34373d;
- color: #eee;
- box-shadow: 0px 0px 20px 3px rgba(5, 5, 0, 0.2);
- border-radius: 5px;
- width: 400px;
- height: 100%;
- margin: auto;
- display: grid;
- grid-template-columns: -webkit-min-content auto;
- grid-template-columns: min-content auto;
- padding: 20px;
- }
- [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fieldset[_ngcontent-tnh-c138] .label[_ngcontent-tnh-c138] {
- background: #3264a0;
- color: #eee;
- grid-column-start: 1;
- height: 16px;
- padding: 10px;
- border-radius: 5px 0 0 5px;
- }
- [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fieldset[_ngcontent-tnh-c138] input[_ngcontent-tnh-c138] {
- margin-bottom: 20px;
- font-size: 15px;
- padding: 8px;
- background: #43474c;
- color: #eee;
- border: none;
- height: 20px;
- border-radius: 0 5px 5px 0;
- }
- [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fieldset[_ngcontent-tnh-c138] input[_ngcontent-tnh-c138]::-webkit-input-placeholder {
- color: #ddd;
- }
- [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fieldset[_ngcontent-tnh-c138] input[_ngcontent-tnh-c138]::-moz-placeholder {
- color: #ddd;
- }
- [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fieldset[_ngcontent-tnh-c138] input[_ngcontent-tnh-c138]:-ms-input-placeholder {
- color: #ddd;
- }
- [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fieldset[_ngcontent-tnh-c138] input[_ngcontent-tnh-c138]::-ms-input-placeholder {
- color: #ddd;
- }
- [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fieldset[_ngcontent-tnh-c138] input[_ngcontent-tnh-c138]::placeholder {
- color: #ddd;
- }
- [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fieldset[_ngcontent-tnh-c138] input[_ngcontent-tnh-c138]:focus {
- outline: 0;
- }
- [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fieldset[_ngcontent-tnh-c138] .checkbox[_ngcontent-tnh-c138] {
- -webkit-appearance: none;
- background-color: #fafafa;
- border: 1px solid #cacece;
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
- padding: 9px;
- border-radius: 3px;
- display: inline-block;
- position: relative;
- margin: 0;
- cursor: pointer;
- }
- [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fieldset[_ngcontent-tnh-c138] .checkbox[_ngcontent-tnh-c138]:checked {
- background-color: #e9ecee;
- border: 1px solid #adb8c0;
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
- color: #99a1a7;
- }
- [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fieldset[_ngcontent-tnh-c138] .checkbox[_ngcontent-tnh-c138]:checked:after {
- content: "✔";
- font-size: 14px;
- position: absolute;
- top: 0;
- left: 3px;
- color: #99a1a7;
- }
- [_nghost-tnh-c138] main[_ngcontent-tnh-c138] button[_ngcontent-tnh-c138] {
- padding: 8px;
- border: 0;
- font-size: 14px;
- cursor: pointer;
- background: #3264a0;
- color: white;
- width: 100%;
- border-radius: 5px;
- height: 40px;
- margin-top: 15px;
- }
- [_nghost-tnh-c138] main[_ngcontent-tnh-c138] button[_ngcontent-tnh-c138]:disabled,
- [_nghost-tnh-c138] main[_ngcontent-tnh-c138] button[disabled][_ngcontent-tnh-c138] {
- background: #888 !important;
- }
- [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fat[_ngcontent-tnh-c138] {
- grid-column: 1/span 2;
- }
- [_nghost-tnh-c138] main[_ngcontent-tnh-c138] footer[_ngcontent-tnh-c138] {
- text-align: center;
- margin-top: 10px;
- font-size: 14px;
- }
- [_nghost-tnh-c138] main[_ngcontent-tnh-c138] footer[_ngcontent-tnh-c138] a[_ngcontent-tnh-c138] {
- text-decoration: none;
- color: #aaa;
- margin: 0 20px 0 20px;
- }
- [_nghost-tnh-c137] {
- grid-row-start: 1;
- grid-row-end: 4;
- position: relative;
- background: #24282e;
- }
- [_nghost-tnh-c137] #panel[_ngcontent-tnh-c137] {
- background: #24282e;
- width: 230px;
- transition: all 0.3s;
- z-index: 3;
- }
- [_nghost-tnh-c137] #panel[_ngcontent-tnh-c137] *[_ngcontent-tnh-c137] {
- white-space: nowrap;
- }
- .phone-header[_ngcontent-tnh-c137] {
- display: none;
- }
- #panel.compact[_ngcontent-tnh-c137] {
- width: 50px;
- }
- #panel.compact[_ngcontent-tnh-c137] .category[_ngcontent-tnh-c137] {
- display: none;
- }
- #panel.compact[_ngcontent-tnh-c137] .user[_ngcontent-tnh-c137] {
- padding: 0;
- }
- #panel.compact[_ngcontent-tnh-c137] .user[_ngcontent-tnh-c137] .name[_ngcontent-tnh-c137],
- #panel.compact[_ngcontent-tnh-c137] .user[_ngcontent-tnh-c137] .description[_ngcontent-tnh-c137] {
- display: none;
- }
- #panel.compact[_ngcontent-tnh-c137] .user[_ngcontent-tnh-c137] .avatar[_ngcontent-tnh-c137] {
- width: 50px;
- height: 50px;
- border-radius: 0;
- }
- #panel.compact[_ngcontent-tnh-c137] .user[_ngcontent-tnh-c137] .icons[_ngcontent-tnh-c137] {
- display: none;
- }
- #panel.compact[_ngcontent-tnh-c137] .menu[_ngcontent-tnh-c137] li[_ngcontent-tnh-c137] {
- font-size: 1.25em;
- }
- #panel.compact[_ngcontent-tnh-c137] .menu[_ngcontent-tnh-c137] li[_ngcontent-tnh-c137] .link-label[_ngcontent-tnh-c137] {
- display: none;
- }
- #panel.compact[_ngcontent-tnh-c137] .phone-header[_ngcontent-tnh-c137] {
- margin: 3px;
- font-size: 1.25em;
- }
- @media only screen and (max-width: 800px) {
- #panel[_ngcontent-tnh-c137] {
- position: fixed;
- top: 0;
- left: 0;
- width: 230px;
- height: 100%;
- overflow-y: scroll;
- }
- header[_ngcontent-tnh-c137] {
- display: none;
- }
- .phone-header[_ngcontent-tnh-c137] {
- color: white;
- border-bottom: 1px solid rgba(255, 255, 255, 0.2);
- padding: 10px;
- margin: 10px;
- display: block;
- }
- }
- header[_ngcontent-tnh-c137] {
- color: #fff;
- z-index: 5;
- background-image: url('/assets/images/serverlogo.png');
- background-repeat: no-repeat;
- background-size: 90%;
- background-position: center;
- padding: 27px;
- height: 50px;
- }
- header[_ngcontent-tnh-c137] h1[_ngcontent-tnh-c137] {
- font-size: 20px;
- display: none;
- }
- .user[_ngcontent-tnh-c137] {
- width: 100%;
- padding: 10px 10px 10px 10px;
- background: #24282e;
- position: relative;
- box-sizing: border-box;
- font-size: 1em;
- }
- .user[_ngcontent-tnh-c137] .avatar[_ngcontent-tnh-c137] {
- width: 45px;
- height: 45px;
- display: inline-block;
- }
- .user[_ngcontent-tnh-c137] .avatar[_ngcontent-tnh-c137] img[_ngcontent-tnh-c137] {
- width: 100%;
- height: 100%;
- border-radius: 50px;
- }
- .user[_ngcontent-tnh-c137] .description[_ngcontent-tnh-c137] {
- display: inline-block;
- vertical-align: top;
- padding-left: 10px;
- color: white;
- line-height: 1;
- }
- .user[_ngcontent-tnh-c137] .description[_ngcontent-tnh-c137] .rank[_ngcontent-tnh-c137] {
- color: rgba(255, 255, 255, 0.75);
- display: block;
- line-height: 1;
- font-size: 1em;
- }
- .user[_ngcontent-tnh-c137] .icons[_ngcontent-tnh-c137] {
- color: rgba(255, 255, 255, 0.75);
- display: inline;
- position: absolute;
- bottom: 10px;
- right: 10px;
- text-align: right;
- }
- .user[_ngcontent-tnh-c137] .icons[_ngcontent-tnh-c137] a[_ngcontent-tnh-c137] {
- margin-left: 5px;
- cursor: pointer;
- }
- .user[_ngcontent-tnh-c137] .icons[_ngcontent-tnh-c137] .icon[_ngcontent-tnh-c137]:hover {
- color: white;
- }
- .user[_ngcontent-tnh-c137] .icons[_ngcontent-tnh-c137] .selected[_ngcontent-tnh-c137] {
- color: #ffffff !important;
- border-bottom: 3px solid #3264a0;
- }
- .category[_ngcontent-tnh-c137] {
- background: #24282e;
- padding: 10px;
- margin-top: 5px;
- cursor: pointer;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- .category[_ngcontent-tnh-c137] h2[_ngcontent-tnh-c137] {
- font-size: 1em;
- font-weight: bold;
- color: white;
- text-align: left;
- }
- .category[_ngcontent-tnh-c137] .change[_ngcontent-tnh-c137] {
- text-align: center;
- text-decoration: none;
- font-size: 10px;
- }
- .category[_ngcontent-tnh-c137] .collapse[_ngcontent-tnh-c137] {
- float: right;
- color: rgba(255, 255, 255, 0.8);
- }
- .category[_ngcontent-tnh-c137] .collapse[_ngcontent-tnh-c137]:hover {
- color: white;
- }
- ul.menu[_ngcontent-tnh-c137] li[_ngcontent-tnh-c137] {
- color: rgba(255, 255, 255, 0.9);
- padding: 5px 5px 5px 10px;
- margin-top: 5px;
- cursor: pointer;
- font-size: 1em;
- list-style-type: none;
- outline: none;
- }
- ul.menu[_ngcontent-tnh-c137] li[_ngcontent-tnh-c137] a[_ngcontent-tnh-c137] {
- text-decoration: none;
- color: inherit;
- }
- ul.menu[_ngcontent-tnh-c137] li[_ngcontent-tnh-c137] .link-label[_ngcontent-tnh-c137] {
- margin-left: 10px;
- }
- ul.menu[_ngcontent-tnh-c137] li[_ngcontent-tnh-c137] svg[_ngcontent-tnh-c137] {
- color: rgba(255, 255, 255, 0.5);
- }
- ul.menu[_ngcontent-tnh-c137] li[_ngcontent-tnh-c137]:hover {
- color: white;
- }
- ul.menu[_ngcontent-tnh-c137] li.selected[_ngcontent-tnh-c137] {
- border-left: 3px solid #3264a0;
- padding-left: 7px;
- color: white;
- }
- ul.menu[_ngcontent-tnh-c137] li.selected[_ngcontent-tnh-c137] svg[_ngcontent-tnh-c137] {
- color: white;
- }
- ul.menu[_ngcontent-tnh-c137] li[_ngcontent-tnh-c137]:last-child {
- margin-bottom: 20px !important;
- }
- .controlpanel[_ngcontent-tnh-c137] {
- position: relative;
- z-index: 1;
- text-shadow: 0 0 5px black;
- font-size: 15px;
- }
- .controlpanel[_ngcontent-tnh-c137]:before {
- content: "";
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- left: 0;
- background-image: url("/assets/images/controlpanel.png");
- z-index: -1;
- opacity: 1;
- }
- .gov[_ngcontent-tnh-c137] {
- position: relative;
- z-index: 1;
- text-shadow: 0 0 5px black;
- font-size: 15px;
- }
- .gov[_ngcontent-tnh-c137]:before {
- content: "";
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- left: 0;
- background-image: url("/assets/images/gov-menu.png");
- z-index: -1;
- opacity: 0.5;
- }
- @media only screen and (max-width: 800px) {
- [_nghost-tnh-c140] {
- grid-row: 1/span 1 !important;
- grid-column: 1/span 1 !important;
- }
- #wrapper[_ngcontent-tnh-c140] {
- grid-template-columns: auto 175px auto 100px !important;
- }
- }
- [_nghost-tnh-c140] {
- padding: 4px;
- background: #323439;
- z-index: 1;
- position: relative;
- font-size: 14px;
- }
- [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] {
- display: grid;
- padding: 5px;
- overflow: auto;
- grid-template-columns: auto -webkit-min-content;
- grid-template-columns: auto min-content;
- width: 100%;
- }
- [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .icons[_ngcontent-tnh-c140] {
- font-weight: bold;
- text-align: right;
- margin: 0px 10px 0 0px;
- cursor: pointer;
- font-size: 1em;
- display: flex;
- align-items: center;
- white-space: nowrap;
- }
- [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .icons[_ngcontent-tnh-c140] .user[_ngcontent-tnh-c140] {
- display: flex;
- align-content: center;
- font-weight: 500;
- cursor: pointer;
- }
- [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .icons[_ngcontent-tnh-c140] .user[_ngcontent-tnh-c140] .avatar[_ngcontent-tnh-c140] {
- border-radius: 50%;
- background-size: 100%;
- height: 30px;
- width: 30px;
- position: relative;
- margin-left: 10px;
- }
- [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .icons[_ngcontent-tnh-c140] .user[_ngcontent-tnh-c140] .avatar[_ngcontent-tnh-c140] .dropdown[_ngcontent-tnh-c140] {
- color: white;
- position: absolute;
- bottom: -5px;
- right: -5px;
- }
- [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .icons[_ngcontent-tnh-c140] .user[_ngcontent-tnh-c140] .name[_ngcontent-tnh-c140] {
- color: white;
- line-height: 1.2;
- }
- [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .icons[_ngcontent-tnh-c140] .user[_ngcontent-tnh-c140] .name[_ngcontent-tnh-c140] .rank[_ngcontent-tnh-c140] {
- color: #ddd;
- font-weight: 400;
- }
- [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .icons[_ngcontent-tnh-c140] .icon-group[_ngcontent-tnh-c140] {
- display: inline-block;
- position: relative;
- }
- [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .icons[_ngcontent-tnh-c140] .icon[_ngcontent-tnh-c140] {
- margin: 0 0 0 10px;
- color: #eee;
- background: rgba(255, 255, 255, 0.1);
- padding: 10px;
- border-radius: 50px;
- position: relative;
- }
- [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .icons[_ngcontent-tnh-c140] .icon[_ngcontent-tnh-c140]:hover {
- cursor: pointer;
- background: rgba(255, 255, 255, 0.2);
- }
- [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .icons[_ngcontent-tnh-c140] .notice[_ngcontent-tnh-c140] {
- font-size: 0.9em;
- line-height: 1.5em;
- background: red;
- width: 18px;
- height: 18px;
- text-align: center;
- border-radius: 20px;
- position: absolute;
- right: 0;
- color: rgba(255, 255, 255, 0.6);
- top: 0;
- }
- [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .icons[_ngcontent-tnh-c140] .seen[_ngcontent-tnh-c140] {
- background: white;
- color: #444;
- }
- [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .links[_ngcontent-tnh-c140] {
- margin: 3px 0 0 0;
- list-style: none;
- }
- [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .links[_ngcontent-tnh-c140] li[_ngcontent-tnh-c140] {
- display: inline-block;
- margin-right: 10px;
- color: rgba(255, 255, 255, 0.5);
- background: rgba(255, 255, 255, 0.1);
- padding: 5px 10px;
- border-radius: 5px;
- font-size: 1em;
- }
- [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .links[_ngcontent-tnh-c140] li[_ngcontent-tnh-c140]:hover {
- cursor: pointer;
- background: rgba(255, 255, 255, 0.2);
- color: rgba(255, 255, 255, 0.8);
- }
- .social[_ngcontent-tnh-c140] {
- margin: 3px 0 0 20px;
- }
- .social[_ngcontent-tnh-c140] .discord[_ngcontent-tnh-c140]:hover {
- color: #7289da;
- }
- .social[_ngcontent-tnh-c140] .teamspeak[_ngcontent-tnh-c140]:hover {
- color: #87acba;
- }
- .social[_ngcontent-tnh-c140] .youtube[_ngcontent-tnh-c140]:hover {
- color: red;
- }
- .social[_ngcontent-tnh-c140] .twitter[_ngcontent-tnh-c140]:hover {
- color: #00aced;
- }
- .social[_ngcontent-tnh-c140]>*[_ngcontent-tnh-c140] {
- background: rgba(255, 255, 255, 0.1);
- padding: 5px;
- border-radius: 5px;
- margin: 0 5px 0 5px;
- color: rgba(255, 255, 255, 0.5);
- }
- .social[_ngcontent-tnh-c140]>*[_ngcontent-tnh-c140]:hover {
- cursor: pointer;
- background: rgba(255, 255, 255, 0.2);
- }
- [_nghost-tnh-c139] {
- padding: 10px;
- font-size: 0.8em;
- color: rgba(0, 0, 0, 0.5);
- height: 1fr;
- background: linear-gradient(to bottom, #eee, #f5f5f5);
- text-align: center;
- }
- [_nghost-tnh-c139] .links[_ngcontent-tnh-c139] a[_ngcontent-tnh-c139] {
- text-decoration: none;
- padding: 0 10px;
- }
- .container[_ngcontent-tnh-c207] {
- position: absolute;
- background: white;
- right: 60px;
- min-width: 300px;
- top: 60px;
- box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
- text-align: left;
- cursor: default;
- font-size: 16px;
- padding: 10px;
- box-sizing: border-box;
- font-weight: 400;
- display: grid;
- grid-template-columns: 80px auto;
- grid-gap: 10px;
- z-index: 5;
- }
- .avatar[_ngcontent-tnh-c207] {
- width: 80px;
- height: 80px;
- }
- .menu[_ngcontent-tnh-c207] {
- float: right;
- display: inline-block;
- }
- .menu[_ngcontent-tnh-c207] .menu-icon[_ngcontent-tnh-c207] {
- color: #666;
- padding-left: 10px;
- cursor: pointer;
- }
- .menu[_ngcontent-tnh-c207] .menu-icon[_ngcontent-tnh-c207]:hover {
- color: black;
- }
- .characters[_ngcontent-tnh-c207] {
- border-top: 1px solid #ddd;
- grid-column: 1/-1;
- padding-top: 10px;
- }
- .characters[_ngcontent-tnh-c207] .character[_ngcontent-tnh-c207] {
- display: inline-block;
- width: 25px;
- height: 25px;
- background-size: 300%;
- background-position: center top 3px;
- background-repeaT: no-repeat;
- border-radius: 50%;
- background-color: #ddd;
- margin-right: 5px;
- cursor: pointer;
- }
- [_nghost-tnh-c159] {
- position: absolute;
- top: 55px;
- left: 0;
- width: 100%;
- height: 5px;
- background: #f6f6f6;
- }
- [_nghost-tnh-c159] .loadingbar[_ngcontent-tnh-c159] {
- width: 100%;
- height: 100%;
- }
- [_nghost-tnh-c159] .active[_ngcontent-tnh-c159] {
- background: linear-gradient(182deg, #3264a0, #eaf4ff);
- background-size: 400% 400%;
- -webkit-animation: LoadingSlider 2s ease infinite;
- animation: LoadingSlider 2s ease infinite;
- }
- @-webkit-keyframes LoadingSlider {
- 0% {
- background-position: 68% 0%;
- }
- 50% {
- background-position: 33% 100%;
- }
- 100% {
- background-position: 68% 0%;
- }
- }
- @keyframes LoadingSlider {
- 0% {
- background-position: 68% 0%;
- }
- 50% {
- background-position: 33% 100%;
- }
- 100% {
- background-position: 68% 0%;
- }
- }
- .active[_ngcontent-tnh-c150] {
- visibility: visible !important;
- }
- .notifications[_ngcontent-tnh-c150]:after {
- background: white;
- width: 20px;
- height: 20px;
- pointer-events: none;
- border-radius: 3px;
- position: absolute;
- right: 10px;
- top: 0;
- transform: rotate(45deg);
- content: "";
- }
- .notifications[_ngcontent-tnh-c150] {
- visibility: hidden;
- position: absolute;
- right: 10px;
- top: 50px;
- background: white;
- border-radius: 5px;
- box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.1);
- }
- .notifications[_ngcontent-tnh-c150] header[_ngcontent-tnh-c150] {
- padding: 15px 10px 10px 17px;
- border-bottom: 1px solid #eee;
- }
- .notifications[_ngcontent-tnh-c150] header[_ngcontent-tnh-c150] h2[_ngcontent-tnh-c150] {
- display: inline;
- font-size: 1em;
- font-weight: 500;
- color: #888;
- }
- .notifications[_ngcontent-tnh-c150] header[_ngcontent-tnh-c150] .close[_ngcontent-tnh-c150] {
- margin-top: 4px;
- margin-left: 10px;
- }
- .notifications[_ngcontent-tnh-c150] footer[_ngcontent-tnh-c150] {
- color: #333;
- background: #eee;
- padding: 10px;
- border-radius: 0 0 8px 8px;
- }
- .notifications[_ngcontent-tnh-c150] ul[_ngcontent-tnh-c150] {
- padding: 10px;
- }
- .notifications[_ngcontent-tnh-c150] ul[_ngcontent-tnh-c150] li[_ngcontent-tnh-c150] {
- list-style: none;
- margin-bottom: 5px;
- padding: 5px;
- display: flex;
- }
- .notifications[_ngcontent-tnh-c150] ul[_ngcontent-tnh-c150] li[_ngcontent-tnh-c150] .label[_ngcontent-tnh-c150] {
- font-weight: 500;
- }
- .notifications[_ngcontent-tnh-c150] ul[_ngcontent-tnh-c150] li[_ngcontent-tnh-c150] .label[_ngcontent-tnh-c150] .time[_ngcontent-tnh-c150] {
- display: block;
- color: #888;
- }
- .notifications[_ngcontent-tnh-c150] ul[_ngcontent-tnh-c150] li[_ngcontent-tnh-c150] .icon[_ngcontent-tnh-c150] {
- background: #3264a0;
- color: white;
- border-radius: 50px;
- height: -webkit-min-content;
- height: -moz-min-content;
- height: min-content;
- padding: 10px 8px;
- margin-right: 15px;
- }
- .notifications[_ngcontent-tnh-c150] ul[_ngcontent-tnh-c150] li.read[_ngcontent-tnh-c150] {
- background: transparent;
- }
- .notifications[_ngcontent-tnh-c150] ul[_ngcontent-tnh-c150] li.read[_ngcontent-tnh-c150] .label[_ngcontent-tnh-c150] {
- font-weight: 400;
- }
- .notifications[_ngcontent-tnh-c150] ul[_ngcontent-tnh-c150] li.read[_ngcontent-tnh-c150] .icon[_ngcontent-tnh-c150] {
- background: #eee;
- color: black;
- }
- .frozen[_ngcontent-tnh-c142] {
- -webkit-filter: grayscale(90%);
- filter: grayscale(90%);
- }
- .character_preview[_ngcontent-tnh-c142] {
- background-color: #fff;
- background-repeat: no-repeat;
- background-position: -110px 30px;
- min-height: 200px;
- cursor: pointer;
- line-height: normal;
- box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.15);
- padding: 15px;
- box-sizing: border-box;
- }
- .character_preview[_ngcontent-tnh-c142] .character_ic_info[_ngcontent-tnh-c142] {
- float: right;
- padding-top: 10px;
- padding-right: 10px;
- line-height: normal;
- text-shadow: 0 0 9px #fff;
- min-width: 50%;
- }
- .character_preview[_ngcontent-tnh-c142] .character_ic_info[_ngcontent-tnh-c142] .key[_ngcontent-tnh-c142] {
- display: block;
- font-size: 12px;
- text-transform: uppercase;
- line-height: normal;
- margin-right: 20px;
- }
- .character_preview[_ngcontent-tnh-c142] .character_ic_info[_ngcontent-tnh-c142] .value[_ngcontent-tnh-c142] {
- display: block;
- font-size: 14px;
- font-weight: bold;
- margin-bottom: 5px;
- line-height: normal;
- }
- .app-info[_ngcontent-tnh-c142] {
- margin-left: 150px;
- display: block;
- }
- [_nghost-tnh-c219] .map-section[_ngcontent-tnh-c219] {
- width: 100%;
- height: 100%;
- background-repeat: no-repeat;
- position: relative;
- display: block;
- }
- [_nghost-tnh-c219] .map-section[_ngcontent-tnh-c219] .marker[_ngcontent-tnh-c219] {
- width: 16px;
- height: 16px;
- position: absolute;
- top: 50px;
- left: calc(50% - 8px);
- }
- [_nghost-tnh-c219] .map-section[_ngcontent-tnh-c219] .marker.house[_ngcontent-tnh-c219] {
- background: url("./mapicons/house.gif");
- background-size: 100%;
- background-repeat: no-repeat;
- }
- [_nghost-tnh-c219] .map-section[_ngcontent-tnh-c219] .marker.housered[_ngcontent-tnh-c219] {
- background: url("./mapicons/housered.gif");
- background-size: 100%;
- background-repeat: no-repeat;
- }
- [_nghost-tnh-c219] .vector[_ngcontent-tnh-c219] {
- background-image: url("https://mmrtn.net/map/res/img/mapa.svg");
- color: black;
- }
- .frozen[_ngcontent-tnh-c145]>*[_ngcontent-tnh-c145] {
- -webkit-filter: grayscale(80%);
- filter: grayscale(80%);
- }
- .header[_ngcontent-tnh-c145] {
- -webkit-filter: none !important;
- filter: none !important;
- }
- .property[_ngcontent-tnh-c145] {
- box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.2);
- }
- .map-buttons[_ngcontent-tnh-c145] {
- float: right;
- display: inline-block;
- }
- .address[_ngcontent-tnh-c145] {
- font-size: 14px;
- }
- .marker[_ngcontent-tnh-c145] {
- width: 16px;
- height: 16px;
- position: absolute;
- top: calc(50% - 18px);
- left: calc(50% - 8px);
- }
- .marker.house[_ngcontent-tnh-c145] {
- background: url("./mapicons/house.gif");
- background-size: 100%;
- background-repeat: no-repeat;
- }
- .marker.housered[_ngcontent-tnh-c145] {
- background: url("./mapicons/housered.gif");
- background-size: 100%;
- background-repeat: no-repeat;
- }
- .vehicle[_ngcontent-tnh-c145] {
- height: 220px;
- padding: 10px;
- background-color: rgba(186, 224, 247, 0.7);
- border-radius: 0px;
- box-shadow: 2px 2px 7px 0 rgba(0, 0, 0, 0.15);
- }
- [_nghost-tnh-c216] {
- text-transform: uppercase;
- font-size: 12px;
- font-weight: 500;
- letter-spacing: 1px;
- border: 0;
- display: inline-block;
- white-space: nowrap;
- position: relative;
- }
- [_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
- padding: 8px 8px 8px 8px;
- border-radius: 3px;
- box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
- position: relative;
- background: white;
- }
- *[_ngcontent-tnh-c216]:disabled {
- pointer-events: none;
- color: red !important;
- }
- .button[_ngcontent-tnh-c216]:hover {
- -webkit-transform: scale(0.98);
- }
- .green[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
- background: linear-gradient(#61cf55, #57af4b);
- color: white;
- }
- .red[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
- background: linear-gradient(#ff3838, #d13636);
- color: white;
- }
- .grey[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
- background: linear-gradient(#333, #222);
- color: white;
- }
- .no-shadow[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
- box-shadow: none !important;
- }
- .tomato[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
- background: linear-gradient(Tomato, #d95a3e);
- color: white;
- }
- .tomato-text[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
- color: Tomato;
- }
- .thin[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
- padding: 4px 4px 4px 2px;
- }
- .blue[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
- background: linear-gradient(#3264a0, #325d99);
- color: white;
- }
- .shadow[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
- box-shadow: 2px 2px 10px 3px rgba(0, 0, 0, 0.25);
- }
- .blue-border[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
- border: 2px solid #31425C;
- }
- .border-radius-right[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
- border-radius: 0 5px 5px 0;
- }
- .icon[_ngcontent-tnh-c216] {
- display: inline-block;
- padding-left: 4px;
- padding-right: 4px !important;
- }
- .caption[_ngcontent-tnh-c216] {
- display: inline-block;
- padding-left: 4px;
- padding-right: 4px;
- }
- .right[_ngcontent-tnh-c216] {
- padding: 8px 4px 8px 8px !important;
- }
- .right[_ngcontent-tnh-c216] .icon[_ngcontent-tnh-c216] {
- float: right;
- }
- .btn-wrapper[_ngcontent-tnh-c216] {
- cursor: pointer;
- }
- .btn-wrapper.disabled[_ngcontent-tnh-c216] {
- cursor: not-allowed;
- -webkit-filter: grayscale(100%);
- filter: grayscale(100%);
- }
- .btn-wrapper.disabled[_ngcontent-tnh-c216] .button[_ngcontent-tnh-c216] {
- pointer-events: none;
- }
- .more[_ngcontent-tnh-c216] {
- visibility: hidden;
- opacity: 0;
- position: absolute;
- right: 0px;
- top: calc(100% + 10px);
- color: #888;
- box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.15);
- z-index: 2;
- background: white;
- padding: 10px;
- list-style: none;
- border-radius: 3px;
- font-size: 14px;
- transition: opacity 0.2s;
- }
- .more[_ngcontent-tnh-c216] li[_ngcontent-tnh-c216]:not(:last-child) {
- border-bottom: 1px solid #eee;
- padding-bottom: 5px;
- margin-bottom: 5px;
- }
- .more[_ngcontent-tnh-c216] li[_ngcontent-tnh-c216] {
- text-transform: none;
- font-weight: 500;
- }
- .more[_ngcontent-tnh-c216] li[_ngcontent-tnh-c216]:hover {
- color: #333;
- }
- .moreVisible[_ngcontent-tnh-c216] {
- visibility: visible;
- opacity: 1;
- }
- .preview[_ngcontent-tnh-c164] {
- height: 200px;
- position: relative;
- background-color: rgba(186, 224, 247, 0.5);
- }
- .marker[_ngcontent-tnh-c164] {
- width: 16px;
- height: 16px;
- position: absolute;
- top: calc(50% - 8px);
- left: calc(50% - 8px);
- color: white;
- }
- .previewContainer[_ngcontent-tnh-c166] {
- position: relative;
- width: 100%;
- height: 100%;
- }
- .loader[_ngcontent-tnh-c166] {
- text-align: center;
- width: 100%;
- box-sizing: border-box;
- position: absolute;
- top: 45%;
- left: 0;
- opacity: 0.7;
- text-transform: uppercase;
- font-weight: bold;
- }
- .preview[_ngcontent-tnh-c166] {
- background-size: contain;
- background-repeat: no-repeat;
- background-position: center;
- position: absolute;
- }
- .infobar[_ngcontent-tnh-c215] {
- display: block;
- float: left;
- position: relative;
- width: 100%;
- background: white;
- box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.15);
- }
- .error[_ngcontent-tnh-c215] {
- border-top: 3px solid Tomato;
- }
- .error[_ngcontent-tnh-c215] .icon[_ngcontent-tnh-c215] {
- color: Tomato;
- }
- .warning[_ngcontent-tnh-c215] {
- border-top: 3px solid orange;
- }
- .warning[_ngcontent-tnh-c215] .icon[_ngcontent-tnh-c215] {
- color: orange;
- }
- .success[_ngcontent-tnh-c215] {
- border-top: 3px solid #4BB543;
- }
- .success[_ngcontent-tnh-c215] .icon[_ngcontent-tnh-c215] {
- color: #4BB543;
- }
- .info[_ngcontent-tnh-c215] {
- border-top: 3px solid #3264a0;
- }
- .info[_ngcontent-tnh-c215] .icon[_ngcontent-tnh-c215] {
- color: #3264a0;
- }
- .icon[_ngcontent-tnh-c215] {
- display: inline-block;
- border-right: 1px solid #eee;
- padding: 4px 8px;
- margin: 4px 5px 4px 0;
- float: left;
- position: absolute;
- top: 0;
- bottom: 0;
- }
- .message[_ngcontent-tnh-c215] {
- display: inline-block;
- padding: 8px;
- color: #333;
- width: calc(100% - 55px);
- float: right;
- }
- .layer[_ngcontent-tnh-c154] {
- background: rgba(255, 255, 255, 0.9);
- width: 100%;
- height: 100%;
- }
- .container[_ngcontent-tnh-c154] {
- width: 100%;
- height: 700px;
- overflow: hidden;
- }
- [_nghost-tnh-c154] {
- position: relative;
- overflow: hidden;
- }
- .content[_ngcontent-tnh-c154] {
- position: relative;
- }
- .character[_ngcontent-tnh-c154] {
- color: #333;
- }
- .players[_ngcontent-tnh-c154]>li[_ngcontent-tnh-c154] {
- display: inline;
- }
- .players[_ngcontent-tnh-c154]>li[_ngcontent-tnh-c154]:after {
- content: " ";
- }
- .players[_ngcontent-tnh-c154]>li[_ngcontent-tnh-c154]:nth-last-child(1):after {
- content: "";
- }
- .charname[_ngcontent-tnh-c154] {
- color: #888;
- }
- .charname[_ngcontent-tnh-c154]:before {
- content: "(";
- }
- .charname[_ngcontent-tnh-c154]:after {
- content: ")";
- }
- .alternate[_ngcontent-tnh-c154]>li[_ngcontent-tnh-c154]:nth-child(odd) {
- color: #888;
- font-weight: bold;
- }
- .preview[_ngcontent-tnh-c163] {
- background: linear-gradient(to bottom, #cde2ef, #bae0f7);
- padding: 10px;
- color: #336699;
- position: relative;
- height: 380px;
- }
- .preview[_ngcontent-tnh-c163] .scene[_ngcontent-tnh-c163] {
- position: absolute;
- top: 0;
- left: 35%;
- width: 100%;
- height: 100%;
- border: 0;
- }
- .preview[_ngcontent-tnh-c163] .header[_ngcontent-tnh-c163] {
- font-weight: bold;
- position: absolute;
- top: 15px;
- left: 15px;
- font-size: 16px !important;
- padding-bottom: 5px;
- float: left;
- z-index: 2;
- }
- .preview[_ngcontent-tnh-c163] .header[_ngcontent-tnh-c163] .credit[_ngcontent-tnh-c163] {
- display: block;
- font-weight: normal;
- opacity: 0.5;
- font-size: 14px;
- }
- .preview[_ngcontent-tnh-c163] .properties[_ngcontent-tnh-c163] {
- font-size: 14px;
- padding: 5px;
- z-index: 22222;
- text-align: right;
- color: rgba(51, 102, 153, 0.51);
- font-weight: bold;
- float: right;
- }
- .skins[_ngcontent-tnh-c163] {
- display: grid;
- grid-template-columns: repeat(6, 1fr);
- grid-gap: 10px;
- }
- .skins[_ngcontent-tnh-c163] .skin[_ngcontent-tnh-c163] {
- background-repeat: no-repeat;
- background-size: auto 100%;
- background-position: center;
- height: 220px;
- cursor: pointer;
- }
- .skinFilterChoice[_ngcontent-tnh-c163] {
- cursor: pointer;
- }
- .skinFilterChoice.selected[_ngcontent-tnh-c163] {
- font-weight: bold;
- color: #336699 !important;
- }
- .paused[_ngcontent-tnh-c163] {
- opacity: 0.5;
- }
- [_nghost-tnh-c216] {
- text-transform: uppercase;
- font-size: 12px;
- font-weight: 500;
- letter-spacing: 1px;
- border: 0;
- display: inline-block;
- white-space: nowrap;
- position: relative;
- }
- [_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
- padding: 8px 8px 8px 8px;
- border-radius: 3px;
- box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
- position: relative;
- background: white;
- }
- *[_ngcontent-tnh-c216]:disabled {
- pointer-events: none;
- color: red !important;
- }
- .button[_ngcontent-tnh-c216]:hover {
- -webkit-transform: scale(0.98);
- }
- .green[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
- background: linear-gradient(#61cf55, #57af4b);
- color: white;
- }
- .red[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
- background: linear-gradient(#ff3838, #d13636);
- color: white;
- }
- .grey[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
- background: linear-gradient(#333, #222);
- color: white;
- }
- .no-shadow[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
- box-shadow: none !important;
- }
- .tomato[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
- background: linear-gradient(Tomato, #d95a3e);
- color: white;
- }
- .tomato-text[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
- color: Tomato;
- }
- .thin[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
- padding: 4px 4px 4px 2px;
- }
- .blue[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
- background: linear-gradient(#3264a0, #325d99);
- color: white;
- }
- .shadow[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
- box-shadow: 2px 2px 10px 3px rgba(0, 0, 0, 0.25);
- }
- .blue-border[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
- border: 2px solid #31425C;
- }
- .border-radius-right[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
- border-radius: 0 5px 5px 0;
- }
- .icon[_ngcontent-tnh-c216] {
- display: inline-block;
- padding-left: 4px;
- padding-right: 4px !important;
- }
- .caption[_ngcontent-tnh-c216] {
- display: inline-block;
- padding-left: 4px;
- padding-right: 4px;
- }
- .right[_ngcontent-tnh-c216] {
- padding: 8px 4px 8px 8px !important;
- }
- .right[_ngcontent-tnh-c216] .icon[_ngcontent-tnh-c216] {
- float: right;
- }
- .btn-wrapper[_ngcontent-tnh-c216] {
- cursor: pointer;
- }
- .btn-wrapper.disabled[_ngcontent-tnh-c216] {
- cursor: not-allowed;
- -webkit-filter: grayscale(100%);
- filter: grayscale(100%);
- }
- .btn-wrapper.disabled[_ngcontent-tnh-c216] .button[_ngcontent-tnh-c216] {
- pointer-events: none;
- }
- .more[_ngcontent-tnh-c216] {
- visibility: hidden;
- opacity: 0;
- position: absolute;
- right: 0px;
- top: calc(100% + 10px);
- color: #888;
- box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.15);
- z-index: 2;
- background: white;
- padding: 10px;
- list-style: none;
- border-radius: 3px;
- font-size: 14px;
- transition: opacity 0.2s;
- }
- .more[_ngcontent-tnh-c216] li[_ngcontent-tnh-c216]:not(:last-child) {
- border-bottom: 1px solid #eee;
- padding-bottom: 5px;
- margin-bottom: 5px;
- }
- .more[_ngcontent-tnh-c216] li[_ngcontent-tnh-c216] {
- text-transform: none;
- font-weight: 500;
- }
- .more[_ngcontent-tnh-c216] li[_ngcontent-tnh-c216]:hover {
- color: #333;
- }
- .moreVisible[_ngcontent-tnh-c216] {
- visibility: visible;
- opacity: 1;
- }
- iframe {
- width: 500px;
- /* It should not be 100% */
- height: 500px:
- margin-left: auto;
- /* Automatic margin from left */
- margin-right: auto;
- /* Automatic margin from right */
- overflow: hidden;
- }
- ul[_ngcontent-tnh-c149] {
- padding-left: 30px;
- display: inline-block;
- float: right;
- }
- ul[_ngcontent-tnh-c149] li[_ngcontent-tnh-c149] {
- display: inline-block;
- margin-right: 10px;
- margin: 5px 10px 5px 10px;
- cursor: pointer;
- outline: none;
- }
- ul[_ngcontent-tnh-c149] .selected[_ngcontent-tnh-c149] {
- border-bottom: 2px solid #1e263d;
- padding-bottom: 3px;
- }
- ul[_ngcontent-tnh-c149] li[_ngcontent-tnh-c149]:not(.selected):hover {
- border-bottom: 2px solid rgba(30, 38, 61, 0.44);
- padding-bottom: 3px;
- }
- p[_ngcontent-tnh-c174] {
- -webkit-hyphens: auto;
- -ms-hyphens: auto;
- hyphens: auto;
- }
- .connected-service[_ngcontent-tnh-c174] {
- width: 100%;
- height: 50px;
- background: #f5f5f5;
- }
- .connected-service[_ngcontent-tnh-c174] .icon[_ngcontent-tnh-c174] {
- height: 50px;
- width: 50px;
- font-size: 35px;
- display: inline-block;
- float: left;
- }
- .connected-service[_ngcontent-tnh-c174] .avatar[_ngcontent-tnh-c174] {
- height: 50px;
- width: 50px;
- display: inline-block;
- float: left;
- padding: 5px;
- box-sizing: border-box;
- }
- .connected-service[_ngcontent-tnh-c174] .avatar[_ngcontent-tnh-c174] img[_ngcontent-tnh-c174] {
- width: 100%;
- height: 100%;
- }
- .connected-service[_ngcontent-tnh-c174] .name[_ngcontent-tnh-c174] {
- display: inline-block;
- float: left;
- font-size: 14px;
- padding-top: 15px;
- color: #333 !important;
- padding-left: 5px;
- }
- .connected-service[_ngcontent-tnh-c174] .disconnect[_ngcontent-tnh-c174] {
- display: inline-block;
- float: right;
- color: Tomato;
- height: 50px;
- font-size: 20px;
- padding: 10px;
- box-sizing: border-box;
- cursor: pointer;
- }
- .vacant[_ngcontent-tnh-c174] {
- border-left: 3px solid #f5f5f5 !important;
- }
- .vacant[_ngcontent-tnh-c174] .name[_ngcontent-tnh-c174] {
- color: #888 !important;
- cursor: pointer;
- }
- .vacant[_ngcontent-tnh-c174] .icon[_ngcontent-tnh-c174] {
- color: #888 !important;
- }
- .vacant[_ngcontent-tnh-c174] .disconnect[_ngcontent-tnh-c174] {
- display: none;
- }
- .vacant[_ngcontent-tnh-c174]:hover {
- color: black !important;
- }
- .discord[_ngcontent-tnh-c174] {
- color: #7289da;
- }
- .teamspeak[_ngcontent-tnh-c174] {
- color: #87acba;
- border-left: 3px solid #87acba;
- }
- .forum[_ngcontent-tnh-c174] {
- color: #87acba;
- }
- .notification-settings[_ngcontent-tnh-c174] {
- display: grid;
- grid-template-columns: auto 100px 100px;
- grid-gap: 5px;
- }
- [_nghost-tnh-c187] {
- display: inline-block;
- }
- .toggle[_ngcontent-tnh-c187] {
- width: 40px;
- height: 20px;
- background: #eee;
- border-radius: 9px;
- position: relative;
- transition: all 200ms;
- cursor: pointer;
- }
- .toggle[_ngcontent-tnh-c187]:before {
- content: "";
- display: block;
- width: 20px;
- height: 20px;
- background: #aaa;
- border-radius: 50px;
- position: absolute;
- border: 2px solid #eee;
- box-sizing: border-box;
- transition: all 200ms;
- left: 0;
- }
- .enabled[_ngcontent-tnh-c187]:before {
- left: 20px;
- background: #4BB543;
- }
- .disabled[_ngcontent-tnh-c187] {
- cursor: not-allowed;
- -webkit-filter: grayscale(66%);
- filter: grayscale(66%);
- }
- .wrapper[_ngcontent-tnh-c217] {
- position: relative;
- border-bottom: 1px solid #eee;
- width: 100%;
- display: flex;
- flex-direction: row;
- height: 40px;
- }
- .icon-wrapper[_ngcontent-tnh-c217] {
- padding: 0 5px;
- }
- .icon[_ngcontent-tnh-c217] {
- font-size: 0.8em;
- position: absolute;
- bottom: 10px;
- color: #888;
- }
- input[_ngcontent-tnh-c217] {
- border: none;
- outline: none;
- width: 100%;
- left: 0px;
- position: absolute;
- bottom: 5px;
- font-size: 1em;
- background: transparent;
- padding: 0 5px;
- }
- .wrapper.focus[_ngcontent-tnh-c217] {
- border-bottom: 1px solid #1e263d;
- }
- label[_ngcontent-tnh-c217] {
- display: block;
- position: absolute;
- left: 5px;
- bottom: 0px;
- font-size: 1em;
- transition: 0.2s all;
- pointer-events: none;
- color: #888;
- }
- .focus[_ngcontent-tnh-c217] label[_ngcontent-tnh-c217],
- .hasValue[_ngcontent-tnh-c217] label[_ngcontent-tnh-c217] {
- bottom: 20px;
- font-size: 0.8em;
- font-weight: 500;
- }
- .hasIcon[_ngcontent-tnh-c217] input[_ngcontent-tnh-c217] {
- width: calc(100% - 30px);
- left: 30px;
- }
- .hasIcon[_ngcontent-tnh-c217] label[_ngcontent-tnh-c217] {
- left: 30px;
- }
- .sbx-custom {
- display: inline-block;
- position: relative;
- width: 278px;
- height: 29px;
- white-space: nowrap;
- box-sizing: border-box;
- font-size: 14px;
- }
- .sbx-custom__wrapper {
- width: 100%;
- height: 100%;
- }
- .sbx-custom__input {
- display: inline-block;
- -webkit-transition: box-shadow .4s ease, background .4s ease;
- transition: box-shadow .4s ease, background .4s ease;
- border: 0;
- border-radius: 2px;
- box-shadow: inset 0 0 0 1px #CCCCCC;
- background: #FFFFFF;
- padding: 0;
- padding-right: 54px;
- padding-left: 11px;
- width: 100%;
- height: 100%;
- vertical-align: middle;
- white-space: normal;
- font-size: inherit;
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
- }
- .sbx-custom__input::-webkit-search-decoration, .sbx-custom__input::-webkit-search-cancel-button, .sbx-custom__input::-webkit-search-results-button, .sbx-custom__input::-webkit-search-results-decoration {
- display: none;
- }
- .sbx-custom__input:hover {
- box-shadow: inset 0 0 0 1px #b3b3b3;
- }
- .sbx-custom__input:focus, .sbx-custom__input:active {
- outline: 0;
- box-shadow: inset 0 0 0 1px #4D3743;
- background: #FFFFFF;
- }
- .sbx-custom__input::-webkit-input-placeholder {
- color: #BBBBBB;
- }
- .sbx-custom__input::-moz-placeholder {
- color: #BBBBBB;
- }
- .sbx-custom__input:-ms-input-placeholder {
- color: #BBBBBB;
- }
- .sbx-custom__input::placeholder {
- color: #BBBBBB;
- }
- .sbx-custom__submit {
- position: absolute;
- top: 0;
- right: 0;
- left: inherit;
- margin: 0;
- border: 0;
- border-radius: 0 4px 4px 0;
- background-color: rgba(255, 255, 255, 0);
- padding: 0;
- width: 29px;
- height: 100%;
- vertical-align: middle;
- text-align: center;
- font-size: inherit;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- .sbx-custom__submit::before {
- display: inline-block;
- margin-right: -4px;
- height: 100%;
- vertical-align: middle;
- content: '';
- }
- .sbx-custom__submit:hover, .sbx-custom__submit:active {
- cursor: pointer;
- }
- .sbx-custom__submit:focus {
- outline: 0;
- }
- .sbx-custom__submit svg {
- width: 17px;
- height: 17px;
- vertical-align: middle;
- fill: #FF2E83;
- }
- .sbx-custom__reset {
- display: none;
- position: absolute;
- top: 2px;
- right: 29px;
- margin: 0;
- border: 0;
- background: none;
- cursor: pointer;
- padding: 0;
- font-size: inherit;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- fill: rgba(0, 0, 0, 0.5);
- }
- .sbx-custom__reset:focus {
- outline: 0;
- }
- .sbx-custom__reset svg {
- display: block;
- margin: 4px;
- width: 17px;
- height: 17px;
- }
- .sbx-custom__input:valid ~ .sbx-custom__reset {
- display: block;
- -webkit-animation-name: sbx-reset-in;
- animation-name: sbx-reset-in;
- -webkit-animation-duration: .15s;
- animation-duration: .15s;
- }
- @-webkit-keyframes sbx-reset-in {
- 0% {
- -webkit-transform: translate3d(-20%, 0, 0);
- transform: translate3d(-20%, 0, 0);
- opacity: 0;
- }
- 100% {
- -webkit-transform: none;
- transform: none;
- opacity: 1;
- }
- }
- @keyframes sbx-reset-in {
- 0% {
- -webkit-transform: translate3d(-20%, 0, 0);
- transform: translate3d(-20%, 0, 0);
- opacity: 0;
- }
- 100% {
- -webkit-transform: none;
- transform: none;
- opacity: 1;
- }
- }
- .mat-form-field {
- display: inline-block;
- position: relative;
- text-align: left;
- }
- [dir=rtl] .mat-form-field {
- text-align: right;
- }
- .mat-form-field-wrapper {
- position: relative;
- }
- .mat-form-field-flex {
- display: inline-flex;
- align-items: baseline;
- box-sizing: border-box;
- width: 100%;
- }
- .mat-form-field-prefix,
- .mat-form-field-suffix {
- white-space: nowrap;
- flex: none;
- position: relative;
- }
- .mat-form-field-infix {
- display: block;
- position: relative;
- flex: auto;
- min-width: 0;
- width: 180px;
- }
- .cdk-high-contrast-active .mat-form-field-infix {
- border-image: linear-gradient(transparent, transparent);
- }
- .mat-form-field-label-wrapper {
- position: absolute;
- left: 0;
- box-sizing: content-box;
- width: 100%;
- height: 100%;
- overflow: hidden;
- pointer-events: none;
- }
- [dir=rtl] .mat-form-field-label-wrapper {
- left: auto;
- right: 0;
- }
- .mat-form-field-label {
- position: absolute;
- left: 0;
- font: inherit;
- pointer-events: none;
- width: 100%;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- transform-origin: 0 0;
- transition: transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1), color 400ms cubic-bezier(0.25, 0.8, 0.25, 1), width 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
- display: none;
- }
- [dir=rtl] .mat-form-field-label {
- transform-origin: 100% 0;
- left: auto;
- right: 0;
- }
- .mat-form-field-empty.mat-form-field-label,
- .mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label {
- display: block;
- }
- .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label {
- display: none;
- }
- .mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label {
- display: block;
- transition: none;
- }
- .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label,
- .mat-input-server[placeholder]:not(:placeholder-shown)+.mat-form-field-label-wrapper .mat-form-field-label {
- display: none;
- }
- .mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label,
- .mat-form-field-can-float .mat-input-server[placeholder]:not(:placeholder-shown)+.mat-form-field-label-wrapper .mat-form-field-label {
- display: block;
- }
- .mat-form-field-label:not(.mat-form-field-empty) {
- transition: none;
- }
- .mat-form-field-underline {
- position: absolute;
- width: 100%;
- pointer-events: none;
- transform: scale3d(1, 1.0001, 1);
- }
- .mat-form-field-ripple {
- position: absolute;
- left: 0;
- width: 100%;
- transform-origin: 50%;
- transform: scaleX(0.5);
- opacity: 0;
- transition: background-color 300ms cubic-bezier(0.55, 0, 0.55, 0.2);
- }
- .mat-form-field.mat-focused .mat-form-field-ripple,
- .mat-form-field.mat-form-field-invalid .mat-form-field-ripple {
- opacity: 1;
- transform: scaleX(1);
- transition: transform 300ms cubic-bezier(0.25, 0.8, 0.25, 1), opacity 100ms cubic-bezier(0.25, 0.8, 0.25, 1), background-color 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
- }
- .mat-form-field-subscript-wrapper {
- position: absolute;
- box-sizing: border-box;
- width: 100%;
- overflow: hidden;
- }
- .mat-form-field-subscript-wrapper .mat-icon,
- .mat-form-field-label-wrapper .mat-icon {
- width: 1em;
- height: 1em;
- font-size: inherit;
- vertical-align: baseline;
- }
- .mat-form-field-hint-wrapper {
- display: flex;
- }
- .mat-form-field-hint-spacer {
- flex: 1 0 1em;
- }
- .mat-error {
- display: block;
- }
- .mat-form-field-control-wrapper {
- position: relative;
- }
- .mat-form-field._mat-animation-noopable .mat-form-field-label,
- .mat-form-field._mat-animation-noopable .mat-form-field-ripple {
- transition: none;
- }
- .mat-form-field-appearance-fill .mat-form-field-flex {
- border-radius: 4px 4px 0 0;
- padding: .75em .75em 0 .75em;
- }
- .cdk-high-contrast-active .mat-form-field-appearance-fill .mat-form-field-flex {
- outline: solid 1px;
- }
- .mat-form-field-appearance-fill .mat-form-field-underline::before {
- content: "";
- display: block;
- position: absolute;
- bottom: 0;
- height: 1px;
- width: 100%;
- }
- .mat-form-field-appearance-fill .mat-form-field-ripple {
- bottom: 0;
- height: 2px;
- }
- .cdk-high-contrast-active .mat-form-field-appearance-fill .mat-form-field-ripple {
- height: 0;
- border-top: solid 2px;
- }
- .mat-form-field-appearance-fill:not(.mat-form-field-disabled) .mat-form-field-flex:hover~.mat-form-field-underline .mat-form-field-ripple {
- opacity: 1;
- transform: none;
- transition: opacity 600ms cubic-bezier(0.25, 0.8, 0.25, 1);
- }
- .mat-form-field-appearance-fill._mat-animation-noopable:not(.mat-form-field-disabled) .mat-form-field-flex:hover~.mat-form-field-underline .mat-form-field-ripple {
- transition: none;
- }
- .mat-form-field-appearance-fill .mat-form-field-subscript-wrapper {
- padding: 0 1em;
- }
- .mat-input-element {
- font: inherit;
- background: transparent;
- color: currentColor;
- border: none;
- outline: none;
- padding: 0;
- margin: 0;
- width: 100%;
- max-width: 100%;
- vertical-align: bottom;
- text-align: inherit;
- }
- .mat-input-element:-moz-ui-invalid {
- box-shadow: none;
- }
- .mat-input-element::-ms-clear,
- .mat-input-element::-ms-reveal {
- display: none;
- }
- .mat-input-element,
- .mat-input-element::-webkit-search-cancel-button,
- .mat-input-element::-webkit-search-decoration,
- .mat-input-element::-webkit-search-results-button,
- .mat-input-element::-webkit-search-results-decoration {
- -webkit-appearance: none;
- }
- .mat-input-element::-webkit-contacts-auto-fill-button,
- .mat-input-element::-webkit-caps-lock-indicator,
- .mat-input-element::-webkit-credentials-auto-fill-button {
- visibility: hidden;
- }
- .mat-input-element[type=date]::after,
- .mat-input-element[type=datetime]::after,
- .mat-input-element[type=datetime-local]::after,
- .mat-input-element[type=month]::after,
- .mat-input-element[type=week]::after,
- .mat-input-element[type=time]::after {
- content: " ";
- white-space: pre;
- width: 1px;
- }
- .mat-input-element::-webkit-inner-spin-button,
- .mat-input-element::-webkit-calendar-picker-indicator,
- .mat-input-element::-webkit-clear-button {
- font-size: .75em;
- }
- .mat-input-element::placeholder {
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- transition: color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1);
- }
- .mat-input-element::placeholder:-ms-input-placeholder {
- -ms-user-select: text;
- }
- .mat-input-element::-moz-placeholder {
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- transition: color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1);
- }
- .mat-input-element::-moz-placeholder:-ms-input-placeholder {
- -ms-user-select: text;
- }
- .mat-input-element::-webkit-input-placeholder {
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- transition: color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1);
- }
- .mat-input-element::-webkit-input-placeholder:-ms-input-placeholder {
- -ms-user-select: text;
- }
- .mat-input-element:-ms-input-placeholder {
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- transition: color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1);
- }
- .mat-input-element:-ms-input-placeholder:-ms-input-placeholder {
- -ms-user-select: text;
- }
- .mat-form-field-hide-placeholder .mat-input-element::placeholder {
- color: transparent !important;
- -webkit-text-fill-color: transparent;
- transition: none;
- }
- .mat-form-field-hide-placeholder .mat-input-element::-moz-placeholder {
- color: transparent !important;
- -webkit-text-fill-color: transparent;
- transition: none;
- }
- .mat-form-field-hide-placeholder .mat-input-element::-webkit-input-placeholder {
- color: transparent !important;
- -webkit-text-fill-color: transparent;
- transition: none;
- }
- .mat-form-field-hide-placeholder .mat-input-element:-ms-input-placeholder {
- color: transparent !important;
- -webkit-text-fill-color: transparent;
- transition: none;
- }
- textarea.mat-input-element {
- resize: vertical;
- overflow: auto;
- }
- textarea.mat-input-element.cdk-textarea-autosize {
- resize: none;
- }
- textarea.mat-input-element {
- padding: 2px 0;
- margin: -2px 0;
- }
- select.mat-input-element {
- -moz-appearance: none;
- -webkit-appearance: none;
- position: relative;
- background-color: transparent;
- display: inline-flex;
- box-sizing: border-box;
- padding-top: 1em;
- top: -1em;
- margin-bottom: -1em;
- }
- select.mat-input-element::-ms-expand {
- display: none;
- }
- select.mat-input-element::-moz-focus-inner {
- border: 0;
- }
- select.mat-input-element:not(:disabled) {
- cursor: pointer;
- }
- select.mat-input-element::-ms-value {
- color: inherit;
- background: none;
- }
- .mat-focused .cdk-high-contrast-active select.mat-input-element::-ms-value {
- color: inherit;
- }
- .mat-form-field-type-mat-native-select .mat-form-field-infix::after {
- content: "";
- width: 0;
- height: 0;
- border-left: 5px solid transparent;
- border-right: 5px solid transparent;
- border-top: 5px solid;
- position: absolute;
- top: 50%;
- right: 0;
- margin-top: -2.5px;
- pointer-events: none;
- }
- [dir=rtl] .mat-form-field-type-mat-native-select .mat-form-field-infix::after {
- right: auto;
- left: 0;
- }
- .mat-form-field-type-mat-native-select .mat-input-element {
- padding-right: 15px;
- }
- [dir=rtl] .mat-form-field-type-mat-native-select .mat-input-element {
- padding-right: 0;
- padding-left: 15px;
- }
- .mat-form-field-type-mat-native-select .mat-form-field-label-wrapper {
- max-width: calc(100% - 10px);
- }
- .mat-form-field-type-mat-native-select.mat-form-field-appearance-outline .mat-form-field-infix::after {
- margin-top: -5px;
- }
- .mat-form-field-type-mat-native-select.mat-form-field-appearance-fill .mat-form-field-infix::after {
- margin-top: -10px;
- }
- .mat-form-field-appearance-legacy .mat-form-field-label {
- transform: perspective(100px);
- -ms-transform: none;
- }
- .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-icon,
- .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-icon {
- width: 1em;
- }
- .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-icon-button,
- .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-icon-button {
- font: inherit;
- vertical-align: baseline;
- }
- .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-icon-button .mat-icon,
- .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-icon-button .mat-icon {
- font-size: inherit;
- }
- .mat-form-field-appearance-legacy .mat-form-field-underline {
- height: 1px;
- }
- .cdk-high-contrast-active .mat-form-field-appearance-legacy .mat-form-field-underline {
- height: 0;
- border-top: solid 1px;
- }
- .mat-form-field-appearance-legacy .mat-form-field-ripple {
- top: 0;
- height: 2px;
- overflow: hidden;
- }
- .cdk-high-contrast-active .mat-form-field-appearance-legacy .mat-form-field-ripple {
- height: 0;
- border-top: solid 2px;
- }
- .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {
- background-position: 0;
- background-color: transparent;
- }
- .cdk-high-contrast-active .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {
- border-top-style: dotted;
- border-top-width: 2px;
- }
- .mat-form-field-appearance-legacy.mat-form-field-invalid:not(.mat-focused) .mat-form-field-ripple {
- height: 1px;
- }
- .mat-form-field-appearance-outline .mat-form-field-wrapper {
- margin: .25em 0;
- }
- .mat-form-field-appearance-outline .mat-form-field-flex {
- padding: 0 .75em 0 .75em;
- margin-top: -0.25em;
- position: relative;
- }
- .mat-form-field-appearance-outline .mat-form-field-prefix,
- .mat-form-field-appearance-outline .mat-form-field-suffix {
- top: .25em;
- }
- .mat-form-field-appearance-outline .mat-form-field-outline {
- display: flex;
- position: absolute;
- top: .25em;
- left: 0;
- right: 0;
- bottom: 0;
- pointer-events: none;
- }
- .mat-form-field-appearance-outline .mat-form-field-outline-start,
- .mat-form-field-appearance-outline .mat-form-field-outline-end {
- border: 1px solid currentColor;
- min-width: 5px;
- }
- .mat-form-field-appearance-outline .mat-form-field-outline-start {
- border-radius: 5px 0 0 5px;
- border-right-style: none;
- }
- [dir=rtl] .mat-form-field-appearance-outline .mat-form-field-outline-start {
- border-right-style: solid;
- border-left-style: none;
- border-radius: 0 5px 5px 0;
- }
- .mat-form-field-appearance-outline .mat-form-field-outline-end {
- border-radius: 0 5px 5px 0;
- border-left-style: none;
- flex-grow: 1;
- }
- [dir=rtl] .mat-form-field-appearance-outline .mat-form-field-outline-end {
- border-left-style: solid;
- border-right-style: none;
- border-radius: 5px 0 0 5px;
- }
- .mat-form-field-appearance-outline .mat-form-field-outline-gap {
- border-radius: .000001px;
- border: 1px solid currentColor;
- border-left-style: none;
- border-right-style: none;
- }
- .mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-outline-gap {
- border-top-color: transparent;
- }
- .mat-form-field-appearance-outline .mat-form-field-outline-thick {
- opacity: 0;
- }
- .mat-form-field-appearance-outline .mat-form-field-outline-thick .mat-form-field-outline-start,
- .mat-form-field-appearance-outline .mat-form-field-outline-thick .mat-form-field-outline-end,
- .mat-form-field-appearance-outline .mat-form-field-outline-thick .mat-form-field-outline-gap {
- border-width: 2px;
- }
- .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline,
- .mat-form-field-appearance-outline.mat-form-field-invalid .mat-form-field-outline {
- opacity: 0;
- transition: opacity 100ms cubic-bezier(0.25, 0.8, 0.25, 1);
- }
- .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick,
- .mat-form-field-appearance-outline.mat-form-field-invalid .mat-form-field-outline-thick {
- opacity: 1;
- }
- .mat-form-field-appearance-outline:not(.mat-form-field-disabled) .mat-form-field-flex:hover .mat-form-field-outline {
- opacity: 0;
- transition: opacity 600ms cubic-bezier(0.25, 0.8, 0.25, 1);
- }
- .mat-form-field-appearance-outline:not(.mat-form-field-disabled) .mat-form-field-flex:hover .mat-form-field-outline-thick {
- opacity: 1;
- }
- .mat-form-field-appearance-outline .mat-form-field-subscript-wrapper {
- padding: 0 1em;
- }
- .mat-form-field-appearance-outline._mat-animation-noopable:not(.mat-form-field-disabled) .mat-form-field-flex:hover~.mat-form-field-outline,
- .mat-form-field-appearance-outline._mat-animation-noopable .mat-form-field-outline,
- .mat-form-field-appearance-outline._mat-animation-noopable .mat-form-field-outline-start,
- .mat-form-field-appearance-outline._mat-animation-noopable .mat-form-field-outline-end,
- .mat-form-field-appearance-outline._mat-animation-noopable .mat-form-field-outline-gap {
- transition: none;
- }
- .mat-form-field-appearance-standard .mat-form-field-flex {
- padding-top: .75em;
- }
- .mat-form-field-appearance-standard .mat-form-field-underline {
- height: 1px;
- }
- .cdk-high-contrast-active .mat-form-field-appearance-standard .mat-form-field-underline {
- height: 0;
- border-top: solid 1px;
- }
- .mat-form-field-appearance-standard .mat-form-field-ripple {
- bottom: 0;
- height: 2px;
- }
- .cdk-high-contrast-active .mat-form-field-appearance-standard .mat-form-field-ripple {
- height: 0;
- border-top: 2px;
- }
- .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {
- background-position: 0;
- background-color: transparent;
- }
- .cdk-high-contrast-active .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {
- border-top-style: dotted;
- border-top-width: 2px;
- }
- .mat-form-field-appearance-standard:not(.mat-form-field-disabled) .mat-form-field-flex:hover~.mat-form-field-underline .mat-form-field-ripple {
- opacity: 1;
- transform: none;
- transition: opacity 600ms cubic-bezier(0.25, 0.8, 0.25, 1);
- }
- .mat-form-field-appearance-standard._mat-animation-noopable:not(.mat-form-field-disabled) .mat-form-field-flex:hover~.mat-form-field-underline .mat-form-field-ripple {
- transition: none;
- }
- .category[_ngcontent-tnh-c225] {
- color: #333;
- border-top: 5px solid #3264a0;
- background: #fff;
- padding: 20px;
- display: inline-flex;
- font-size: 1em;
- box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.15);
- width: 150px;
- height: 150px;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- margin-right: 20px;
- cursor: pointer;
- transition: 100ms transform;
- }
- .category[_ngcontent-tnh-c225]:hover {
- transform: scale(1.02);
- background: #0b95da;
- color: white;
- }
- .icon[_ngcontent-tnh-c225] {
- font-size: 4em;
- }
- .serverbutton[_ngcontent-tnh-c225] {
- color: #333;
- border-top: 0px solid #0b95da;
- background: #fff;
- padding: 20px;
- display: inline-flex;
- font-size: 1em;
- box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.15);
- width: 200px;
- height: 50px;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- margin-right: 20px;
- cursor: pointer;
- transition: 100ms transform;
- }
- .serverbutton[_ngcontent-tnh-c225]:hover {
- transform: scale(1.02);
- background: #c3c3c3;
- color: white;
- }
- #map[_ngcontent-tnh-c196] {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- }
- #map-popup[_ngcontent-tnh-c196] {
- background: white;
- padding: 10px;
- box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.2);
- border-radius: 5px;
- line-height: 1.1em;
- font-size: 0.8em;
- }
- .options[_ngcontent-tnh-c196] {
- position: absolute;
- bottom: 100px;
- left: 20px;
- z-index: 5;
- width: 200px;
- }
- .options[_ngcontent-tnh-c196] .options-icon.open[_ngcontent-tnh-c196] {
- background-color: #eee;
- }
- .options[_ngcontent-tnh-c196] .options-icon[_ngcontent-tnh-c196] {
- background: white;
- padding: 5px;
- border-radius: 50%;
- width: 20px;
- height: 20px;
- box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.5);
- margin-top: 10px;
- position: relative;
- }
- .options[_ngcontent-tnh-c196] .options-icon[_ngcontent-tnh-c196] .option-choices[_ngcontent-tnh-c196] {
- position: absolute;
- left: 40px;
- top: 0px;
- bottom: 0;
- transition: width 200ms;
- overflow: hidden;
- z-index: -1;
- }
- .options[_ngcontent-tnh-c196] .options-icon[_ngcontent-tnh-c196] .option-choices[_ngcontent-tnh-c196] .options-choice-icon[_ngcontent-tnh-c196] {
- cursor: pointer;
- margin-right: 5px;
- background-color: white;
- background-repeat: no-repeat;
- background-position: center;
- display: inline-block;
- padding: 5px;
- border-radius: 50%;
- width: 20px;
- height: 20px;
- box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.5);
- position: relative;
- }
- .options[_ngcontent-tnh-c196] .options-icon[_ngcontent-tnh-c196] .option-choices[_ngcontent-tnh-c196] .options-choice-icon.disabled[_ngcontent-tnh-c196] {
- -webkit-filter: grayscale(100%);
- filter: grayscale(100%);
- }
- .options[_ngcontent-tnh-c196] .options-icon[_ngcontent-tnh-c196] .option-choices[_ngcontent-tnh-c196] .options-choice-icon.disabled[_ngcontent-tnh-c196]:after {
- content: "";
- background: white;
- opacity: 0.3;
- border-radius: 50%;
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- left: 0;
- }
- .options[_ngcontent-tnh-c196] .options-icon[_ngcontent-tnh-c196] .option-choices[_ngcontent-tnh-c196] .icon-headshot[_ngcontent-tnh-c196] {
- background-size: 250%;
- background-position: center 2px;
- }
- .options[_ngcontent-tnh-c196] .optionsHidden[_ngcontent-tnh-c196] {
- width: 0 !important;
- }
- .layer-switch[_ngcontent-tnh-c196] {
- position: absolute;
- bottom: 20px;
- left: 20px;
- width: 60px;
- height: 60px;
- background: white;
- z-index: 5;
- box-shadow: 0px 0px 5px 0px black;
- }
- .layer-switch[_ngcontent-tnh-c196] .layer[_ngcontent-tnh-c196] {
- background: #eee;
- width: 100%;
- height: 100%;
- font-size: 0.7em;
- font-weight: 400;
- display: flex;
- align-items: flex-end;
- padding: 3px;
- background: url("https://mmrtn.net/map/res/img/mapSelector_satellite.png");
- background-size: contain;
- box-sizing: border-box;
- text-shadow: 0 0 3px black;
- color: white;
- }
- .layer-switch[_ngcontent-tnh-c196] .vector[_ngcontent-tnh-c196] {
- background: url("#");
- }
- .layer-switch[_ngcontent-tnh-c196] .raster[_ngcontent-tnh-c196] {
- background: url("#");
- }
- .map-wrapper[_ngcontent-tnh-c196] {
- position: relative;
- height: 100%;
- }
- iframe {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- border: 0;
- }
- .state {
- background: linear-gradient(to bottom, #4194d5, #3a78b2);
- color: white;
- border: none;
- padding: 20px;
- border-radius: 0;
- box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.08);
- margin-bottom: 10px;
- }
- .state.main {
- display: block;
- font-weight: bold;
- font-size: 20px;
- }
- .state.orange {
- background: linear-gradient(to bottom, orange, #e08c00);
- }
- .state.tomato {
- background: linear-gradient(to bottom, tomato, tomato);
- }
- .application[_ngcontent-tnh-c154] {
- background-color: white;
- /*background-image: url("https://www.countryflags.io/us/flat/64.png");*/
- background-repeat: no-repeat;
- background-position: right 10px center;
- background-size: contain;
- cursor: pointer;
- transition: 150ms transform;
- padding: 10px;
- border: 0px solid #eee;
- margin-bottom: 5px;
- display: grid;
- grid-template-columns: 70px auto-webkit-min-content 64px;
- grid-template-columns: 70px auto min-content 64px;
- border-left: 3px solid #3264a0;
- }
- .application[_ngcontent-tnh-c154]:hover {
- transform: scale(1.01);
- background-color: #f5f5f5;
- }
- .application[_ngcontent-tnh-c154] span {
- white-space: nowrap;
- }
- .application[_ngcontent-tnh-c154].blocked {
- opacity: 0.5;
- }
- .options {
- list-style: none;
- }
- .options li {
- font-weight: bold;
- }
- .options li.icon {
- color: #888;
- margin-right: 10px;
- }
- .answer {
- margin-top: 10px;
- white-space: pre-line;
- margin-bottom: 20px;
- font-size: 14 px;
- margin-right: 20px;
- line-height: 1.5;
- }
- .other-character {
- background-repeat: no-repeat;
- background-position: left-80px top;
- height: 55px;
- cursor: pointer;
- line-height: normal;
- position: relative;
- margin-bottom: 10px;
- }
- .other-character.description {
- margin-left: 80px;
- float: left;
- margin-top: 5px;
- }
- .flags a {
- color: inherit;
- }
- .flags li {
- list-style: none;
- padding: 3px;
- color: white;
- font-weight: bold;
- font-size: 14px;
- margin-bottom: 3px;
- text-shadow: 0 0 5px#fff;
- }
- .flags li.icon {
- margin: 0 5px 0 2px;
- }
- .flags li.warning {
- color: darkorange;
- }
- .flags li.serious {
- color: #b20000;
- }
- .buttons > * {
- margin-right: 10px;
- }
-
- <!--
- .searchbox {
- width: 100%;
- background: #43474d;
- padding: 5px;
- border-radius: 5px;
- }
- .searchbox .searchbutton {
- float: right;
- color: #aaa;
- background: none;
- border: none;
- font-size: 14px;
- cursor: pointer;
- }
- .searchbox .searchfield {
- width: calc(100% - 50px);
- font-size: 14px;
- border: none;
- outline: none;
- margin: 0;
- padding: 0 0 0 5px;
- background: #43474d;
- color: #eee;
- }
- .searchbox .searchfield::-webkit-input-placeholder {
- color: #aaa;
- }
- .searchbox .searchfield::-moz-placeholder {
- color: #aaa;
- }
- .searchbox .searchfield:-ms-input-placeholder {
- color: #aaa;
- }
- .searchbox .searchfield::-ms-input-placeholder {
- color: #aaa;
- }
- .searchbox .searchfield::placeholder {
- color: #aaa;
- }
- .results {
- position: absolute;
- top: 48px;
- left: 10px;
- background: white;
- z-index: 100;
- border: 1px solid #eee;
- box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.15);
- min-width: 500px;
- }
- .results li {
- padding: 10px;
- border-top: 1px solid #f5f5f5;
- }
- .results li .preview {
- display: inline-block;
- }
- .results li .ped {
- background-image: url("https://nkar/images/skins/304.png");
- background-size: 500%;
- background-position-x: center;
- height: 40px;
- width: 40px;
- display: inline-block;
- }
- .results li p {
- margin-left: 10px;
- display: inline-block;
- height: 100%;
- vertical-align: top;
- }
-
- .wrapper.loading[_ngcontent-tnh-c200]:after {
- content: "";
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: #fff;
- opacity: 0.5;
- }
- .wrapper[_ngcontent-tnh-c200] {
- position: relative;
- }
- .link[_ngcontent-tnh-c200] {
- background: white;
- font-size: 1.2em;
- padding: 15px;
- text-align: center;
- font-family: monospace;
- box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.15);
- margin-bottom: 20px;
- }
- .headshot {
- height: 50px;
- width: 50px;
- background-size: 300%;
- background-position: center top 5px;
- background-repeat: no-repeat;
- border-radius: 50%;
- display: inline-block;
- background-color: #ddd;
- margin-right: 20px;
- }
- .character {
- display: flex;
- align-items: center;
- margin-bottom: 10px;
- }
- .online {
- border: 2px solid #4BB543;
- background-color: white;
- }
- /*.card-title {
- display: flex;
- justify-content: space-between;
- align-items: baseline;
-
- }*/
- #menyja {
- position: absolute;
- z-index: 10;
- width: 168px;
- height: 30px;
- border: 1px solid #000;
- }
- footer[_ngcontent-tnh-c167] {
- margin-top: 10px;
- }
- footer[_ngcontent-tnh-c167] .info[_ngcontent-tnh-c167] {
- text-transform: uppercase;
- color: #888;
- font-size: 14px;
- font-weight: bold;
- }
- header[_ngcontent-tnh-c167] {
- padding-bottom: 10px;
- overflow: auto;
- }
- .pagination[_ngcontent-tnh-c167] {
- border: 1px solid #eee;
- float: right;
- display: inline-block;
- }
- .pagination[_ngcontent-tnh-c167] a[_ngcontent-tnh-c167] {
- display: inline-block;
- background: white;
- width: 40px;
- padding: 5px 0;
- text-align: center;
- color: #888;
- cursor: pointer;
- border-right: 1px solid #eee;
- }
- .pagination[_ngcontent-tnh-c167] .current[_ngcontent-tnh-c167] {
- color: #111;
- font-weight: bold;
- }
- .child[_ngcontent-tnh-c167]:not(.child-shown) {
- display: none;
- color: red;
- }
|