dark.css 26 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520
  1. /*
  2. Theme Name: Dark
  3. Author: Kristan Kenney (@kristankenney)
  4. Website: www.hestiacp.com
  5. */
  6. body {
  7. background-color: #282828;
  8. }
  9. b,
  10. strong {
  11. color: #cacaca;
  12. }
  13. button,
  14. select {
  15. text-shadow: 0 0 0 #d4d4d4 !important;
  16. }
  17. body {
  18. color: #cdcdcd;
  19. }
  20. .body-login, .body-reset {
  21. background: #303030 !important;
  22. background: radial-gradient(circle, rgba(77,77,77,1) 0%, rgba(31,31,31,1) 100%) !important;
  23. }
  24. a {
  25. color: #cdcdcd;
  26. }
  27. .disabled {
  28. }
  29. .l-header {
  30. background: #454545;
  31. border-bottom: 1px solid #505050;
  32. text-shadow: 1px 1px rgba(0,0,0,0.5);
  33. box-shadow: 0px 8px 15px rgba(0,0,0,0.25);
  34. }
  35. .l-menu__item.l-menu__item--active a {
  36. color: #dadada;
  37. background: linear-gradient(to bottom, rgba(15,15,15,0.6) 0%,rgba(45,45,45,0.75) 30%,rgba(60,60,60,1) 95%);
  38. text-shadow: 0px 1px rgba(0,0,0,0.5);
  39. border-left-color: #353535;
  40. border-right-color: #353535;
  41. }
  42. .l-menu__item a {
  43. color: #e7e7e7;
  44. }
  45. .l-menu__item a:hover {
  46. color: #dadada !important;
  47. text-shadow: 1px 1px rgba(0,0,0,0.5) !important;
  48. background: linear-gradient(to bottom, rgba(15,15,15,0.6) 0%,rgba(45,45,45,0.75) 30%,rgba(60,60,60,1) 95%) !important;
  49. box-shadow: none !important;
  50. }
  51. .l-menu__item a:active {
  52. background: linear-gradient(to bottom, rgba(15,15,15,0.7) 0%,rgba(45,45,45,0.85) 30%,rgba(50,50,50,1) 95%) !important;
  53. color: #fff !important;
  54. text-shadow: 0px -1px 1px rgba(0,0,0,0.5) !important;
  55. }
  56. .l-menu__item.l-menu__item--active:hover {
  57. background: linear-gradient(to bottom, rgba(255,255,255,0.15) 0%,rgba(255,255,255,0.15) 30%,rgba(255,255,255,0.15) 95%) !important;
  58. }
  59. .lang-ar .l-menu__item a {
  60. padding: 11px 11px;
  61. }
  62. .lang-de .l-menu__item a {
  63. padding: 11px 12px;
  64. }
  65. .lang-tw .l-menu__item a {
  66. padding: 13px 18px;
  67. }
  68. .l-profile {
  69. overflow: hidden;
  70. float: right;
  71. }
  72. .l-profile__logout {
  73. color: #e7e7e7 !important;
  74. }
  75. .l-profile__server {
  76. color: #ceefff;
  77. margin-top: 10px;
  78. float: left;
  79. }
  80. .l-profile__notifications {
  81. color: #fff;
  82. cursor: pointer;
  83. font-weight: 600;
  84. padding: 10px 5px 0;
  85. font-size: 1.2rem !important;
  86. line-height: 0.95rem;
  87. border-left: 1px solid transparent !important;
  88. border-right: 1px solid transparent !important;
  89. }
  90. .l-profile__notifications.active.l-profile__notifications.updates:active {
  91. background: linear-gradient(to bottom, rgba(15,15,15,0.6) 0%,rgba(45,45,45,0.75) 30%,rgba(60,60,60,1) 95%) !important;
  92. color: #046c98 !important;
  93. text-shadow: 0px -1px 1px rgba(0,0,0,0.5) !important;
  94. box-shadow: none !important;
  95. transition: 0.2s;
  96. border-left: 1px solid transparent !important;
  97. border-right: 1px solid transparent !important;
  98. }
  99. .l-profile__notifications:hover,.l-profile__notifications.updates:hover {
  100. text-shadow: 1px 1px rgba(0,0,0,0.5) !important;
  101. background: linear-gradient(to bottom, rgba(15,15,15,0.6) 0%,rgba(45,45,45,0.75) 30%,rgba(60,60,60,1) 95%) !important;
  102. border: none !important;
  103. border-left: 1px solid transparent !important;
  104. border-right: 1px solid transparent !important;
  105. box-shadow: none !important;
  106. }
  107. .notification-container {
  108. background-color: rgba(50,50,50,0.99);
  109. text-shadow: 0px 1px rgba(0,0,0,0.5);
  110. color: #dadada;
  111. border: 1px solid #404040;
  112. }
  113. .notification-container .empty .status-icon {
  114. color: #dadada;
  115. }
  116. .notification-container .unseen {
  117. color: #dadada;
  118. }
  119. .notification-container li {
  120. border-bottom: 1px solid #282828;
  121. }
  122. .notification-container .mark-seen {
  123. background-color: #ff3478;
  124. }
  125. .notification-container .unseen .title a,
  126. .notification-container .unseen .title {
  127. color: #fff !important;
  128. }
  129. .notification-container a {
  130. color: #4fabe9;
  131. }
  132. .notification-container a:hover {
  133. color: #0099ff;
  134. }
  135. .notification-container a:active {
  136. color: #0079cb;
  137. }
  138. .alert {
  139. border: 1px solid #212121;
  140. }
  141. .alert.alert-danger {
  142. background-color: #d13535;
  143. }
  144. .alert.alert-danger i.fas {
  145. color: #d13535;
  146. }
  147. .alert.alert-success {
  148. }
  149. .alert.alert-success i.fas {
  150. }
  151. .card {
  152. float: left;
  153. background: #454545;
  154. color: #fafafa;
  155. text-shadow: 0px 1px rgba(0,0,0,0.95) !important;
  156. border: 1px solid #606060;
  157. box-shadow: 0px 1px 4px rgba(0,0,0,0.2),
  158. inset 0px 0px 60px rgba(0,0,0,0.25);
  159. }
  160. .card.disable {
  161. }
  162. .card.disable .card-thumb {
  163. }
  164. .card .card-details {
  165. }
  166. .card .card-details p {
  167. color: #bdbdbd;
  168. }
  169. .card p.card-title {
  170. color: #fafafa;
  171. }
  172. .card .card-thumb {
  173. }
  174. .card .card-thumb img {
  175. }
  176. .card button {
  177. }
  178. .l-stat {
  179. background-color: #282828;
  180. }
  181. .l-stat__col {
  182. }
  183. .l-stat__col li {
  184. color: #b7b7b7 !important;
  185. }
  186. .l-stat__col a {
  187. border-bottom: 4px solid #282828;
  188. background-color: #282828;
  189. }
  190. .l-stat__col a:hover {
  191. border-bottom: 4px solid #d7d7d7;
  192. }
  193. .l-stat__col a:active, .l-stat__col a:focus {
  194. border-bottom: 4px solid #d11755;
  195. }
  196. .l-stat__col--active a {
  197. border-bottom: 4px solid #e93b76;
  198. }
  199. .l-stat.active .l-stat__col.focus a {
  200. border-bottom: 4px solid #e93b76;
  201. }
  202. .l-stat.active .l-stat__col.focus a .l-stat__col-title {
  203. }
  204. .l-stat__col a:hover .l-stat__col-title {
  205. color: #d7d7d7;
  206. }
  207. .l-stat__col a:active .l-stat__col-title {
  208. }
  209. .l-stat__col-title {
  210. font-weight: 500;
  211. color: #bcbcbc;
  212. text-shadow: 0px 1px rgba(0,0,0,0.4);
  213. }
  214. .l-stat__col--active .l-stat__col-title {
  215. color: #ff558f;
  216. }
  217. .l-stat__col .fas {
  218. color: #707070;
  219. padding: 4px;
  220. }
  221. .l-stat__col--active .fas {
  222. color: #aaaaaa;
  223. }
  224. .l-separator.selected,
  225. .l-separator {
  226. border-top: 1px solid #454545;
  227. }
  228. div.l-content > div.l-separator:nth-of-type(2) {
  229. }
  230. div.l-content > div.l-separator:nth-of-type(4) {
  231. border-bottom: 1px solid #454545;
  232. background-color: #282828;
  233. box-shadow: 0px 4px 6px rgba(0,0,0,0.25) !important;
  234. }
  235. .l-sort {
  236. background-color: #282828;
  237. }
  238. .context-menu.sort-order {
  239. background-color: rgba(40,40,40,0.95);
  240. box-shadow: 0 2px 16px 0 rgba(20, 20, 20, 0.65);
  241. border-radius: 4px;
  242. border: 1px solid rgba(90,90,90,1);
  243. }
  244. .context-menu li {
  245. border-bottom: 1px solid #454545;
  246. color: #dadada;
  247. }
  248. .context-menu.sort-order span.active {
  249. background-color: #454545 !important;
  250. color: #fff;
  251. background: linear-gradient(to bottom, rgba(15,15,15,0.6) 0%,rgba(45,45,45,0.75) 30%,rgba(60,60,60,1) 95%);
  252. text-shadow: 0px 1px rgba(0,0,0,0.8);
  253. }
  254. .context-menu.sort-order span:hover {
  255. color: #fff;
  256. background: linear-gradient(to bottom, rgba(25,25,25,0.6) 0%,rgba(55,55,55,0.75) 30%,rgba(70,70,70,1) 95%);
  257. text-shadow: 0px -1px 1px rgba(0,0,0,0.5);
  258. box-shadow: inset 0px 0px 1px rgba(0,0,0,0.4),
  259. inset -1px -1px 4px rgba(40,40,40,0.4);
  260. }
  261. .context-menu.sort-order span:active,.context-menu.sort-order span:focus {
  262. background: linear-gradient(to bottom, rgba(35,35,35,0.6) 0%,rgba(65,65,65,0.75) 30%,rgba(80,80,80,1) 95%);
  263. color: #fff;
  264. text-shadow: 0px -1px 1px rgba(0,0,0,0.5);
  265. box-shadow: inset 0px 0px 1px rgba(0,0,0,0.4),
  266. inset -1px -1px 4px rgba(40,40,40,0.4);
  267. }
  268. .l-sort-toolbar .sort-by:hover {
  269. color: #d4d4d4;
  270. }
  271. .l-sort-toolbar .sort-by:hover b {
  272. color: #d4d4d4;
  273. }
  274. .l-sort-toolbar .toggle-all:hover {
  275. color: #d4d4d4;
  276. }
  277. .l-sort-toolbar__filter-apply {
  278. border: 1px solid #454545;
  279. background-color: #424242;
  280. text-shadow: 1px 1px rgba(0,0,0,0.9) !important;
  281. box-shadow: 0px 1px 1px rgba(0,0,0,0.4) !important;
  282. color: #cacaca;
  283. font-size: 1em;
  284. }
  285. .l-sort-toolbar__filter-apply:hover {
  286. color: #0099ff;
  287. background-color: #454545;
  288. }
  289. .l-sort-toolbar__filter-apply:active {
  290. color: #0074c2;
  291. text-shadow: 0px -1px rgba(255,255,255,0.2);
  292. box-shadow: inset 1px 1px 0px rgba(0,0,0,0.2);
  293. }
  294. .l-sort-toolbar .vst {
  295. color: #dadada;
  296. }
  297. .l-sort-toolbar .vst:hover {
  298. color: #ff3478;
  299. }
  300. .l-sort-toolbar .vst:active {
  301. }
  302. .l-sort-toolbar .vst.selected {
  303. color: #ff3478;
  304. }
  305. .l-unit-toolbar__buttonstrip {
  306. }
  307. .l-unit-toolbar__buttonstrip a {
  308. }
  309. .l-unit-toolbar__buttonstrip .fas {
  310. }
  311. .subtitle {
  312. color: #ff3478;
  313. }
  314. .l-select {
  315. border: 1px solid #454545;
  316. box-shadow: 0px 1px 1px rgba(0,0,0,0.4) !important;
  317. }
  318. .l-select:after {
  319. }
  320. .l-select select {
  321. background-color: #212121;
  322. box-shadow: 0px 1px 1px rgba(0,0,0,0.4) !important;
  323. }
  324. .l-select select:focus {
  325. }
  326. .lang-ru .l-select select {
  327. }
  328. .l-select select option {
  329. }
  330. .l-sort-toolbar .l-select {
  331. border: 1px solid #454545;
  332. background-color: #454545;
  333. text-shadow: 0px 1px rgba(0,0,0,0.65);
  334. text-shadow: 1px 1px rgba(0,0,0,0.9);
  335. }
  336. .l-unit {
  337. color: #dadada;
  338. }
  339. .table-header {
  340. background: #404040 !important;
  341. border-left: 1px solid #212121 !important;
  342. border-right: 1px solid #212121 !important;
  343. border-bottom: 1px solid #212121 !important;
  344. border-top: 1px solid #454545 !important;
  345. text-shadow: 0px 1px rgba(0,0,0,0.95);
  346. border-bottom-left-radius: 0px !important;
  347. border-bottom-right-radius: 0px !important;
  348. color: #dadada;
  349. box-shadow: inset 0px 1px 1px rgba(0,0,0,0.3) !important;
  350. }
  351. .table-header:hover {
  352. background-color: #404040 !important;
  353. border-left: 1px solid #212121 !important;
  354. border-right: 1px solid #212121 !important;
  355. box-shadow: inset 0px 1px 1px rgba(0,0,0,0.3) !important;
  356. }
  357. .table-header .fas {
  358. }
  359. .units .l-unit {
  360. background-color: #303030;
  361. border-bottom: 1px solid #282828;
  362. border-left: 1px solid #212121;
  363. border-right: 1px solid #212121;
  364. }
  365. .l-unit:hover, .units .l-unit:hover {
  366. box-shadow: 0px 2px 10px rgba(20,20,20,0.20);
  367. background-color: #353535;
  368. text-shadow: 0px 1px rgba(0,0,0,0.5);
  369. border-left: 1px solid #212121;
  370. border-right: 1px solid #212121;
  371. }
  372. .units .l-unit.l-unit--starred {
  373. border-left: 2px solid #ff3478;
  374. }
  375. .units.active .l-unit.focus {
  376. background-color: #353535;
  377. }
  378. .units.active .l-unit.focus .l-unit__name {
  379. }
  380. .units.active .l-unit.focus .l-unit-toolbar__col--right {
  381. }
  382. .units > div:last-child {
  383. }
  384. .l-unit-ft {
  385. color: #cdcdcd;
  386. }
  387. .l-unit:hover .l-unit-toolbar__col--right {
  388. }
  389. .l-unit--blue {
  390. }
  391. .l-unit--suspended {
  392. background: #252525 !important;
  393. color: #606060 !important;
  394. text-shadow: 0px -1px rgba(0,0,0,0.4) !important;
  395. box-shadow: inset 0px 0px 2px rgba(0,0,0,0.2);
  396. }
  397. .l-unit--suspended a {
  398. color: #606060 !important;
  399. text-shadow: 0px -1px rgba(0,0,0,0.4) !important;
  400. }
  401. .units .l-unit.l-unit--outdated {
  402. color: #d4d4d4;
  403. background-color: #981111;
  404. }
  405. .l-unit--outdated.selected {
  406. background: #b70000 !important;
  407. color: #fff !important;
  408. text-shadow: none !important;
  409. }
  410. .l-unit--outdated.selected b {
  411. color: #fff !important;
  412. }
  413. .l-unit--suspended .l-unit__name,
  414. .l-unit--suspended b,
  415. .l-unit--outdated .l-unit__name,
  416. .l-unit--outdated b {
  417. color: #606060;
  418. }
  419. .l-unit--outdated .l-unit__name {
  420. }
  421. .l-unit--outdated b {
  422. color: #d4d4d4;
  423. }
  424. .l-unit--suspended .l-percent {
  425. }
  426. .l-unit--suspended .l-percent__fill {
  427. }
  428. .l-unit--suspended .l-unit__name,
  429. .l-unit--suspended .l-unit__name span {
  430. }
  431. .l-unit--suspended.selected .l-unit__name,
  432. .l-unit--suspended.selected .l-unit__name span {
  433. color: #707070;
  434. }
  435. .l-unit--suspended.selected {
  436. background-color: #454545 !important;
  437. color: #707070 !important;
  438. }
  439. .l-unit-ft .subtitle,
  440. .l-unit .subtitle {
  441. color: #ff3478;
  442. }
  443. .l-unit__name {
  444. color: #dadada;
  445. }
  446. .l-unit__stats:hover {
  447. background: transparent !important;
  448. }
  449. .l-unit__stat-col--left a, .l-unit__stat-col--left a:visited {
  450. color: #fafafa;
  451. }
  452. .l-unit__stat-col--left a:hover {
  453. color: #fff;
  454. }
  455. .title b,
  456. .title {
  457. color: #ff3478;
  458. }
  459. .title {
  460. }
  461. /* form styles */
  462. .vst-error {
  463. color: #ff3333;
  464. }
  465. .vst-ok {
  466. color: #53ba55;
  467. }
  468. .vst-ok a {
  469. color: #ffffff;
  470. }
  471. .vst-ok a:hover {
  472. color: #ff3478;
  473. }
  474. .vst-ok a:active {
  475. }
  476. .login-box td,
  477. .data td {
  478. color: #d4d4d4;
  479. }
  480. .data input[type="checkbox"] {
  481. }
  482. .data a {
  483. }
  484. label {
  485. }
  486. label:hover {
  487. color: #d4d4d4 !important;
  488. }
  489. .vst-textinput {
  490. background-color: #454545;
  491. border: 1px solid #606060;
  492. color: #d4d4d4;
  493. box-shadow: 0px 1px 4px rgba(0,0,0,0.35);
  494. }
  495. .vst-textinput:hover {
  496. border: 1px solid #0090ff;
  497. background-color: #494949;
  498. }
  499. .vst-textinput:focus {
  500. background-color: #222222;
  501. border-color: #0080df;
  502. color: #fff !important;
  503. box-shadow: 0px 1px 6px rgba(0,52,91,0.75);
  504. }
  505. .vst-textinput.console{
  506. }
  507. .vst-textinput.short {
  508. }
  509. .vst-input {
  510. background-color: #454545;
  511. border: 1px solid #606060;
  512. color: #d4d4d4;
  513. box-shadow: 0px 1px 4px rgba(0,0,0,0.35);
  514. }
  515. .vst-input:hover {
  516. border-color: #0090ff;
  517. background-color: #494949;
  518. }
  519. .vst-input:focus {
  520. background-color: #222222;
  521. border-color: #0080df;
  522. color: #fff;
  523. box-shadow: 0px 1px 6px rgba(0,52,91,0.75);
  524. }
  525. .vst-input:disabled,
  526. .vst-list:disabled,
  527. .vst-textinput:disabled
  528. {
  529. background-color: #303030;
  530. text-shadow: 1px 1px rgba(0,0,0,0.3);
  531. color: #acacac;
  532. border-color: #606060;
  533. }
  534. .vst-input:focus:disabled {
  535. }
  536. .vst-input:disabled:hover,
  537. .vst-list:disabled:hover,
  538. .vst-textinput:disabled:hover {
  539. border-color: #606060 !important;
  540. }
  541. .vst-input.long {
  542. }
  543. .vst-input.short {
  544. }
  545. .vst-input.vst-list-editor {
  546. }
  547. .vst-input.vst-list-editor:focus {
  548. background-color: #222222;
  549. box-shadow: none !important;
  550. }
  551. .vst-list {
  552. background-color: #454545;
  553. border: 1px solid #606060;
  554. color: #d4d4d4;
  555. text-shadow: 0 0 0 #d4d4d4;
  556. box-shadow: 0px 1px 4px rgba(0,0,0,0.35);
  557. }
  558. select.vst-list:-moz-focusring {
  559. }
  560. .vst-list.long-2 {
  561. }
  562. .vst-list option {
  563. }
  564. .vst-list:hover {
  565. border-color: #0090ff;
  566. background-color: #494949;
  567. }
  568. .vst-list:focus {
  569. background-color: #222222;
  570. border-color: #0080df;
  571. color: #fff;
  572. box-shadow: 0px 1px 6px rgba(0,52,91,0.75);
  573. }
  574. .vst-list.flat {
  575. border: 1px solid #454545;
  576. color: #fff;
  577. }
  578. .vst-list.flat:hover {
  579. color: #ff3478;
  580. }
  581. .vst-list.flat option {
  582. color: #d4d4d4;
  583. }
  584. a.vst-text,
  585. a.vst-text b{
  586. color: #fff;
  587. }
  588. a.vst-text:hover,
  589. a.vst-text:hover b{
  590. color: #ff3478;
  591. }
  592. a.vst-text:active,
  593. a.vst-text:active b{
  594. color: #ff3478;
  595. }
  596. .advanced-options {
  597. background: #454545 !important;
  598. border: 1px solid #505050 !important;
  599. text-shadow: 0px 1px rgba(0,0,0,0.4);
  600. box-shadow: inset 0px 0px 2px rgba(0,0,0,0.5),
  601. 0px 2px 6px rgba(0,0,0,0.4) !important;
  602. color: #fff !important;
  603. padding: 4px 0px 0px 18px;
  604. overflow: hidden;
  605. height: 28px;
  606. }
  607. .advanced-options a {
  608. color: #fff !important;
  609. }
  610. .advanced-options .fas {
  611. }
  612. #advanced-options .console{
  613. }
  614. .generate {
  615. color: #29a9ff;
  616. border-radius: 4px;
  617. }
  618. .generate:hover {
  619. background-color: #ff3478;
  620. border-color: #ff3478;
  621. }
  622. .generate:active {
  623. background-color: #be1f54;
  624. border-color: #be1f54;
  625. }
  626. .vst-advanced {
  627. border-bottom: 0px solid #326b9b;
  628. color: #0094f7;
  629. font-size: 0.8rem;
  630. padding: 4px 12px;
  631. text-decoration: none;
  632. border-radius: 4px;
  633. text-transform: none !important;
  634. }
  635. .login-box .vst-advanced:hover {
  636. color: #ff3478 !important;
  637. background-color: transparent;
  638. border-color: transparent;
  639. border: none !important;
  640. background: none !important;
  641. box-shadow: none !important;
  642. }
  643. .login-box .vst-advanced:active {
  644. color: #be1f54 !important;
  645. border: none !important;
  646. background: none !important;
  647. box-shadow: none !important;
  648. }
  649. .vst-advanced:hover {
  650. color: #fff;
  651. background-color: #ff3478;
  652. border-color: #ff3478;
  653. text-decoration: none;
  654. }
  655. .login-box .vst-advanced:active,
  656. .vst-advanced:active {
  657. color: #fff;
  658. background-color: #be1f54;
  659. border-color: #be1f54;
  660. text-decoration: none;
  661. }
  662. .login-box .vst-advanced {
  663. border-bottom: none;
  664. color: #326b9b;
  665. font-size: 0.85em !important;
  666. padding: 2px 2px 0;
  667. text-decoration: none;
  668. text-transform: uppercase;
  669. border: none !important;
  670. background: none !important;
  671. box-shadow: none !important;
  672. }
  673. .vst-checkbox {
  674. }
  675. .lets-encrypt-note {
  676. }
  677. .additional-control {
  678. color: #0099ff;
  679. }
  680. .additional-control:hover {
  681. background-color: #ff3478;
  682. border-color: #ff3478;
  683. }
  684. .additional-control:active {
  685. }
  686. .additional-control.ftp-remove-user {
  687. }
  688. .additional-control.delete:hover,
  689. .additional-control.ftp-remove-user:hover {
  690. }
  691. .additional-control.delete:active,
  692. .additional-control.ftp-remove-user:active {
  693. }
  694. .additional-control.add:hover {
  695. }
  696. .additional-control.add:active{
  697. }
  698. .additional-control.remove-ns {
  699. }
  700. .data .step-left {
  701. }
  702. .hide-password {
  703. }
  704. .toggle-psw-visibility-icon {
  705. }
  706. .show-passwords-enabled-action {
  707. }
  708. .ftp-path-value,
  709. .hint,
  710. td.hint {
  711. color: #a2a2a2;
  712. font-size: 0.8rem;
  713. }
  714. .ftp-path-prefix { padding-top: 12px; font-size: 0.8rem; color: #555; }
  715. .ui-dialog .ui-dialog-buttonpane button {
  716. box-shadow: 0px 1px 4px rgba(0,0,0,0.1),
  717. inset 0px 0px 1px #000,
  718. inset 0px 0px 3px rgba(0,0,0,0.5) !important;
  719. }
  720. .ui-button, .button, .ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-text-only.submit, .vst-advanced, .to-shortcuts, .to-top {
  721. font-size: 0.85rem !important;
  722. font-weight: 400 !important;
  723. color: #eeeeee !important;
  724. border: 1px solid #707070 !important;
  725. background: rgb(48,48,48) !important;
  726. background: linear-gradient(0deg, rgba(48,48,48,1) 0%, rgba(53,53,53,1) 35%, rgba(69,69,69,1) 100%) !important;
  727. box-shadow: 0px 1px 4px rgba(0,0,0,0.2),
  728. inset 0px 0px 1px rgba(20,20,20,1),
  729. inset 0px 0px 3px rgba(0,0,0, 0.5) !important;
  730. text-shadow: 0px 1px 1px rgba(0,0,0,0.35) !important;
  731. }
  732. .ui-button:hover, .button:hover, .ui-button.cancel:hover, .button.cancel:hover,
  733. .ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-text-only.submit:hover, .vst-advanced:hover, .to-shortcuts:hover, .to-top:hover {
  734. color: #fff !important;
  735. text-shadow: 1px 1px rgba(0,0,0,0.25) !important;
  736. border: 1px solid #0098ff !important;
  737. background: linear-gradient(0deg, rgba(58,58,58,1) 0%, rgba(68,68,68,1) 35%, rgba(79,79,79,1) 100%) !important;
  738. background-color: #454545;
  739. box-shadow: 0px 1px 3px rgba(0,0,0,0.35),
  740. inset 0px 0px 1px rgba(0,0,0,1),
  741. inset 0px 0px 3px rgba(0,0,0,0.65) !important;
  742. transition: 0.2s;
  743. }
  744. .ui-button:focus,.ui-button:active,
  745. .button:active,.button:focus,.ui-button.cancel:focus,.ui-button.cancel:active,
  746. .button.cancel:active,.button.cancel:focus,
  747. .ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-text-only.submit:active, .vst-advanced:active, .to-shortcuts:active, .to-top:active,
  748. .to-shortcuts:focus, .to-top:focus {
  749. border: 1px solid #0066b4 !important;
  750. background: linear-gradient(0deg, rgba(69,69,69,1) 0%, rgba(53,53,53,1) 35%, rgba(48,48,48,1) 100%) !important;
  751. color: #d4d4d4 !important;
  752. text-shadow: 0px -1px 1px rgba(0,0,0,0.55) !important;
  753. box-shadow: 0px 1px 3px rgba(0,0,0,0.3),
  754. inset 0px 0px 1px rgba(0,0,0,1),
  755. inset -1px -1px 4px rgba(30,30,30,0.4) !important;
  756. }
  757. .ui-button-text-only {
  758. text-shadow: 0px 1px rgba(0,0,0,0.5);
  759. }
  760. .ui-dialog .ui-dialog-buttonpane button span.ui-button-text {
  761. }
  762. .ui-dialog .ui-button:hover span {
  763. color: #fafafa !important;
  764. }
  765. .ui-button-text-only .selected {
  766. }
  767. .ui-button.cancel,
  768. .button.cancel {
  769. color: #eeeeee !important;
  770. border: 1px solid #454545 !important;
  771. background: rgb(48,48,48) !important;
  772. background: linear-gradient(0deg, rgba(48,48,48,1) 0%, rgba(53,53,53,1) 35%, rgba(69,69,69,1) 100%) !important;
  773. }
  774. .ui-button-text {
  775. color: #eeeeee !important;
  776. }
  777. .ui-button.cancel:active,
  778. .button.cancel:active {
  779. }
  780. a.button.cancel {
  781. }
  782. .ui-dialog button.cancel {
  783. border: 1px solid #d4d4d4;
  784. background-color: #d4d4d4;
  785. }
  786. .ui-button.danger:hover, .button.danger:hover {
  787. background: rgb(133,0,0);
  788. background: linear-gradient(0deg, rgba(133,0,0,1) 0%, rgba(203,0,0,1) 100%) !important;
  789. color: #fff !important;
  790. text-shadow: 0px 1px rgba(0,0,0,0.45) !important;
  791. border: 1px solid rgb(170, 0, 0) !important;
  792. }
  793. .ui-button.danger:active, .button.danger:active, .ui-button.danger:focus, .button.danger:focus {
  794. background: rgb(133,0,0);
  795. background: linear-gradient(180deg, rgba(133,0,0,1) 0%, rgba(203,0,0,1) 100%) !important;
  796. color: #4d0000 !important;
  797. text-shadow: 0px -1px 1px rgba(255,255,255,0.3) !important;
  798. border: 1px solid rgb(251, 71, 51) !important;
  799. }
  800. .ui-button span {
  801. }
  802. .ui-button:hover span {
  803. color: #d4d4d4 !important;
  804. }
  805. .ui-button:active span {
  806. color: #d4d4d4;
  807. }
  808. .ui-button.cancel span {
  809. }
  810. .ui-button:hover span {
  811. }
  812. .ui-button:active span {
  813. }
  814. .ui-dialog button.cancel span {
  815. color: #fff !important;
  816. }
  817. .unlim-trigger {
  818. }
  819. .optional {
  820. }
  821. .data-active b {
  822. }
  823. .data-suspended b {
  824. }
  825. .data-date {
  826. }
  827. .data-dotted {
  828. }
  829. .mail-infoblock-td {
  830. }
  831. .mail-infoblock {
  832. color: #fff;
  833. border: 1px solid #606060;
  834. margin-top: 87px;
  835. box-shadow: 0px 1px 4px rgba(0,0,0,0.35);
  836. background-color: #454545;
  837. }
  838. .mail-infoblock:hover {
  839. }
  840. .mail-infoblock td {
  841. color: #dadada;
  842. }
  843. .mail-infoblock td:first-child{
  844. }
  845. .mail-infoblock div {
  846. }
  847. .mail-infoblock a {
  848. color: #52b9ff;
  849. }
  850. .mail-infoblock a:hover {
  851. color: #ff3478;
  852. }
  853. .additional-info {
  854. }
  855. .additional-info td {
  856. }
  857. .additional-info td.details {
  858. }
  859. :focus {outline:none;}
  860. ::-moz-focus-inner {border:0;}
  861. .login {
  862. background-color: #282828;
  863. box-shadow: 0px 8px 25px rgba(0,0,0, 0.3), inset 0px 0px 2px rgba(0,0,0,0.25) !important;
  864. }
  865. .login-welcome {
  866. color: #fff !important;
  867. }
  868. .page-title {
  869. color: #e8e8e8 !important;
  870. }
  871. .qr-code {
  872. border: 1px solid #3b3b3b;
  873. box-shadow: 0px 1px 4px rgba(0,0,0,0.35);
  874. }
  875. .password-option {
  876. }
  877. .login a.error {
  878. color: #f864fa;
  879. }
  880. .hestiacp {
  881. }
  882. .hestiacp:hover {
  883. }
  884. .hestiacp:active {
  885. color: #ff3478;
  886. }
  887. .login-bottom {
  888. }
  889. .l-unit.selected {
  890. background-color: #454545;
  891. color: #d4d4d4;
  892. box-shadow: 0px 2px 10px rgba(30,30,30,0.35);
  893. text-shadow: 0px 1px rgba(0,0,0,0.5);
  894. border-left: 1px solid #212121;
  895. border-right: 1px solid #212121;
  896. }
  897. .l-unit.selected:hover {
  898. background-color: #555555;
  899. color: #d4d4d4;
  900. box-shadow: none !important;
  901. text-shadow: 0px 1px rgba(0,0,0,0.4);
  902. }
  903. .l-unit.selected b,
  904. .l-unit.selected strong {
  905. color: #d4d4d4;
  906. }
  907. /* MAIN MENU COLLAPSED */
  908. .console-output {
  909. color: #dadada !important;
  910. }
  911. form#vstobjects {
  912. }
  913. form#vstobjects.suspended {
  914. background-color: #282828;
  915. }
  916. .pill {
  917. }
  918. .pill.usage{
  919. box-shadow: inset 0px 1px 1px rgba(0,0,0,0.85), 0px 1px 1px rgba(0,0,0,0.2);
  920. background-color: rgba(15,15,15,0.5);
  921. border: 1px solid rgba(120,120,120,0.95);
  922. text-shadow: 0px 1px 1px rgba(0,0,0,0.5);
  923. color: #909090;
  924. }
  925. .pill.usage b { color: #d8d8d8; }
  926. .badge {
  927. box-shadow: 0px 1px 2px rgba(70,70,70,0.5),
  928. inset 0px 2px 2px rgba(0,0,0,0.65);
  929. text-shadow: 0px 1px 2px rgba(0,0,0,0.5);
  930. border: 1px solid #212121 !important;
  931. }
  932. .badge.large {
  933. }
  934. .badge.raised {
  935. background: radial-gradient(ellipse at center, rgba(40,40,40,0.2) 0%,rgba(80,80,80,0.05) 100%);
  936. }
  937. .l-unit--suspended .badge {
  938. background: #303030 !important;
  939. color: #808080 !important;
  940. text-shadow: 0px -1px rgba(0,0,0,0.4) !important;
  941. box-shadow: 0px 1px 2px rgba(25,25,25,0.3) !important;
  942. }
  943. .pill.gray, .badge.gray {
  944. border: 1px solid #181818;
  945. background-color: #252525;
  946. color: #dadada;
  947. text-shadow: 0px 1px rgba(0,0,0,0.7) !important;
  948. }
  949. .pill.blue, .badge.blue {
  950. }
  951. .pill.purple, .badge.purple {
  952. }
  953. .pill.teal, .badge.teal {
  954. }
  955. .pill.maroon, .badge.maroon {
  956. background-color: #ff3478;
  957. }
  958. .pill.red, .badge.red {
  959. }
  960. .pill.orange, .badge.orange {
  961. }
  962. .pill.green, .badge.green {
  963. }
  964. .pill.lightblue, .badge.lightblue {
  965. }
  966. .status-icon.large {
  967. }
  968. .status-icon.yellow, .status-icon.yellow:hover {
  969. color: #f3e72c;
  970. }
  971. .status-icon.teal, .status-icon.teal:hover {
  972. color: #33cccc;
  973. }
  974. .status-icon.purple, .status-icon.purple:hover {
  975. color: #c364ff;
  976. }
  977. .status-icon.maroon, .status-icon.maroon:hover {
  978. color: #ff3478;
  979. }
  980. .status-icon.red, .status-icon.red:hover {
  981. }
  982. .status-icon.green, .status-icon.green:hover {
  983. color: #37cf39;
  984. }
  985. .status-icon.orange, .status-icon.orange:hover {
  986. }
  987. .status-icon.lightblue, .status-icon.lightblue:hover {
  988. }
  989. .status-icon.highlight, .status-icon.highlight:hover {
  990. color: #dadada;
  991. }
  992. .status-icon.blue, .status-icon.blue:hover {
  993. color: #0092f4;
  994. }
  995. .status-icon.dim {
  996. color: #808080;
  997. text-shadow: 1px 1px rgba(0,0,0,0.3);
  998. }
  999. .l-unit--suspended .status-icon.dim {
  1000. color: #808080 !important;
  1001. text-shadow: 0px !important;
  1002. }
  1003. .search-input {
  1004. background-color: #212121;
  1005. border: 1px solid #454545;
  1006. box-shadow: 0px 1px 1px rgba(0,0,0,0.4) !important;
  1007. }
  1008. .ui-dialog .ui-dialog-buttonpane {
  1009. border-color: #404040 !important;
  1010. background-color: #252525 !important;
  1011. }
  1012. .shortcuts {
  1013. background: rgba(30,30,30,0.95);
  1014. border: 1px solid rgba(255,255,255,0.25);
  1015. box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
  1016. border-bottom: none !important;
  1017. }
  1018. .shortcuts .header {
  1019. border-bottom: 1px solid #353535;
  1020. }
  1021. .shortcuts .title {
  1022. }
  1023. .shortcuts .close {
  1024. }
  1025. .shortcuts .close:hover {
  1026. }
  1027. .shortcuts .close:active {
  1028. }
  1029. .shortcuts .close .fas {
  1030. }
  1031. .shortcuts ul {
  1032. }
  1033. .shortcuts ul li {
  1034. }
  1035. .shortcuts ul li.step-top {
  1036. }
  1037. .shortcuts ul li span {
  1038. }
  1039. .shortcuts ul li span.bigger {
  1040. }
  1041. .description {
  1042. }
  1043. .description ul{
  1044. }
  1045. .description li{
  1046. }
  1047. .description a {
  1048. }
  1049. .description a.purchase {
  1050. }
  1051. .description a.purchase:hover {
  1052. color: #d4d4d4;
  1053. }
  1054. .description a.purchase:active {
  1055. color: #d4d4d4;
  1056. }
  1057. .description a.cancel {
  1058. }
  1059. .description a.cancel:hover {
  1060. }
  1061. .description a.cancel:active {
  1062. }
  1063. .description.cancel-success {
  1064. }
  1065. .description .licence {
  1066. }
  1067. .description .licence input {
  1068. }
  1069. .description span {
  1070. }
  1071. .description .twoco {
  1072. }
  1073. .ui-dialog {
  1074. background-color: rgba(45,45,45,0.95) !important;
  1075. border: 1px solid rgba(80,80,80,0.97) !important;
  1076. box-shadow: inset 0px 1px 3px rgba(0,0,0,0.25),
  1077. 0px 8px 25px rgba(0,0,0,0.9) !important;
  1078. }
  1079. .ui-dialog .ui-dialog-content {
  1080. color: #dadada !important;
  1081. }
  1082. .ui-dialog .ui-dialog-title {
  1083. color: #f12569 !important;
  1084. font-weight: 600;
  1085. }
  1086. .ui-dialog-buttonpane {
  1087. }
  1088. .ui-widget {
  1089. }
  1090. .ui-widget-overlay {
  1091. }
  1092. .helper-container {
  1093. box-shadow: 0px 1px 4px rgba(0,0,0,0.25);
  1094. border: 1px solid #606060;
  1095. background-color: #454545;
  1096. }
  1097. .context-helper:active {
  1098. color: #ff3478;
  1099. }
  1100. .cron-helper-tabs a {
  1101. color: #cacaca;
  1102. }
  1103. .cron-helper-tabs a:hover {
  1104. color: #ff3478 !important;
  1105. }
  1106. .cron-helper-tabs a:active {
  1107. color: #3b9de8 !important;
  1108. }
  1109. .cron-helper-tabs .ui-tabs-selected a {
  1110. color: #ff3478 !important;
  1111. }
  1112. .cron-helper-tabs p {
  1113. color: #dadada;
  1114. }
  1115. .server-info-name {
  1116. color: #fafafa !important;
  1117. }
  1118. .server-info-output {
  1119. background: #282828;
  1120. }
  1121. .icon-server-info {
  1122. color: #707070;
  1123. }
  1124. .ui-widget-header a {
  1125. color: #cacaca !important;
  1126. }
  1127. .graph-rounded {
  1128. border-radius: 8px;
  1129. }
  1130. .body-rrd .units .l-unit {
  1131. background-color: #282828 !important;
  1132. border-left: 1px solid transparent !important;
  1133. border-right: 1px solid transparent !important;
  1134. }
  1135. .l-percent {
  1136. border-bottom: 2px solid #585858 !important;
  1137. }
  1138. .body-stats .l-unit__name {
  1139. color: #eee !important;
  1140. }
  1141. .statistics-count {
  1142. border-bottom: 1px dotted #707070;
  1143. border-right: 1px dotted #707070;
  1144. }
  1145. .body-stats .units .l-unit {
  1146. background-color: #282828 !important;
  1147. border-bottom: 1px solid #404040 !important;
  1148. border-left: 1px solid #282828 !important;
  1149. border-right: 1px solid #282828 !important;
  1150. }
  1151. .body-stats .units:hover .l-unit:hover {
  1152. background-color: #303030 !important;
  1153. color: #fff !important;
  1154. }
  1155. .body-stats .units:hover .l-unit:hover b,.body-stats .units:hover .l-unit:hover strong {
  1156. color: #fff !important;
  1157. }
  1158. @media screen and (max-width: 950px) {
  1159. .helper-container {
  1160. display: none;
  1161. }
  1162. }