1
0

default.css 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631
  1. @import url("normalize.css");
  2. @import url("@fortawesome/fontawesome-free/css/fontawesome");
  3. @import url("@fortawesome/fontawesome-free/css/brands");
  4. @import url("@fortawesome/fontawesome-free/css/solid");
  5. @import url("../dependencies/animate");
  6. @import url("../media_queries");
  7. @import url("../fonts");
  8. @import url("../base");
  9. @import url("../utilities");
  10. :root {
  11. --animate-duration: 300ms;
  12. --font-family: "Exo", system-ui;
  13. --font-family-monospace: "Inconsolata", "Lucida Console", "Monaco", monospace;
  14. --color-text: #7c7c7c;
  15. --color-text-link: #326b9b;
  16. --color-text-link-hover: #c36;
  17. --color-background: #fff;
  18. --border-radius-base: 4px;
  19. /* Alerts */
  20. --alert-border-color: #fff;
  21. --alert-box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
  22. --alert-text-shadow: 0 1px rgb(0 0 0 / 45%);
  23. --alert-info-color: #618ecc;
  24. --alert-danger-color: #ec6c6c;
  25. --alert-success-color: #5ea64c;
  26. /* Icons */
  27. --icon-color-teal: #3cc;
  28. --icon-color-purple: #8e2fca;
  29. --icon-color-maroon: #c36;
  30. --icon-color-red: #f33;
  31. --icon-color-green: #53ba55;
  32. --icon-color-orange: #ffc043;
  33. --icon-color-blue: #326b9b;
  34. --icon-color-lightblue: #6eb6f0;
  35. }
  36. /* App header
  37. ========================================================================== */
  38. .app-header {
  39. padding-top: 40px;
  40. }
  41. /* Container
  42. ========================================================================== */
  43. .container {
  44. margin-left: auto;
  45. margin-right: auto;
  46. max-width: 1024px;
  47. }
  48. /* Top bar
  49. ========================================================================== */
  50. .top-bar {
  51. background: linear-gradient(
  52. to bottom,
  53. rgb(104 145 196 / 100%) 0%,
  54. rgb(69 114 181 / 100%) 50%,
  55. rgb(65 90 149 / 100%) 100%
  56. );
  57. background-color: #5070a6;
  58. box-shadow: 0 4px 10px rgb(100 100 100 / 40%);
  59. border-bottom: 1px solid #fff;
  60. position: fixed;
  61. display: flex;
  62. size: 100% 40px;
  63. z-index: 2;
  64. top: 0;
  65. }
  66. .top-bar-inner {
  67. display: flex;
  68. flex-grow: 1;
  69. padding-left: 20px;
  70. padding-right: 20px;
  71. justify-content: space-between;
  72. @media (--viewport-large) {
  73. padding-left: 0;
  74. padding-right: 0;
  75. }
  76. }
  77. .top-bar-left {
  78. display: flex;
  79. }
  80. .top-bar-logo {
  81. display: flex;
  82. align-items: center;
  83. margin-right: 30px;
  84. }
  85. .top-bar-usage {
  86. display: none;
  87. @media (--viewport-small) {
  88. display: flex;
  89. align-items: center;
  90. }
  91. }
  92. .top-bar-usage-inner {
  93. display: flex;
  94. color: #fff;
  95. text-shadow: 1px 1px rgb(0 0 0 / 25%);
  96. font-weight: 500;
  97. }
  98. .top-bar-usage-item {
  99. margin-right: 11px;
  100. &:last-child {
  101. margin-right: 0;
  102. }
  103. & .fas {
  104. margin-right: 3px;
  105. }
  106. }
  107. .top-bar-right {
  108. display: flex;
  109. }
  110. .top-bar-notifications {
  111. display: flex;
  112. position: relative;
  113. }
  114. .top-bar-notifications-list {
  115. background-color: #fff;
  116. box-shadow: 0 3px 20px 0 rgb(0 0 0 / 40%);
  117. max-height: 500px;
  118. overflow-y: auto;
  119. position: absolute;
  120. top: 100%;
  121. right: 0;
  122. width: 280px;
  123. z-index: 1;
  124. border-bottom-left-radius: 6px;
  125. border-bottom-right-radius: 6px;
  126. border: 1px solid #fff;
  127. border-top: none;
  128. @media (--viewport-small) {
  129. width: 330px;
  130. }
  131. @media (--viewport-medium) {
  132. width: 400px;
  133. }
  134. }
  135. .top-bar-notification-item {
  136. color: #6f6f6f;
  137. font-size: 0.8rem;
  138. border-bottom: 1px solid #e9e4e4;
  139. padding: 15px;
  140. &:last-child {
  141. border-bottom: none;
  142. }
  143. &.empty {
  144. text-align: center;
  145. font-size: 1.2rem;
  146. font-weight: normal;
  147. padding: 4rem;
  148. & .fas {
  149. font-size: 4rem;
  150. margin-bottom: 20px;
  151. }
  152. }
  153. &.unseen {
  154. & .top-bar-notification-title {
  155. color: #c36;
  156. }
  157. & .top-bar-notification-delete {
  158. display: block;
  159. }
  160. }
  161. & a {
  162. font-weight: 600;
  163. }
  164. }
  165. .top-bar-notification-timestamp {
  166. font-size: 0.75rem;
  167. font-weight: 600;
  168. text-align: right;
  169. margin-top: 10px;
  170. }
  171. .top-bar-notification-header {
  172. display: flex;
  173. align-items: center;
  174. justify-content: space-between;
  175. margin-bottom: 10px;
  176. }
  177. .top-bar-notification-title {
  178. color: #9e9e9e;
  179. font-size: 0.85rem;
  180. font-weight: 600;
  181. & a {
  182. color: #9e9e9e;
  183. }
  184. }
  185. .top-bar-notification-delete {
  186. display: none;
  187. background-color: transparent;
  188. border: 0;
  189. padding-left: 5px;
  190. padding-right: 5px;
  191. background: none;
  192. & .fas {
  193. color: #c36;
  194. font-size: 0.9rem;
  195. }
  196. &:hover .fas {
  197. opacity: 0.8;
  198. }
  199. }
  200. .top-bar-notification-delete-all {
  201. display: block;
  202. background-color: transparent;
  203. text-align: center;
  204. border: 0;
  205. padding: 10px 15px;
  206. width: 100%;
  207. background: none;
  208. color: var(--color-text-link);
  209. &:hover {
  210. background-color: rgb(0 0 0 / 5%);
  211. color: var(--color-text-link-hover);
  212. }
  213. & .fas {
  214. color: #c36;
  215. margin-right: 5px;
  216. }
  217. }
  218. .top-bar-menu {
  219. display: flex;
  220. position: relative;
  221. }
  222. .top-bar-menu-list {
  223. display: block;
  224. background-color: #4673b6;
  225. box-shadow: 0 3px 20px 0 rgb(0 0 0 / 40%);
  226. position: absolute;
  227. top: 100%;
  228. right: 0;
  229. animation-name: fadeIn;
  230. animation-duration: var(--animate-duration);
  231. @media (--viewport-medium) {
  232. display: flex !important; /* NOTE: Overrides inline style set by JS */
  233. background-color: transparent;
  234. box-shadow: none;
  235. position: static;
  236. animation-name: none;
  237. animation-duration: 0s;
  238. }
  239. }
  240. .top-bar-menu-item {
  241. @media (--viewport-medium) {
  242. display: flex;
  243. }
  244. }
  245. .top-bar-menu-link {
  246. color: #f7f7f7;
  247. display: flex;
  248. align-items: center;
  249. font-size: 0.8rem;
  250. font-weight: 600;
  251. text-shadow: 1px 1px rgb(0 0 0 / 25%);
  252. background-color: transparent;
  253. border: 0;
  254. border-left: 1px solid transparent;
  255. border-right: 1px solid transparent;
  256. padding: 10px;
  257. &:hover {
  258. box-shadow: inset 0 0 6px rgb(255 255 255 / 60%);
  259. transition: 0.2s;
  260. color: #4686b8;
  261. border-left: 1px solid rgb(0 0 0 / 10%);
  262. border-right: 1px solid rgb(0 0 0 / 10%);
  263. background: linear-gradient(
  264. to bottom,
  265. rgb(255 255 255 / 60%) 0%,
  266. rgb(255 255 255 / 75%) 30%,
  267. rgb(255 255 255 / 100%) 95%
  268. );
  269. text-shadow: 0 1px rgb(255 255 255 / 80%);
  270. }
  271. &:active {
  272. color: #046c98;
  273. border-left: 1px solid rgb(0 0 0 / 15%);
  274. border-right: 1px solid rgb(0 0 0 / 15%);
  275. text-shadow: 0 -1px 1px rgb(255 255 255 / 50%);
  276. background: linear-gradient(
  277. to bottom,
  278. rgb(255 255 255 / 50%) 0%,
  279. rgb(255 255 255 / 60%) 30%,
  280. rgb(255 255 255 / 95%) 95%
  281. );
  282. box-shadow: inset 0 0 1px #fff, inset -1px -1px 4px rgb(220 220 220 / 40%);
  283. transition: 0.2s;
  284. }
  285. &.active {
  286. color: #4686b8;
  287. background: linear-gradient(
  288. to bottom,
  289. rgb(255 255 255 / 60%) 0%,
  290. rgb(255 255 255 / 75%) 30%,
  291. rgb(255 255 255 / 100%) 95%
  292. );
  293. text-shadow: 0 1px rgb(255 255 255 / 80%);
  294. border-left: 1px solid rgb(255 255 255 / 98%);
  295. border-right: 1px solid rgb(255 255 255 / 98%);
  296. }
  297. & .fas {
  298. font-size: 1.1rem;
  299. }
  300. }
  301. .top-bar-menu-link-logout {
  302. color: #dbf94e;
  303. }
  304. .top-bar-menu-link-label {
  305. margin-left: 6px;
  306. white-space: nowrap;
  307. @media (--viewport-medium) {
  308. display: none;
  309. }
  310. @media (--viewport-large) {
  311. display: inline;
  312. }
  313. }
  314. /* Main menu
  315. ========================================================================== */
  316. .main-menu {
  317. @media (--viewport-medium) {
  318. padding-top: 10px;
  319. }
  320. }
  321. .main-menu-toggle {
  322. border: 0;
  323. background-color: transparent;
  324. padding: 10px;
  325. display: block;
  326. width: 100%;
  327. &:hover {
  328. background-color: rgb(0 0 0 / 5%);
  329. & .main-menu-toggle-label {
  330. color: #c36;
  331. }
  332. }
  333. & .fas {
  334. color: #999;
  335. margin-right: 5px;
  336. }
  337. @media (--viewport-small) {
  338. display: none;
  339. }
  340. }
  341. .main-menu-toggle-label {
  342. color: #5b5b5b;
  343. font-weight: 600;
  344. }
  345. .main-menu-list {
  346. display: block;
  347. border-top: 1px solid #ddd;
  348. @media (--viewport-small) {
  349. border-top: 0;
  350. display: flex !important; /* NOTE: Overrides inline style set by JS */
  351. justify-content: space-evenly;
  352. }
  353. }
  354. .main-menu-item {
  355. @media (--viewport-small) {
  356. flex-grow: 1;
  357. }
  358. @media (--viewport-medium) {
  359. flex-grow: 0;
  360. display: flex;
  361. &.focus {
  362. & .main-menu-item-link {
  363. border-bottom-color: #5edad0;
  364. }
  365. & .main-menu-item-label {
  366. color: #5edad0;
  367. }
  368. }
  369. }
  370. }
  371. .main-menu-item-link {
  372. display: block;
  373. text-align: center;
  374. padding: 10px;
  375. &:hover {
  376. background-color: rgb(0 0 0 / 5%);
  377. & .main-menu-item-label {
  378. color: #c36;
  379. }
  380. }
  381. &.active {
  382. & .main-menu-item-label {
  383. color: #c36;
  384. & .fas {
  385. color: #c36;
  386. }
  387. }
  388. }
  389. @media (--viewport-small) {
  390. padding-top: 20px;
  391. padding-bottom: 20px;
  392. }
  393. @media (--viewport-medium) {
  394. border-bottom: 4px solid #fff;
  395. &:hover,
  396. &.active {
  397. background-color: transparent;
  398. border-bottom-color: #c36;
  399. transition: 0.3s;
  400. }
  401. }
  402. @media (--viewport-large) {
  403. padding-left: 25px;
  404. padding-right: 25px;
  405. }
  406. }
  407. .main-menu-item-label {
  408. color: #5b5b5b;
  409. font-weight: 600;
  410. & .fas {
  411. color: #999;
  412. margin-left: 6px;
  413. }
  414. @media (--viewport-medium) {
  415. font-size: 1rem;
  416. & .fas {
  417. margin-left: 10px;
  418. }
  419. }
  420. }
  421. .main-menu-stats {
  422. display: none;
  423. @media (--viewport-medium) {
  424. color: var(--color-text);
  425. display: block;
  426. font-size: 0.75rem;
  427. text-transform: lowercase;
  428. line-height: 1.8;
  429. padding-top: 10px;
  430. padding-bottom: 10px;
  431. }
  432. }
  433. /* Toolbar
  434. ========================================================================== */
  435. .toolbar {
  436. background-color: #fff;
  437. border-top: 1px solid #ddd;
  438. border-bottom: 1px solid #ddd;
  439. & .form-select {
  440. color: inherit;
  441. padding-top: 4px;
  442. padding-bottom: 4px;
  443. box-shadow: none;
  444. border-color: #ddd;
  445. border-right-color: transparent;
  446. border-top-right-radius: 0;
  447. border-bottom-right-radius: 0;
  448. &:focus {
  449. box-shadow: none;
  450. }
  451. }
  452. & .form-control {
  453. padding-top: 4px;
  454. padding-bottom: 4px;
  455. box-shadow: none;
  456. border-color: #ddd;
  457. border-right-color: transparent;
  458. border-top-right-radius: 0;
  459. border-bottom-right-radius: 0;
  460. &:hover {
  461. border-right-color: #94c8f0;
  462. }
  463. &:focus {
  464. border-right-color: #008fee;
  465. }
  466. }
  467. @media (--viewport-large) {
  468. position: sticky;
  469. z-index: 1;
  470. top: 39px;
  471. height: 45px;
  472. display: flex;
  473. justify-content: center;
  474. align-items: center;
  475. &.active {
  476. box-shadow: 0 4px 6px rgb(0 0 0 / 10%);
  477. }
  478. & .form-select {
  479. max-width: 200px;
  480. }
  481. }
  482. }
  483. .toolbar-inner {
  484. padding: 10px 20px;
  485. @media (--viewport-large) {
  486. display: flex;
  487. justify-content: space-between;
  488. align-items: center;
  489. flex-grow: 1;
  490. max-width: 1024px;
  491. padding: 5px 0;
  492. }
  493. }
  494. .toolbar-right {
  495. & form {
  496. display: flex;
  497. }
  498. @media (--viewport-large) {
  499. display: flex;
  500. }
  501. }
  502. .toolbar-sorting {
  503. position: relative;
  504. font-size: 0.8rem;
  505. padding-bottom: 5px;
  506. & form {
  507. flex-grow: 1;
  508. }
  509. @media (--viewport-small) {
  510. display: flex;
  511. align-items: center;
  512. & form {
  513. margin-left: 10px;
  514. }
  515. }
  516. @media (--viewport-large) {
  517. padding-bottom: 0;
  518. }
  519. }
  520. .toolbar-sorting-toggle {
  521. color: var(--color-text);
  522. display: block;
  523. border: 0;
  524. padding-bottom: 5px;
  525. background: none;
  526. text-transform: uppercase;
  527. &:hover {
  528. color: #4b4b4b;
  529. & b {
  530. color: #4b4b4b;
  531. }
  532. }
  533. &:active {
  534. color: #3b9de8;
  535. & b {
  536. color: #3b9de8;
  537. }
  538. }
  539. & b {
  540. padding-left: 3px;
  541. }
  542. @media (--viewport-small) {
  543. padding-bottom: 0;
  544. }
  545. }
  546. .toolbar-sorting-menu {
  547. position: absolute;
  548. top: 25px;
  549. left: 0;
  550. z-index: 1;
  551. overflow: hidden;
  552. border-radius: var(--border-radius-base);
  553. border: 1px solid rgb(255 255 255 / 100%);
  554. background-color: rgb(255 255 255 / 95%);
  555. box-shadow: 0 2px 14px 0 rgb(20 20 20 / 35%);
  556. & li {
  557. border-bottom: 1px solid #ddd;
  558. color: #2e2e2e;
  559. cursor: pointer;
  560. &:last-child {
  561. border-bottom: none;
  562. }
  563. }
  564. & span {
  565. &.name {
  566. display: inline-block;
  567. padding: 11px;
  568. width: 141px;
  569. font-weight: 500;
  570. & .fas.fa-arrow-down-a-z {
  571. float: right;
  572. margin-top: 2px;
  573. }
  574. }
  575. &.up {
  576. display: inline-block;
  577. padding: 11px 14px;
  578. width: 44px;
  579. }
  580. &.active {
  581. background-color: #4f8bbc;
  582. color: #4686b8;
  583. background: linear-gradient(
  584. to bottom,
  585. rgb(255 255 255 / 60%) 0%,
  586. rgb(255 255 255 / 75%) 50%,
  587. rgb(255 255 255 / 95%) 95%
  588. );
  589. text-shadow: 0 1px rgb(255 255 255 / 80%);
  590. }
  591. &:hover {
  592. color: #3b9de8;
  593. text-shadow: 1px 1px rgb(255 255 255 / 50%);
  594. background: linear-gradient(
  595. to bottom,
  596. rgb(241 248 253 / 100%) 0%,
  597. rgb(218 236 250 / 100%) 50%,
  598. rgb(190 221 246 / 100%) 51%,
  599. rgb(227 240 251 / 100%) 100%
  600. );
  601. box-shadow: inset 0 0 1px #fff, inset 0 0 6px rgb(255 255 255 / 60%);
  602. transition: 0.2s;
  603. }
  604. &:active,
  605. &:focus {
  606. background: linear-gradient(
  607. to bottom,
  608. rgb(210 232 250 / 100%) 0%,
  609. rgb(187 220 247 / 100%) 50%,
  610. rgb(162 207 244 / 100%) 51%,
  611. rgb(194 224 248 / 100%) 100%
  612. );
  613. color: #046c98;
  614. text-shadow: 0 -1px 1px rgb(255 255 255 / 50%);
  615. box-shadow: inset 0 0 1px #fff, inset -1px -1px 4px rgb(220 220 220 / 40%);
  616. }
  617. }
  618. @media (--viewport-small) {
  619. top: 35px;
  620. }
  621. }
  622. .toolbar-input-submit {
  623. display: flex;
  624. align-items: center;
  625. border: 1px solid #ddd;
  626. border-left: 0;
  627. background-color: rgb(255 255 255 / 90%);
  628. border-radius: 0 var(--border-radius-base) var(--border-radius-base) 0;
  629. box-shadow: inset 0 0 1px rgb(41 90 152 / 10%), inset 0 0 2px rgb(255 255 255 / 100%);
  630. text-shadow: 1px 1px rgb(255 255 255 / 90%);
  631. color: #069;
  632. min-width: 32px;
  633. padding: 0 10px;
  634. font-size: 0.75rem;
  635. &:hover {
  636. color: #39c;
  637. background-color: #fff;
  638. }
  639. &:active {
  640. color: #409fd5;
  641. box-shadow: inset 1px 1px 0 rgb(0 0 0 / 10%);
  642. }
  643. }
  644. .toolbar-link {
  645. display: block;
  646. padding: 6px 12px;
  647. color: #777;
  648. text-transform: uppercase;
  649. font-weight: 600;
  650. &.selected {
  651. color: #c36;
  652. }
  653. &:hover {
  654. color: #c36;
  655. }
  656. &:active {
  657. color: #3b9de8;
  658. }
  659. }
  660. .toolbar-buttons {
  661. padding-bottom: 10px;
  662. &:last-child {
  663. padding-bottom: 0;
  664. }
  665. & .button {
  666. min-width: 0;
  667. width: 100%;
  668. margin-bottom: 5px;
  669. padding-left: 10px;
  670. padding-right: 10px;
  671. &:last-child {
  672. margin-bottom: 0;
  673. }
  674. }
  675. @media (--viewport-medium) {
  676. display: flex;
  677. align-items: center;
  678. & .inline-alert {
  679. margin-right: 20px;
  680. }
  681. & .button {
  682. margin-bottom: 0;
  683. margin-right: 8px;
  684. &:last-child {
  685. margin-right: 0;
  686. }
  687. }
  688. }
  689. @media (--viewport-large) {
  690. padding-bottom: 0;
  691. & .button {
  692. width: auto;
  693. }
  694. }
  695. }
  696. .toolbar-search {
  697. @media (--viewport-large) {
  698. margin-left: 12px;
  699. }
  700. }
  701. /* Cards
  702. ========================================================================== */
  703. .cards {
  704. @media (--viewport-small) {
  705. display: grid;
  706. gap: 25px;
  707. grid-template-columns: repeat(2, 1fr);
  708. }
  709. @media (--viewport-medium) {
  710. grid-template-columns: repeat(4, 1fr);
  711. }
  712. }
  713. .card {
  714. overflow: hidden;
  715. background-color: #f5f5f5;
  716. border: 1px solid #d3d3d3;
  717. box-shadow: 0 1px 4px rgb(0 0 0 / 20%);
  718. border-radius: var(--border-radius-base);
  719. margin-bottom: 20px;
  720. @media (--viewport-small) {
  721. margin-bottom: 0;
  722. }
  723. &.disabled {
  724. color: #b6b6b6;
  725. & .card-thumb {
  726. filter: grayscale(100%);
  727. opacity: 0.3;
  728. }
  729. }
  730. }
  731. .card-thumb {
  732. background-color: #fff;
  733. display: flex;
  734. align-items: center;
  735. justify-content: center;
  736. height: 180px;
  737. padding: 20px;
  738. & img {
  739. max-width: 100%;
  740. max-height: 100%;
  741. }
  742. }
  743. .card-content {
  744. padding: 10px;
  745. color: #353535;
  746. border-top: 1px solid #e6e6e6;
  747. text-align: center;
  748. }
  749. .card-title {
  750. font-size: 1rem;
  751. font-weight: 600;
  752. }
  753. /* Improve alignment of "Users" list double-height rows */
  754. .body-user {
  755. & .l-unit.animate__animated.animate__fadeIn,
  756. & .actions-panel {
  757. line-height: 2rem;
  758. }
  759. }
  760. .table-header {
  761. font-size: 0.8rem;
  762. background: linear-gradient(to bottom, rgb(247 247 247 / 100%) 0%, rgb(255 255 255 / 100%) 100%);
  763. background-color: #fff;
  764. border-left: 1px solid #d0d0d0;
  765. border-right: 1px solid #d0d0d0;
  766. border-bottom: 1px solid #d0d0d0;
  767. text-shadow: 0 1px rgb(255 255 255 / 100%);
  768. box-shadow: inset 0 1px 1px rgb(255 255 255 / 100%), inset 0 0 1px rgb(255 255 255 / 100%),
  769. inset 0 0 4px rgb(255 255 255 / 80%), 0 1px 4px rgb(140 140 140 / 35%);
  770. border-radius: 0 0 6px 6px;
  771. min-height: 28px;
  772. padding: 4px 0 4px 15px;
  773. color: #707070;
  774. overflow: hidden;
  775. width: 1024px;
  776. line-height: 1rem;
  777. & .fas {
  778. font-size: 1rem;
  779. }
  780. }
  781. .units {
  782. overflow-x: auto;
  783. padding-left: 20px;
  784. padding-right: 20px;
  785. padding-bottom: 20px;
  786. @media (--viewport-large) {
  787. padding-left: 0;
  788. padding-right: 0;
  789. padding-bottom: 0;
  790. }
  791. }
  792. .l-unit {
  793. color: #707070;
  794. padding-left: 15px;
  795. overflow: hidden;
  796. font-size: 0.8rem;
  797. border-left: 1px solid transparent;
  798. border-right: 1px solid transparent;
  799. }
  800. .units .l-unit {
  801. border-bottom: 1px solid #ddd;
  802. border-left: 1px solid transparent;
  803. border-right: 1px solid transparent;
  804. width: 1024px;
  805. }
  806. .l-unit:hover,
  807. .units .l-unit:hover {
  808. box-shadow: 0 2px 10px rgb(150 150 150 / 20%);
  809. background-color: #f8f8f8;
  810. text-shadow: 0 1px rgb(255 255 255 / 50%);
  811. border-left: 1px solid #ddd;
  812. border-right: 1px solid #ddd;
  813. }
  814. .units .l-unit.l-unit--starred {
  815. border-left: 2px solid #c36;
  816. }
  817. .units.active .l-unit.focus {
  818. border-left: 2px solid #5edad0;
  819. background-color: #eff5fc;
  820. }
  821. .units.active .l-unit.focus .l-unit__name {
  822. color: #36b3a9;
  823. }
  824. .units.active .l-unit.focus .l-unit-toolbar__col--right {
  825. display: block;
  826. }
  827. .units > div:last-child {
  828. border-bottom: none;
  829. }
  830. .l-unit:hover .l-unit-toolbar__col--right {
  831. display: block;
  832. }
  833. .l-unit--blue {
  834. border-left: 2px solid #3b9de8;
  835. }
  836. .l-unit--suspended {
  837. background-color: #eaeaea !important;
  838. color: #c0c0c0;
  839. & a {
  840. color: #c0c0c0 !important;
  841. }
  842. }
  843. .units .l-unit.l-unit--outdated {
  844. background-color: #ffcaca;
  845. color: #4b4b4b;
  846. }
  847. .body-updates .units .l-unit.l-unit--outdated .fas.fa-box-open {
  848. color: #da1010;
  849. }
  850. .l-unit--suspended .l-unit__name,
  851. .l-unit--suspended b,
  852. .l-unit--outdated .l-unit__name,
  853. .l-unit--outdated b {
  854. color: #c0c0c0;
  855. }
  856. .l-unit--outdated .l-unit__name {
  857. color: #333;
  858. }
  859. .l-unit--outdated b {
  860. color: #4b4b4b;
  861. }
  862. .l-unit--suspended .l-percent {
  863. border-color: #fff;
  864. }
  865. .l-unit--suspended .l-percent__fill {
  866. background-color: #fff;
  867. }
  868. .l-unit--suspended .l-unit__name,
  869. .l-unit--suspended .l-unit__name span {
  870. color: #adadad;
  871. }
  872. .l-unit--suspended.selected {
  873. background-color: #f2eab8 !important;
  874. color: #b2ac87 !important;
  875. }
  876. .l-unit--outdated.selected {
  877. background: #ff9494 !important;
  878. color: #333 !important;
  879. text-shadow: none !important;
  880. }
  881. .l-unit--suspended.selected b,
  882. .l-unit--outdated.selected .l-unit__name,
  883. .l-unit--outdated.selected b,
  884. .l-unit--suspended.selected .l-percent,
  885. .l-unit--suspended.selected .l-percent__fill,
  886. .l-unit--suspended.selected .l-unit__name,
  887. .l-unit--suspended.selected .l-unit__name span {
  888. color: #333 !important;
  889. }
  890. .l-unit.selected .l-percent {
  891. border-bottom: 1px dotted #777;
  892. }
  893. .l-unit--selected {
  894. background-color: #d1eddc;
  895. }
  896. .l-unit-toolbar {
  897. display: none;
  898. }
  899. .l-unit label {
  900. margin-bottom: 20px;
  901. }
  902. .l-unit__columns {
  903. display: table;
  904. width: 100%;
  905. }
  906. .l-unit__col {
  907. display: table-cell;
  908. padding-top: 12px;
  909. vertical-align: top;
  910. padding-bottom: 10px;
  911. }
  912. .l-unit__col--left {
  913. width: 110px;
  914. padding-right: 10px;
  915. }
  916. .units.compact .l-unit__col--left {
  917. vertical-align: top;
  918. }
  919. .l-unit__col--right.total {
  920. padding-left: 16px;
  921. }
  922. .l-unit__suspended {
  923. display: none;
  924. font-size: 0.8rem;
  925. font-weight: 600;
  926. margin-top: 36px;
  927. text-transform: uppercase;
  928. margin-bottom: 14px;
  929. }
  930. .units.compact .l-unit__suspended {
  931. margin-top: 1px;
  932. }
  933. .l-unit--outdated .l-unit__suspended,
  934. .l-unit--suspended .l-unit__suspended {
  935. display: block;
  936. }
  937. .l-unit__name {
  938. color: #414141;
  939. font-size: 1.4rem;
  940. margin-top: 10px;
  941. margin-bottom: 10px;
  942. font-weight: 500;
  943. letter-spacing: -0.02em;
  944. }
  945. .l-unit__servername {
  946. color: #414141;
  947. font-size: 1.7rem;
  948. margin-bottom: 10px;
  949. font-weight: 300;
  950. letter-spacing: -0.02em;
  951. }
  952. .l-unit__stats.separate,
  953. .l-unit__name.separate {
  954. padding-bottom: 15px;
  955. }
  956. .body-stats .l-unit__name {
  957. margin-left: -42px;
  958. margin-top: 12px;
  959. color: #606060;
  960. }
  961. .l-unit__name span {
  962. color: #999;
  963. margin-left: 30px;
  964. font-style: italic;
  965. &:first-of-type {
  966. margin-left: 39px;
  967. }
  968. }
  969. .l-unit__name b {
  970. font-weight: normal;
  971. font-style: italic;
  972. }
  973. .l-unit__stats {
  974. margin-bottom: 10px;
  975. margin-left: 15%;
  976. border-left: 1px solid transparent;
  977. border-right: 1px solid transparent;
  978. &:hover {
  979. border-left: 1px solid transparent;
  980. border-right: 1px solid transparent;
  981. box-shadow: none;
  982. background: none;
  983. }
  984. & table {
  985. table-layout: fixed;
  986. margin-top: -54px;
  987. margin-left: -20px;
  988. }
  989. & td {
  990. height: 32px;
  991. padding-bottom: 4px;
  992. vertical-align: middle;
  993. }
  994. }
  995. .body-stats .l-unit__stat-col--left {
  996. width: 180px;
  997. }
  998. .body-stats .l-unit__stat-col--right {
  999. float: right;
  1000. }
  1001. .l-unit__stat-col--left {
  1002. float: left;
  1003. width: 110px;
  1004. &.border {
  1005. border-left: 1px solid #ebebeb;
  1006. }
  1007. &.border-clear {
  1008. border-left: 1px solid transparent;
  1009. }
  1010. & a,
  1011. & a:visited {
  1012. color: #353535;
  1013. }
  1014. & a:hover {
  1015. color: #4c8bbe;
  1016. }
  1017. &.super-compact {
  1018. width: 50px;
  1019. white-space: nowrap;
  1020. }
  1021. &.compact {
  1022. width: 60px;
  1023. }
  1024. &.compact-1 {
  1025. width: 70px;
  1026. }
  1027. &.compact-2 {
  1028. width: 80px;
  1029. }
  1030. &.compact-3 {
  1031. width: 90px;
  1032. }
  1033. &.compact-4 {
  1034. width: 130px;
  1035. }
  1036. &.compact-5 {
  1037. width: 160px;
  1038. }
  1039. &.wide {
  1040. width: 190px;
  1041. }
  1042. &.wide-2 {
  1043. width: 230px;
  1044. }
  1045. &.wide-3 {
  1046. width: 250px;
  1047. }
  1048. &.wide-4 {
  1049. width: 320px;
  1050. }
  1051. &.wide-5 {
  1052. width: 350px;
  1053. }
  1054. &.wide-6 {
  1055. width: 440px;
  1056. }
  1057. &.wide-7 {
  1058. width: 550px;
  1059. }
  1060. }
  1061. .l-unit__stat-col--right {
  1062. float: left;
  1063. max-width: 170px;
  1064. }
  1065. .l-unit-toolbar__col--right {
  1066. float: right;
  1067. }
  1068. .l-unit-toolbar .shortcut {
  1069. display: none;
  1070. }
  1071. .units.active .l-unit.focus .l-unit-toolbar .shortcut {
  1072. display: block;
  1073. background-color: #69a298;
  1074. border-radius: 13px;
  1075. color: #fff;
  1076. cursor: pointer;
  1077. font-size: 0.8rem;
  1078. font-weight: 600;
  1079. line-height: 25px;
  1080. padding-left: 7px;
  1081. padding-right: 9px;
  1082. position: absolute;
  1083. right: 3px;
  1084. top: 3px;
  1085. }
  1086. .units.active .l-unit.focus .l-unit-toolbar .shortcut.delete {
  1087. font-size: 10px;
  1088. padding-left: 2px;
  1089. padding-right: 5px;
  1090. text-transform: capitalize;
  1091. }
  1092. .units.active .l-unit.focus .l-unit-toolbar .shortcut.enter {
  1093. font-size: 17px;
  1094. padding-left: 1px;
  1095. padding-right: 7px;
  1096. }
  1097. .units.active .l-unit.focus .l-unit-toolbar i {
  1098. background: none;
  1099. }
  1100. .actions-panel {
  1101. line-height: 1.1rem;
  1102. }
  1103. .actions-panel__col {
  1104. display: inline-block;
  1105. margin-left: 3px;
  1106. text-transform: uppercase;
  1107. & a {
  1108. color: #777;
  1109. font-weight: 600;
  1110. font-size: 0.9rem;
  1111. display: inline-block;
  1112. cursor: pointer;
  1113. }
  1114. }
  1115. .l-unit__col .actions-panel .fas {
  1116. display: none;
  1117. }
  1118. .l-unit__col:hover .actions-panel .fas {
  1119. display: inline-block;
  1120. }
  1121. .l-unit__stat-cols {
  1122. padding-right: 10px;
  1123. }
  1124. .l-unit__stat-cols.last {
  1125. padding-right: 0;
  1126. }
  1127. .l-unit__stat-cols.graph {
  1128. width: 242px;
  1129. }
  1130. .l-percent {
  1131. border-bottom: 3px solid #e6e6e6;
  1132. margin-top: 2px;
  1133. width: 242px;
  1134. }
  1135. .l-percent__fill {
  1136. background-color: #54e000;
  1137. height: 3px;
  1138. position: relative;
  1139. bottom: -3px;
  1140. }
  1141. .statistics-count {
  1142. min-width: 24px;
  1143. text-align: right;
  1144. border-bottom: 1px dotted #ddd;
  1145. border-right: 1px dotted #ddd;
  1146. padding-right: 4px;
  1147. }
  1148. /* Forms
  1149. ========================================================================== */
  1150. .form-container {
  1151. max-width: 640px;
  1152. margin-left: auto;
  1153. margin-right: auto;
  1154. padding: 30px 20px;
  1155. }
  1156. .form-container-wide {
  1157. max-width: 920px;
  1158. }
  1159. .form-container-narrow {
  1160. max-width: 810px;
  1161. }
  1162. @media (--viewport-medium) {
  1163. .sidebar-right-container {
  1164. display: grid;
  1165. gap: 50px;
  1166. grid-template-columns: 2fr 1.3fr;
  1167. }
  1168. }
  1169. @media (--viewport-medium) {
  1170. .sidebar-left-container {
  1171. display: grid;
  1172. gap: 50px;
  1173. grid-template-columns: 1fr 3fr;
  1174. }
  1175. }
  1176. .form-title {
  1177. color: #4b4b4b;
  1178. font-size: 1.4rem;
  1179. font-weight: 500;
  1180. padding-bottom: 30px;
  1181. letter-spacing: -0.01em;
  1182. }
  1183. .form-label {
  1184. margin-bottom: 5px;
  1185. display: inline-block;
  1186. }
  1187. .form-label,
  1188. .form-check label {
  1189. color: #4b4b4b;
  1190. font-weight: 600;
  1191. }
  1192. .form-control {
  1193. background-color: #fff;
  1194. border: 1px solid #cfcfcf;
  1195. display: block;
  1196. width: 100%;
  1197. padding: 8px 12px;
  1198. font-size: 16px;
  1199. font-weight: normal;
  1200. color: #4e4e4e;
  1201. border-radius: var(--border-radius-base);
  1202. line-height: 1.5;
  1203. appearance: none;
  1204. box-shadow: 0 1px 4px rgb(0 0 0 / 15%);
  1205. transition: background-color 0.5s;
  1206. &:hover {
  1207. border-color: #94c8f0;
  1208. }
  1209. &:focus {
  1210. border-color: #008fee;
  1211. background-color: #d7f9ff;
  1212. color: #333;
  1213. }
  1214. &.list-editor {
  1215. border-color: transparent;
  1216. box-shadow: none;
  1217. position: absolute;
  1218. padding-top: 7px;
  1219. padding-bottom: 7px;
  1220. width: auto;
  1221. top: 1px;
  1222. left: 1px;
  1223. right: 30px;
  1224. &:hover {
  1225. border-color: transparent;
  1226. }
  1227. &:focus {
  1228. background-color: #fff;
  1229. }
  1230. }
  1231. &.highlighted {
  1232. color: #444;
  1233. background-color: #fff7b6;
  1234. }
  1235. @media (--viewport-small) {
  1236. font-size: 0.8rem;
  1237. }
  1238. }
  1239. .form-select {
  1240. display: block;
  1241. width: 100%;
  1242. font-weight: normal;
  1243. font-size: 16px;
  1244. padding: 8px 30px 8px 12px;
  1245. line-height: 1.5;
  1246. border-radius: var(--border-radius-base);
  1247. background-color: #fff;
  1248. border: 1px solid #ccc;
  1249. color: #4e4e4e;
  1250. appearance: none;
  1251. background-image: url("/images/arrow.svg");
  1252. background-size: 16px auto;
  1253. background-repeat: no-repeat;
  1254. background-position: right 9px center;
  1255. text-shadow: 0 0 0 #4b4b4b;
  1256. box-shadow: 0 1px 4px rgb(0 0 0 / 15%);
  1257. &:hover {
  1258. border-color: #94c8f0;
  1259. }
  1260. &:focus {
  1261. border-color: #008fee;
  1262. }
  1263. @media (--viewport-small) {
  1264. font-size: 0.8rem;
  1265. }
  1266. }
  1267. .form-check {
  1268. position: relative;
  1269. padding-left: 20px;
  1270. margin-left: 3px;
  1271. min-height: 24px;
  1272. }
  1273. .form-check-input {
  1274. position: absolute;
  1275. margin-top: 3px;
  1276. margin-left: -20px;
  1277. }
  1278. .form-control:disabled,
  1279. .form-select:disabled {
  1280. background-color: #e7e7e7;
  1281. text-shadow: 1px 1px rgb(255 255 255 / 100%);
  1282. color: #686868;
  1283. }
  1284. .form-control:focus:disabled {
  1285. border-color: #dedede;
  1286. background-color: #f1f1f1;
  1287. }
  1288. .form-control:disabled:hover,
  1289. .form-select:disabled:hover {
  1290. border-color: #cfcfcf;
  1291. }
  1292. .form-link {
  1293. color: #326b9b;
  1294. cursor: pointer;
  1295. text-decoration: underline;
  1296. font-weight: 600;
  1297. border-radius: var(--border-radius-base);
  1298. margin-left: -3px;
  1299. border: 0;
  1300. padding-left: 3px;
  1301. padding-right: 3px;
  1302. background-color: transparent;
  1303. &:hover {
  1304. text-decoration: none;
  1305. color: #fff;
  1306. background-color: #3b9de8;
  1307. }
  1308. &:active {
  1309. background-color: #54a6e5;
  1310. }
  1311. }
  1312. .form-link-danger {
  1313. &:hover {
  1314. background-color: #c36;
  1315. }
  1316. &:active {
  1317. background-color: #f7d616;
  1318. }
  1319. }
  1320. .toggle-password {
  1321. color: #aaa;
  1322. z-index: 1;
  1323. position: absolute;
  1324. top: 9px;
  1325. right: 12px;
  1326. }
  1327. .toggle-psw-visibility-icon {
  1328. cursor: pointer;
  1329. opacity: 1;
  1330. margin: -2px;
  1331. }
  1332. .password-meter {
  1333. height: 3px;
  1334. overflow: hidden;
  1335. margin-left: 3px;
  1336. margin-right: 3px;
  1337. border-bottom-left-radius: 3px;
  1338. border-bottom-right-radius: 3px;
  1339. box-shadow: 0 1px 2px rgb(0 0 0 / 25%);
  1340. }
  1341. .password-meter-input {
  1342. appearance: none;
  1343. display: block;
  1344. size: 100%;
  1345. background: #e7e7e7;
  1346. &[value="1"] {
  1347. background: red;
  1348. &::-moz-meter-bar {
  1349. background: red;
  1350. }
  1351. &::-webkit-meter-bar {
  1352. background: red;
  1353. }
  1354. &::-webkit-meter-optimum-value {
  1355. background: red;
  1356. }
  1357. }
  1358. &[value="2"] {
  1359. background: orange;
  1360. &::-moz-meter-bar {
  1361. background: orange;
  1362. }
  1363. &::-webkit-meter-bar {
  1364. background: orange;
  1365. }
  1366. &::-webkit-meter-optimum-value {
  1367. background: orange;
  1368. }
  1369. }
  1370. &[value="3"] {
  1371. background: yellow;
  1372. &::-moz-meter-bar {
  1373. background: yellow;
  1374. }
  1375. &::-webkit-meter-bar {
  1376. background: yellow;
  1377. }
  1378. &::-webkit-meter-optimum-value {
  1379. background: yellow;
  1380. }
  1381. }
  1382. &[value="4"] {
  1383. background: green;
  1384. &::-moz-meter-bar {
  1385. background: green;
  1386. }
  1387. &::-webkit-meter-bar {
  1388. background: green;
  1389. }
  1390. &::-webkit-meter-optimum-value {
  1391. background: green;
  1392. }
  1393. }
  1394. }
  1395. .unlim-trigger {
  1396. cursor: pointer;
  1397. position: absolute;
  1398. top: 13px;
  1399. right: 12px;
  1400. z-index: 1;
  1401. font-size: 0.8rem;
  1402. }
  1403. .optional {
  1404. font-size: 0.8rem;
  1405. margin-left: 6px;
  1406. font-weight: normal;
  1407. }
  1408. .hint {
  1409. color: #777;
  1410. font-size: 0.8rem;
  1411. font-style: italic;
  1412. font-weight: normal;
  1413. }
  1414. .hint-prefix {
  1415. color: #555;
  1416. font-size: 0.8rem;
  1417. }
  1418. .section-title {
  1419. display: flex;
  1420. color: #4b4b4b;
  1421. cursor: pointer;
  1422. justify-content: space-between;
  1423. align-items: center;
  1424. font-size: 1.05rem;
  1425. font-weight: 600;
  1426. padding-top: 28px;
  1427. padding-bottom: 12px;
  1428. border-bottom: 1px solid #ccc;
  1429. }
  1430. /* Modals
  1431. ========================================================================== */
  1432. .modal {
  1433. border-radius: var(--border-radius-base);
  1434. box-shadow: inset 0 1px 3px rgb(0 0 0 / 25%), 0 8px 40px 0 rgb(0 0 0 / 35%);
  1435. background-color: rgb(255 255 255 / 90%);
  1436. border: 1px solid rgb(255 255 255 / 98%);
  1437. @media (--viewport-small) {
  1438. min-width: 360px;
  1439. max-width: 550px;
  1440. }
  1441. }
  1442. .modal-title {
  1443. color: #305ba9;
  1444. font-size: 1rem;
  1445. text-align: center;
  1446. padding: 15px 20px 0;
  1447. }
  1448. .modal-message {
  1449. color: #535353;
  1450. text-align: center;
  1451. padding: 25px 20px;
  1452. }
  1453. .modal-options {
  1454. box-shadow: inset 0 0 2px rgb(0 0 0 / 25%);
  1455. display: flex;
  1456. justify-content: flex-end;
  1457. padding: 10px;
  1458. }
  1459. /* Shortcuts panel
  1460. ========================================================================== */
  1461. .shortcuts {
  1462. background: rgb(50 50 50 / 93%);
  1463. color: #eee;
  1464. border: 1px solid rgb(255 255 255 / 70%);
  1465. border-radius: 6px;
  1466. box-shadow: 0 4px 30px rgb(0 0 0 / 50%);
  1467. & li {
  1468. padding: 5px 20px;
  1469. }
  1470. & .key {
  1471. color: #ff3478;
  1472. display: inline-block;
  1473. font-weight: 600;
  1474. padding-right: 20px;
  1475. &.bigger {
  1476. font-size: 1.1rem;
  1477. }
  1478. }
  1479. }
  1480. .shortcuts-header {
  1481. display: flex;
  1482. align-items: center;
  1483. justify-content: space-between;
  1484. border-bottom: 1px solid #606060;
  1485. padding: 10px 10px 10px 20px;
  1486. }
  1487. .shortcuts-title {
  1488. text-transform: uppercase;
  1489. color: #ff3478;
  1490. letter-spacing: -0.01em;
  1491. font-weight: 600;
  1492. }
  1493. .shortcuts-close {
  1494. cursor: pointer;
  1495. padding: 5px 10px;
  1496. &:hover {
  1497. color: #db0000;
  1498. }
  1499. &:active {
  1500. color: #a60000;
  1501. }
  1502. }
  1503. .shortcuts-inner {
  1504. @media (--viewport-medium) {
  1505. display: flex;
  1506. }
  1507. }
  1508. .shortcuts-list {
  1509. flex-grow: 1;
  1510. padding: 40px;
  1511. }
  1512. /* Buttons
  1513. ========================================================================== */
  1514. .button {
  1515. cursor: pointer;
  1516. display: inline-block;
  1517. line-height: 21px;
  1518. font-size: 0.85rem;
  1519. font-weight: 500;
  1520. padding: 3px 25px;
  1521. user-select: none;
  1522. color: #30659d;
  1523. min-width: 100px;
  1524. text-align: center;
  1525. text-shadow: 0 1px 1px rgb(255 255 255 / 85%);
  1526. border: 1px solid #0083db;
  1527. border-radius: 3px;
  1528. background-color: #3b9de8;
  1529. background: linear-gradient(
  1530. to bottom,
  1531. rgb(235 243 249 / 100%) 0%,
  1532. rgb(192 216 236 / 100%) 51%,
  1533. rgb(223 235 245 / 100%) 100%
  1534. );
  1535. box-shadow: 0 1px 3px rgb(0 0 0 / 25%), inset 0 0 1px #fff, inset 0 0 3px rgb(255 255 255 / 50%);
  1536. &:hover {
  1537. color: #0077c6;
  1538. text-shadow: 1px 1px rgb(255 255 255 / 50%);
  1539. border-color: #54a6e5;
  1540. background: linear-gradient(
  1541. to bottom,
  1542. rgb(241 248 253 / 100%) 0%,
  1543. rgb(190 221 246 / 100%) 51%,
  1544. rgb(227 240 251 / 100%) 100%
  1545. );
  1546. box-shadow: 0 1px 3px rgb(0 0 0 / 25%), inset 0 0 1px #fff, inset 0 0 6px rgb(255 255 255 / 60%);
  1547. transition: 0.2s;
  1548. }
  1549. &:active,
  1550. &:focus {
  1551. color: #517bab;
  1552. text-shadow: 0 -1px 2px rgb(255 255 255 / 85%);
  1553. border-color: #0066b4;
  1554. background: linear-gradient(
  1555. to bottom,
  1556. rgb(194 224 248 / 100%) 0%,
  1557. rgb(162 207 244 / 100%) 51%,
  1558. rgb(210 232 250 / 100%) 100%
  1559. );
  1560. box-shadow: 0 1px 2px rgb(0 0 0 / 20%), inset 0 0 1px #fff,
  1561. inset -1px -1px 4px rgb(220 220 220 / 40%);
  1562. }
  1563. & .fas {
  1564. margin-right: 6px;
  1565. }
  1566. }
  1567. .button-secondary {
  1568. color: #717171;
  1569. border-color: #aaa;
  1570. background: linear-gradient(
  1571. to bottom,
  1572. rgb(250 250 250 / 100%) 0%,
  1573. rgb(230 230 230 / 100%) 51%,
  1574. rgb(242 242 242 / 100%) 100%
  1575. );
  1576. }
  1577. .button-danger:hover {
  1578. background: linear-gradient(to bottom, #fbf2f1 0%, #f6b4ac 51%, #fde6e3 100%);
  1579. color: #f4301a;
  1580. text-shadow: 0 1px rgb(255 255 255 / 50%);
  1581. border-color: #f27e71;
  1582. }
  1583. .button-danger:active,
  1584. .button-danger:focus {
  1585. background: linear-gradient(to bottom, #fcd0ca 0%, #f5a69d 50%, #f9e3df 100%);
  1586. color: #ce1500;
  1587. text-shadow: 0 1px 1px rgb(255 255 255 / 20%), 0 -1px 1px rgb(255 255 255 / 60%);
  1588. border-color: #f4301a;
  1589. }
  1590. .button-circle {
  1591. border-radius: 50%;
  1592. min-width: 30px;
  1593. min-height: 30px;
  1594. padding: 3px;
  1595. & .fas {
  1596. margin-right: 0;
  1597. }
  1598. }
  1599. .button-floating {
  1600. display: none;
  1601. @media (--viewport-medium) {
  1602. display: flex;
  1603. justify-content: center;
  1604. align-items: center;
  1605. position: fixed;
  1606. z-index: 1;
  1607. bottom: 70px;
  1608. }
  1609. }
  1610. .button-floating-top {
  1611. right: 60px;
  1612. }
  1613. .button-floating-shortcuts {
  1614. right: 110px;
  1615. }
  1616. /* Values List component
  1617. ========================================================================== */
  1618. .values-list {
  1619. }
  1620. .values-list-item {
  1621. margin-bottom: 3px;
  1622. @media (--viewport-small) {
  1623. display: flex;
  1624. }
  1625. }
  1626. .values-list-label {
  1627. display: block;
  1628. font-weight: 600;
  1629. @media (--viewport-small) {
  1630. min-width: 130px;
  1631. }
  1632. }
  1633. .values-list-value {
  1634. }
  1635. /* Server summary component
  1636. ========================================================================== */
  1637. .server-summary {
  1638. padding: 20px;
  1639. @media (--viewport-medium) {
  1640. display: flex;
  1641. }
  1642. }
  1643. .server-summary-icon {
  1644. text-align: center;
  1645. margin-bottom: 10px;
  1646. & .fas {
  1647. font-size: 4.6rem;
  1648. }
  1649. @media (--viewport-medium) {
  1650. margin-top: 8px;
  1651. margin-bottom: 0;
  1652. }
  1653. }
  1654. .server-summary-content {
  1655. text-align: center;
  1656. @media (--viewport-medium) {
  1657. text-align: left;
  1658. flex-grow: 1;
  1659. margin-left: 30px;
  1660. }
  1661. @media (--viewport-large) {
  1662. margin-left: 40px;
  1663. }
  1664. }
  1665. .server-summary-title {
  1666. color: #414141;
  1667. margin-bottom: 10px;
  1668. @media (--viewport-medium) {
  1669. font-size: 1.7rem;
  1670. margin-bottom: 0;
  1671. }
  1672. }
  1673. .server-summary-list {
  1674. @media (--viewport-medium) {
  1675. display: flex;
  1676. justify-content: space-between;
  1677. }
  1678. }
  1679. .server-summary-item {
  1680. @media (--viewport-large) {
  1681. min-width: 200px;
  1682. }
  1683. }
  1684. .server-summary-list-label {
  1685. font-weight: 600;
  1686. @media (--viewport-medium) {
  1687. display: block;
  1688. }
  1689. }
  1690. .server-summary-list-value {
  1691. }
  1692. /* Panel component
  1693. ========================================================================== */
  1694. .panel {
  1695. padding: 20px;
  1696. border: 1px solid #d9d9d9;
  1697. box-shadow: 0 1px 4px rgb(0 0 0 / 15%);
  1698. border-radius: var(--border-radius-base);
  1699. }
  1700. /* Collapse component
  1701. ========================================================================== */
  1702. .collapse {
  1703. }
  1704. .collapse[open] .collapse-header::after {
  1705. transform: rotate(180deg);
  1706. }
  1707. .collapse-header {
  1708. background: linear-gradient(to bottom, rgb(247 247 247 / 100%) 0%, rgb(255 255 255 / 100%) 100%);
  1709. border: 1px solid #ddd;
  1710. text-shadow: 0 1px rgb(255 255 255 / 95%);
  1711. box-shadow: inset 0 0 1px rgb(255 255 255 / 100%), inset 0 0 4px rgb(255 255 255 / 80%),
  1712. 0 4px 6px rgb(190 190 190 / 40%);
  1713. font-weight: 600;
  1714. color: #30659d;
  1715. cursor: pointer;
  1716. position: relative;
  1717. padding: 8px 18px;
  1718. &:hover {
  1719. color: #ff3478;
  1720. }
  1721. &::after {
  1722. content: "";
  1723. display: block;
  1724. background-image: url("/images/arrow.svg");
  1725. background-size: 22px auto;
  1726. background-repeat: no-repeat;
  1727. background-position: center;
  1728. size: 22px 100%;
  1729. position: absolute;
  1730. top: 0;
  1731. right: 15px;
  1732. }
  1733. }
  1734. .collapse-content {
  1735. box-sizing: border-box; /* Work around box-sizing not inheriting in <details> in many browsers */
  1736. padding: 20px 20px 10px;
  1737. @media (--viewport-medium) {
  1738. padding: 20px 50px 10px;
  1739. }
  1740. }
  1741. /* Login
  1742. ========================================================================== */
  1743. .body-login,
  1744. .body-reset {
  1745. display: flex;
  1746. align-items: center;
  1747. justify-content: center;
  1748. background: rgb(102 158 231);
  1749. background: radial-gradient(circle, rgb(102 158 231 / 100%) 0%, rgb(43 86 177 / 100%) 100%);
  1750. & .debug-panel {
  1751. display: none;
  1752. }
  1753. }
  1754. .login {
  1755. flex-grow: 1;
  1756. padding: 30px;
  1757. margin-bottom: 20%;
  1758. & .form-label {
  1759. color: #fff;
  1760. }
  1761. & .error {
  1762. color: #be5abf;
  1763. margin-bottom: 20px;
  1764. }
  1765. @media (--viewport-small) {
  1766. border-radius: 6px;
  1767. background-color: rgb(255 255 255 / 70%);
  1768. box-shadow: 0 8px 25px rgb(0 0 0 / 30%), inset 0 0 2px rgb(255 255 255 / 100%);
  1769. padding: 70px 50px;
  1770. max-width: 370px;
  1771. & .form-label {
  1772. color: #4b4b4b;
  1773. }
  1774. }
  1775. @media (--viewport-medium) {
  1776. display: flex;
  1777. align-items: flex-end;
  1778. gap: 30px;
  1779. max-width: 500px;
  1780. & form {
  1781. flex-grow: 1;
  1782. }
  1783. }
  1784. }
  1785. .login-title {
  1786. color: #fff;
  1787. font-size: 1.05rem;
  1788. font-weight: 500;
  1789. margin-bottom: 30px;
  1790. @media (--viewport-small) {
  1791. color: #4b4b4b;
  1792. }
  1793. }
  1794. .login-form-link {
  1795. color: #fff;
  1796. text-transform: uppercase;
  1797. @media (--viewport-small) {
  1798. color: #326b9b;
  1799. &:hover {
  1800. color: #0077c6;
  1801. }
  1802. }
  1803. }
  1804. /* Spinner
  1805. ========================================================================== */
  1806. .fullscreen-loader {
  1807. position: fixed;
  1808. inset: 0;
  1809. display: flex;
  1810. justify-content: center;
  1811. align-items: center;
  1812. padding: 50px;
  1813. background-color: rgb(0 0 0 / 50%);
  1814. font-size: 50px;
  1815. z-index: 9999;
  1816. visibility: hidden;
  1817. opacity: 0;
  1818. transition: opacity 0.2s ease, visibility 0s 0.2s;
  1819. &.show {
  1820. visibility: visible;
  1821. opacity: 1;
  1822. transition: opacity 0.2s ease, visibility 0s 0s;
  1823. }
  1824. }
  1825. .qr-code {
  1826. border: 1px solid #cfcfcf;
  1827. border-radius: var(--border-radius-base);
  1828. box-shadow: 0 1px 4px rgb(0 0 0 / 15%);
  1829. }
  1830. .l-unit.selected {
  1831. background-color: #f8f8f8;
  1832. color: #4b4b4b;
  1833. box-shadow: 0 2px 10px rgb(150 150 150 / 20%);
  1834. text-shadow: 0 1px rgb(255 255 255 / 50%);
  1835. border-left: 1px solid #ddd;
  1836. border-right: 1px solid #ddd;
  1837. & b,
  1838. & strong {
  1839. color: #4b4b4b;
  1840. }
  1841. &:hover {
  1842. background-color: #fff5ce;
  1843. color: #4b4b4b;
  1844. box-shadow: 0 2px 14px rgb(150 150 150 / 25%);
  1845. text-shadow: 0 1px rgb(255 255 255 / 60%);
  1846. }
  1847. }
  1848. .console-output {
  1849. font-family: var(--font-family-monospace);
  1850. font-size: 0.92rem;
  1851. color: #202020;
  1852. }
  1853. #vstobjects.suspended {
  1854. background-color: #fff;
  1855. padding-bottom: 30px;
  1856. }
  1857. /* Badge component
  1858. ========================================================================== */
  1859. .badge {
  1860. display: inline-block;
  1861. min-width: 26px;
  1862. min-height: 24px;
  1863. line-height: 24px;
  1864. border-radius: 50%;
  1865. font-weight: 700;
  1866. font-size: 0.75rem;
  1867. box-shadow: 0 1px 2px rgb(70 70 70 / 50%), inset 0 2px 2px #fff;
  1868. color: #6c6c6c;
  1869. text-shadow: 0 1px #fafafa;
  1870. border: 1px solid #b8b8b8;
  1871. background-color: #eaeaea;
  1872. margin-top: -2px;
  1873. }
  1874. .l-unit--suspended .badge {
  1875. background: #eaeaea;
  1876. color: #c0c0c0;
  1877. text-shadow: 0 -1px #fafafa;
  1878. box-shadow: 0 1px 2px rgb(120 120 120 / 30%);
  1879. }
  1880. /* Icon component
  1881. ========================================================================== */
  1882. .icon-large {
  1883. font-size: 1rem;
  1884. }
  1885. .icon-teal {
  1886. color: var(--icon-color-teal);
  1887. &:hover {
  1888. color: var(--icon-color-teal);
  1889. }
  1890. }
  1891. .icon-purple {
  1892. color: var(--icon-color-purple);
  1893. &:hover {
  1894. color: var(--icon-color-purple);
  1895. }
  1896. }
  1897. .icon-maroon {
  1898. color: var(--icon-color-maroon);
  1899. &:hover {
  1900. color: var(--icon-color-maroon);
  1901. }
  1902. }
  1903. .icon-red {
  1904. color: var(--icon-color-red);
  1905. &:hover {
  1906. color: var(--icon-color-red);
  1907. }
  1908. }
  1909. .icon-green {
  1910. color: var(--icon-color-green);
  1911. &:hover {
  1912. color: var(--icon-color-green);
  1913. }
  1914. }
  1915. .icon-orange {
  1916. color: var(--icon-color-orange);
  1917. &:hover {
  1918. color: var(--icon-color-orange);
  1919. }
  1920. }
  1921. .icon-blue {
  1922. color: var(--icon-color-blue);
  1923. &:hover {
  1924. color: var(--icon-color-blue);
  1925. }
  1926. }
  1927. .icon-lightblue {
  1928. color: var(--icon-color-lightblue);
  1929. &:hover {
  1930. color: var(--icon-color-lightblue);
  1931. }
  1932. }
  1933. .icon-highlight {
  1934. color: #323232;
  1935. &:hover {
  1936. color: #323232;
  1937. }
  1938. }
  1939. .icon-dim {
  1940. color: #ddd;
  1941. text-shadow: 1px 1px rgb(255 255 255 / 30%);
  1942. }
  1943. .l-unit--suspended .icon-dim {
  1944. color: #c0c0c0;
  1945. }
  1946. /* Tabs component
  1947. ========================================================================== */
  1948. .tabs {
  1949. border: 1px solid #cfcfcf;
  1950. border-radius: var(--border-radius-base);
  1951. box-shadow: 0 1px 4px rgb(0 0 0 / 15%);
  1952. padding: 10px;
  1953. }
  1954. .tabs-items {
  1955. display: flex;
  1956. flex-wrap: wrap;
  1957. }
  1958. .tabs-item {
  1959. border: 0;
  1960. background-color: transparent;
  1961. text-transform: uppercase;
  1962. font-weight: 600;
  1963. color: #777;
  1964. padding: 10px;
  1965. &:hover,
  1966. &[aria-selected="true"] {
  1967. color: #c36;
  1968. }
  1969. &:active {
  1970. color: #3b9de8;
  1971. }
  1972. @media (--viewport-medium) {
  1973. margin-right: 10px;
  1974. }
  1975. }
  1976. .tabs-panel {
  1977. padding: 10px;
  1978. }
  1979. .cron-tabs {
  1980. margin-top: 20px;
  1981. @media (--viewport-medium) {
  1982. margin-top: 25px;
  1983. & .form-label {
  1984. padding-right: 15px;
  1985. padding-left: 25px;
  1986. &.first {
  1987. display: inline-block;
  1988. width: 120px;
  1989. padding-left: 0;
  1990. }
  1991. }
  1992. & .form-select {
  1993. display: inline-block;
  1994. max-width: 384px;
  1995. }
  1996. }
  1997. }
  1998. .server-console-output {
  1999. color: #c36;
  2000. padding: 10px 0 20px 20px;
  2001. background: #fff;
  2002. }
  2003. .userlist-email {
  2004. font-size: 0.75rem;
  2005. white-space: nowrap;
  2006. text-overflow: ellipsis;
  2007. }
  2008. .userlist-username {
  2009. margin-top: -2px;
  2010. line-height: 1.2rem;
  2011. }
  2012. /* App footer
  2013. ========================================================================== */
  2014. .app-footer {
  2015. color: #7c7c7c;
  2016. border-top: 1px solid #ddd;
  2017. font-size: 0.8rem;
  2018. padding-top: 20px;
  2019. padding-bottom: 20px;
  2020. @media (--viewport-medium) {
  2021. padding-top: 40px;
  2022. padding-bottom: 40px;
  2023. }
  2024. }
  2025. .app-footer-inner {
  2026. padding-left: 20px;
  2027. padding-right: 20px;
  2028. @media (--viewport-large) {
  2029. padding-left: 15px;
  2030. padding-right: 15px;
  2031. }
  2032. }
  2033. /* Alerts
  2034. ========================================================================== */
  2035. .alert {
  2036. border-radius: var(--border-radius-base);
  2037. border: 1px solid var(--alert-border-color);
  2038. color: #fff;
  2039. font-weight: 400;
  2040. padding: 15px;
  2041. box-shadow: var(--alert-box-shadow);
  2042. text-shadow: var(--alert-text-shadow);
  2043. & a {
  2044. color: #fff;
  2045. font-weight: bold;
  2046. &:hover {
  2047. text-decoration: underline;
  2048. }
  2049. }
  2050. & .fas {
  2051. flex-shrink: 0;
  2052. size: 32px;
  2053. font-size: 1.3rem;
  2054. font-weight: 600;
  2055. line-height: 30px;
  2056. border-radius: 50%;
  2057. text-align: center;
  2058. background-color: #fff;
  2059. margin-bottom: 10px;
  2060. }
  2061. @media (--viewport-small) {
  2062. display: flex;
  2063. & .fas {
  2064. margin-right: 15px;
  2065. margin-bottom: 0;
  2066. }
  2067. }
  2068. }
  2069. .alert-info {
  2070. background-color: var(--alert-info-color);
  2071. & .fas {
  2072. color: var(--alert-info-color);
  2073. }
  2074. }
  2075. .alert-danger {
  2076. background-color: var(--alert-danger-color);
  2077. & .fas {
  2078. color: var(--alert-danger-color);
  2079. }
  2080. }
  2081. .alert-success {
  2082. background-color: var(--alert-success-color);
  2083. & .fas {
  2084. color: var(--alert-success-color);
  2085. }
  2086. }
  2087. /* Inline alerts
  2088. ========================================================================== */
  2089. .inline-alert {
  2090. display: flex;
  2091. font-weight: 600;
  2092. & .fas {
  2093. margin-top: 4px;
  2094. margin-right: 6px;
  2095. }
  2096. }
  2097. .inline-alert-danger {
  2098. color: #f33;
  2099. }
  2100. .inline-alert-success {
  2101. color: #53ba55;
  2102. & a {
  2103. color: #326b9b;
  2104. &:hover {
  2105. color: #c36;
  2106. }
  2107. &:active {
  2108. color: #d53067;
  2109. }
  2110. }
  2111. }
  2112. /* Updates banner
  2113. ========================================================================== */
  2114. .updates-banner {
  2115. width: 100%;
  2116. text-align: center;
  2117. border-top: 1px solid rgb(255 255 255 / 25%);
  2118. box-shadow: 0 -2px 4px rgb(0 0 0 / 40%);
  2119. background-color: green;
  2120. color: #fff;
  2121. font-size: 0.75rem;
  2122. padding: 10px;
  2123. position: fixed;
  2124. bottom: 0;
  2125. & button {
  2126. border: 0;
  2127. padding: 0;
  2128. background-color: transparent;
  2129. color: #fff;
  2130. font-weight: 500;
  2131. &:hover {
  2132. color: #fff;
  2133. text-decoration: underline;
  2134. }
  2135. }
  2136. }
  2137. /* Debug panel
  2138. ========================================================================== */
  2139. .debug-panel {
  2140. position: fixed;
  2141. bottom: 0;
  2142. left: 0;
  2143. width: 100%;
  2144. z-index: 3;
  2145. box-shadow: 0 0 5px rgb(0 0 0 / 40%);
  2146. @media (--viewport-medium) {
  2147. width: auto;
  2148. }
  2149. }
  2150. .debug-panel-toggle {
  2151. display: block;
  2152. width: 100%;
  2153. border: 0;
  2154. text-align: center;
  2155. font-size: 0.8rem;
  2156. font-weight: 500;
  2157. color: #000;
  2158. padding: 10px 15px;
  2159. background-color: #ff0;
  2160. &:hover {
  2161. background-color: #ee0;
  2162. }
  2163. }
  2164. .debug-panel-content {
  2165. background-color: #eee;
  2166. font-size: 0.75rem;
  2167. padding: 20px;
  2168. max-height: 300px;
  2169. overflow: auto;
  2170. }