adark.css 16 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112
  1. @charset "UTF-8";
  2. /*=== GENERAL */
  3. /*============*/
  4. html, body {
  5. background: #171717;
  6. color: #999;
  7. font-family: "OpenSans", "Cantarell", "Helvetica", "Arial", "PingFang SC", "Microsoft YaHei", sans-serif;
  8. }
  9. /*=== Links */
  10. a, button.as-link {
  11. color: #ccc;
  12. outline: none;
  13. }
  14. /*=== Forms */
  15. legend {
  16. margin: 20px 0 5px;
  17. padding: 5px 0;
  18. font-size: 1.4em;
  19. border-bottom: 1px solid #333;
  20. }
  21. label {
  22. min-height: 25px;
  23. padding: 5px 0;
  24. cursor: pointer;
  25. }
  26. textarea {
  27. width: 360px;
  28. height: 100px;
  29. }
  30. input, select, textarea {
  31. padding: 5px;
  32. background: #262626;
  33. color: #666;
  34. border: 1px solid #666;
  35. border-radius: 3px;
  36. min-height: 25px;
  37. line-height: 25px;
  38. vertical-align: middle;
  39. }
  40. option {
  41. padding: 0 .5em;
  42. }
  43. input:disabled, select:disabled {
  44. background: #eee;
  45. }
  46. input.extend {
  47. transition: width 200ms linear;
  48. }
  49. /*=== Tables */
  50. table {
  51. border-collapse: collapse;
  52. }
  53. tr, th, td {
  54. padding: 0.5em;
  55. border: 1px solid #333;
  56. }
  57. th {
  58. background: #262626;
  59. }
  60. form td,
  61. form th {
  62. font-weight: normal;
  63. text-align: center;
  64. }
  65. /*=== COMPONENTS */
  66. /*===============*/
  67. /*=== Forms */
  68. .form-group.form-actions {
  69. padding: 5px 0;
  70. background: #171717;
  71. border-top: 1px solid #333;
  72. }
  73. .form-group.form-actions .btn {
  74. margin: 0 10px;
  75. }
  76. .form-group .group-name {
  77. padding: 10px 0;
  78. text-align: right;
  79. }
  80. .form-group .group-controls {
  81. min-height: 25px;
  82. padding: 5px 0;
  83. }
  84. /*=== Buttons */
  85. .stick {
  86. vertical-align: middle;
  87. font-size: 0;
  88. }
  89. .stick input,
  90. .stick .btn {
  91. border-radius: 0;
  92. }
  93. .stick .btn:first-child,
  94. .stick input:first-child {
  95. border-radius: 3px 0 0 3px;
  96. }
  97. .stick .btn-important:first-child {
  98. border-right: 1px solid #06f;
  99. }
  100. .stick .btn:last-child,
  101. .stick input:last-child {
  102. border-radius: 0 3px 3px 0;
  103. }
  104. .stick .btn + .btn,
  105. .stick .btn + input,
  106. .stick .btn + .dropdown > .btn,
  107. .stick input + .btn,
  108. .stick input + input,
  109. .stick input + .dropdown > .btn,
  110. .stick .dropdown + .btn,
  111. .stick .dropdown + input,
  112. .stick .dropdown + .dropdown > .btn {
  113. border-left: none;
  114. }
  115. .stick .btn + .dropdown > .btn {
  116. border-left: none;
  117. border-radius: 0 3px 3px 0;
  118. }
  119. .btn {
  120. margin: 0;
  121. padding: 5px 10px;
  122. background: #171717;
  123. display: inline-block;
  124. color: #bfbfbf;
  125. font-size: 0.9rem;
  126. border: 1px solid #777;
  127. border-right: 1px solid #777;
  128. border-bottom: 1px solid #777;
  129. border-radius: 3px;
  130. min-height: 37px;
  131. min-width: 15px;
  132. line-height: 25px;
  133. vertical-align: middle;
  134. cursor: pointer;
  135. overflow: hidden;
  136. }
  137. a.btn {
  138. min-height: 25px;
  139. line-height: 25px;
  140. }
  141. .btn:hover {
  142. background: #1d242f;
  143. text-decoration: none;
  144. color: #6b88ae;
  145. border: 1px solid #45699a;
  146. }
  147. .btn.active,
  148. .btn:active,
  149. .dropdown-target:target ~ .btn.dropdown-toggle {
  150. background: #262626;
  151. }
  152. .btn-important {
  153. background: #0062b7;
  154. color: #fff;
  155. border: 1px solid #0062b7;
  156. font-weight: normal;
  157. }
  158. .btn-important:hover {
  159. background: #45699a;
  160. color: #eee;
  161. }
  162. .btn-important .icon {
  163. filter: brightness(3);
  164. }
  165. .btn-important:active {
  166. background: #0044cb;
  167. box-shadow: none;
  168. }
  169. .btn-attention {
  170. color: #fff;
  171. }
  172. .btn-attention:active {
  173. background: #bd362f;
  174. box-shadow: none;
  175. }
  176. /*=== switches */
  177. .switch.active {
  178. background-color: #0062b7;
  179. }
  180. .switch.active:hover {
  181. background-image: url('./icons/disabled-light.svg');
  182. }
  183. /*=== Navigation */
  184. .nav-list .nav-header,
  185. .nav-list .item {
  186. height: 2.5em;
  187. line-height: 2.5em;
  188. color: #ccc;
  189. font-size: 0.9rem;
  190. }
  191. .nav-list .item a {
  192. color: #ccc;
  193. }
  194. .nav-list .item a:hover {
  195. background-color: #1f1f1f;
  196. }
  197. .nav-list .item.active a {
  198. background-color: #1f1f1f;
  199. }
  200. .nav-list .disable {
  201. background: #fafafa;
  202. color: #aaa;
  203. text-align: center;
  204. }
  205. .nav-list .item > a {
  206. padding: 0 10px;
  207. }
  208. .nav-list a:hover {
  209. text-decoration: none;
  210. }
  211. .nav-list .item.empty a {
  212. color: #f39c12;
  213. }
  214. .nav-list .item.active.empty a {
  215. background: #f39c12;
  216. color: #fff;
  217. }
  218. .nav-list .item.error a {
  219. color: #bd362f;
  220. }
  221. .nav-list .item.active.error a {
  222. background: #bd362f;
  223. color: #fff;
  224. }
  225. .nav-list .nav-header {
  226. padding: 0 10px;
  227. color: #888;
  228. font-weight: bold;
  229. }
  230. .nav-list .nav-form {
  231. padding: 3px;
  232. text-align: center;
  233. }
  234. .nav-head {
  235. margin: 0;
  236. background: #262626;
  237. border-bottom: 1px solid #333;
  238. text-align: right;
  239. }
  240. .nav-head .item {
  241. padding: 5px 10px;
  242. font-size: 0.9rem;
  243. line-height: 1.5rem;
  244. }
  245. /*=== Horizontal-list */
  246. .horizontal-list {
  247. margin: 0;
  248. padding: 0;
  249. }
  250. .horizontal-list .item {
  251. vertical-align: middle;
  252. }
  253. /*=== Dropdown */
  254. .dropdown-menu {
  255. margin: 5px 0 0;
  256. padding: 5px 0;
  257. background: #333;
  258. font-size: 0.8rem;
  259. border: 2px solid #262626;
  260. border-radius: 5px;
  261. text-align: left;
  262. }
  263. .dropdown-menu::after {
  264. border-color: #333;
  265. }
  266. .dropdown-header {
  267. padding: 0 5px 5px;
  268. color: #888;
  269. font-weight: bold;
  270. text-align: left;
  271. }
  272. .dropdown-menu > .item > a,
  273. .dropdown-menu > .item > span,
  274. .dropdown-menu > .item > .as-link {
  275. padding: 0 22px;
  276. line-height: 2.5em;
  277. font-size: 0.8rem;
  278. }
  279. .dropdown-menu > .item > a:hover,
  280. .dropdown-menu > .item > button:hover {
  281. background: #262626;
  282. color: #fff;
  283. }
  284. .dropdown-menu > .item[aria-checked="true"] > a::before {
  285. font-weight: bold;
  286. margin: 0 0 0 -14px;
  287. }
  288. .dropdown-menu .input select,
  289. .dropdown-menu .input input {
  290. margin: 0 auto 5px;
  291. padding: 2px 5px;
  292. border-radius: 3px;
  293. }
  294. .separator {
  295. margin: 5px 0;
  296. border-bottom: 1px solid #292929;
  297. }
  298. /*=== Alerts */
  299. .alert {
  300. margin: 15px auto;
  301. padding: 10px 15px;
  302. background: #f4f4f4;
  303. color: #aaa;
  304. font-size: 0.9em;
  305. border: 1px solid #ccc;
  306. border-right: 1px solid #aaa;
  307. border-bottom: 1px solid #aaa;
  308. border-radius: 5px;
  309. }
  310. .alert-head {
  311. font-size: 1.15em;
  312. }
  313. .alert > a {
  314. color: inherit;
  315. text-decoration: underline;
  316. }
  317. .alert-warn {
  318. background: #171717;
  319. color: #999;
  320. border: 2px solid #615f20;
  321. }
  322. .alert-success {
  323. background: #171717;
  324. color: #999;
  325. border: 2px solid #18521d;
  326. }
  327. .alert-error {
  328. background: #171717;
  329. color: #999;
  330. border: 2px solid #902b2b;
  331. }
  332. /*=== Pagination */
  333. .pagination {
  334. color: #999;
  335. border-top: 1px solid #999;
  336. border-bottom: 1px solid #999;
  337. }
  338. /*=== Boxes */
  339. .box {
  340. background: #1f1f1f;
  341. border: 1px solid #444;
  342. border-radius: 3px;
  343. }
  344. .box .box-title {
  345. margin: 0;
  346. padding: 5px 10px;
  347. background: #262626;
  348. border: 1px solid #292929;
  349. border-radius: 5px 5px 0 0;
  350. }
  351. .box .box-title .configure {
  352. margin-right: 4px;
  353. }
  354. .box .box-content {
  355. padding-left: 30px;
  356. min-height: 2.5em;
  357. max-height: 260px;
  358. }
  359. .box .box-content .item {
  360. font-size: 0.9rem;
  361. line-height: 2.5em;
  362. }
  363. /*=== Tree */
  364. .tree {
  365. margin: 10px 0;
  366. }
  367. .tree-folder-title {
  368. position: relative;
  369. padding: 0 10px;
  370. background: #262626;
  371. line-height: 2.5rem;
  372. font-size: 1rem;
  373. }
  374. .tree-folder-title:hover {
  375. background: #1f1f1f;
  376. }
  377. .tree-folder-title .title {
  378. background: inherit;
  379. color: #999;
  380. }
  381. .tree-folder-title .title:hover {
  382. text-decoration: none;
  383. }
  384. .tree-folder.active .tree-folder-title {
  385. background: #171717;
  386. font-weight: bold;
  387. }
  388. .tree-folder.active .tree-folder-title .title {
  389. color: #ccc;
  390. }
  391. .tree-folder-items {
  392. background: #262626;
  393. }
  394. .tree-folder-items:hover {
  395. background: #1f1f1f;
  396. }
  397. .tree-folder-items > .item {
  398. padding: 0 10px;
  399. line-height: 2.5rem;
  400. font-size: 0.8rem;
  401. }
  402. .tree-folder-items > .item.active {
  403. background: #171717;
  404. }
  405. .tree-folder-items > .item > a {
  406. text-decoration: none;
  407. }
  408. .tree-folder-items > .item.active > a {
  409. color: #999;
  410. }
  411. /*=== STRUCTURE */
  412. /*===============*/
  413. /*=== Header */
  414. .header {
  415. background: #171717;
  416. }
  417. .header > .item {
  418. padding: 10px;
  419. border-bottom: 1px solid #333;
  420. vertical-align: middle;
  421. text-align: center;
  422. }
  423. .header > .item.title {
  424. width: 230px;
  425. }
  426. .header > .item.title .logo {
  427. margin: 0.5em 0;
  428. filter: grayscale(100%) brightness(2.5);
  429. }
  430. .header > .item.search input {
  431. width: 230px;
  432. }
  433. .header .item.search input:focus {
  434. width: 350px;
  435. }
  436. /*=== Body */
  437. .aside {
  438. background: #262626;
  439. }
  440. .aside.aside_feed {
  441. padding: 10px 0;
  442. text-align: center;
  443. background: #262626;
  444. }
  445. .aside.aside_feed .tree {
  446. margin: 10px 0 50px;
  447. }
  448. /*=== Aside main page (categories) */
  449. .aside_feed .category .title:not([data-unread="0"])::after {
  450. padding: 0 10px;
  451. line-height: 1.5rem;
  452. }
  453. .aside.aside_feed .category .title:not([data-unread="0"])::after,
  454. .aside.aside_feed .feed .item-title:not([data-unread="0"])::after {
  455. background-color: #171717;
  456. color: #999;
  457. border-color: #999;
  458. }
  459. /*=== Aside main page (feeds) */
  460. .feed.item.empty.active {
  461. background: #e67e22;
  462. }
  463. .feed.item.error.active {
  464. background: #bd362f;
  465. }
  466. .feed.item.empty,
  467. .feed.item.empty > a {
  468. color: #e67e22;
  469. }
  470. .feed.item.error,
  471. .feed.item.error > a {
  472. color: #bd362f;
  473. }
  474. .feed.item.empty.active,
  475. .feed.item.error.active,
  476. .feed.item.empty.active > a,
  477. .feed.item.error.active > a {
  478. color: #fff;
  479. }
  480. .aside_feed .tree-folder-items .dropdown-menu::after {
  481. left: 2px;
  482. }
  483. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  484. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  485. background-color: #fff;
  486. border-radius: 3px;
  487. }
  488. /*=== Configuration pages */
  489. .post {
  490. padding: 10px 50px;
  491. font-size: 0.9em;
  492. }
  493. .post form {
  494. margin: 10px 0;
  495. }
  496. .post.content {
  497. max-width: 550px;
  498. }
  499. /*=== Prompt (centered) */
  500. .prompt .form-group {
  501. margin-bottom: 1rem;
  502. }
  503. .prompt .form-group::after {
  504. display: none;
  505. }
  506. .prompt .form-group.form-group-actions {
  507. display: flex;
  508. margin-top: 2rem;
  509. align-items: center;
  510. justify-content: space-between;
  511. }
  512. .prompt .btn.btn-important {
  513. padding-left: 1.5rem;
  514. padding-right: 1.5rem;
  515. font-size: 1.1rem;
  516. }
  517. /*=== New article notification */
  518. #new-article {
  519. background: #0084cc;
  520. text-align: center;
  521. font-size: 0.9em;
  522. }
  523. #new-article > a {
  524. line-height: 3em;
  525. color: #fff;
  526. font-weight: bold;
  527. }
  528. #new-article > a:hover {
  529. text-decoration: none;
  530. background: #06c;
  531. }
  532. /*=== Day indication */
  533. .day {
  534. padding: 0 10px;
  535. font-weight: bold;
  536. line-height: 3em;
  537. background: #171717;
  538. color: #ccc;
  539. border-top: 1px solid #aaa;
  540. }
  541. #new-article + .day {
  542. border-top: none;
  543. }
  544. .day .name {
  545. padding: 0 10px 0 0;
  546. color: #ccc;
  547. font-size: 1.8em;
  548. opacity: 0.3;
  549. text-shadow: 0px -1px 0px #666;
  550. font-style: italic;
  551. text-align: right;
  552. }
  553. /*=== Index menu */
  554. .nav_menu {
  555. padding: 5px 0;
  556. background: #171717;
  557. text-align: center;
  558. }
  559. /*=== Feed articles */
  560. .flux {
  561. background: #171717;
  562. border-left: 1px solid #292929;
  563. }
  564. .flux:hover {
  565. background: #333!important;
  566. }
  567. .flux.current {
  568. background: #191919;
  569. border-left: 2px solid #0062be;
  570. }
  571. .flux.current.active {
  572. background: #333;
  573. }
  574. .flux.not_read {
  575. border-left: 2px solid #e74c3c;
  576. }
  577. .flux.not_read:not(.current) {
  578. background: #171717;
  579. }
  580. .flux.not_read:not(.current):hover .item.title {
  581. background: inherit;
  582. }
  583. .flux:not(.current):hover .item.title {
  584. background: #333;
  585. }
  586. .flux .item.title a {
  587. color: #ababab;
  588. }
  589. .flux.favorite {
  590. border-left: 2px solid #ffc300;
  591. }
  592. .flux.favorite:not(.current) {
  593. background: #171717;
  594. }
  595. .flux_header {
  596. font-size: 0.8rem;
  597. border-top: 1px solid #292929;
  598. cursor: pointer;
  599. }
  600. .flux_header .title {
  601. font-size: 0.9rem;
  602. }
  603. .flux .website .favicon {
  604. padding: 5px;
  605. }
  606. .flux .item.date {
  607. color: #ababab;
  608. font-size: 0.7rem;
  609. }
  610. .flux .bottom {
  611. font-size: 0.8rem;
  612. text-align: center;
  613. }
  614. /*=== Content of feed articles */
  615. .content {
  616. padding: 20px 10px;
  617. color: #999;
  618. }
  619. .content > h1.title > a {
  620. color: #949494;
  621. }
  622. .content hr {
  623. margin: 30px 10px;
  624. background: #ddd;
  625. height: 1px;
  626. border: 0;
  627. box-shadow: 0 2px 5px #ccc;
  628. }
  629. .content pre {
  630. margin: 10px auto;
  631. padding: 10px 20px;
  632. overflow: auto;
  633. background: #222;
  634. color: #fff;
  635. font-size: 0.9rem;
  636. border-radius: 3px;
  637. }
  638. .content code {
  639. padding: 2px 5px;
  640. background: #262626;
  641. border: 1px solid #262626;
  642. border-radius: 3px;
  643. }
  644. .content pre code {
  645. background: transparent;
  646. color: #fff;
  647. border: none;
  648. }
  649. .content blockquote {
  650. margin: 0;
  651. padding: 25px;
  652. background: #262626;
  653. display: block;
  654. color: #999;
  655. }
  656. .content blockquote p {
  657. margin: 0;
  658. }
  659. /*=== Notification and actualize notification */
  660. .notification {
  661. font-size: 0.9em;
  662. border: 1px solid #eeb;
  663. border-radius: 3px;
  664. text-align: center;
  665. font-weight: bold;
  666. vertical-align: middle;
  667. }
  668. .notification.good {
  669. background: #262626;
  670. color: #999;
  671. border: 2px solid #3b5981;
  672. }
  673. .notification.bad {
  674. background: #fdd;
  675. color: #844;
  676. border: 1px solid #ecc;
  677. }
  678. .notification a {
  679. color: #0062be;
  680. }
  681. .notification a.close {
  682. padding: 0 15px;
  683. line-height: 3em;
  684. }
  685. .notification.bad a.close:hover {
  686. background: #ecc;
  687. }
  688. .notification#actualizeProgress {
  689. line-height: 2em;
  690. }
  691. /*=== "Load more" part */
  692. #bigMarkAsRead {
  693. background: #171717;
  694. color: #0062be;
  695. text-align: center;
  696. text-decoration: none;
  697. }
  698. .bigTick {
  699. display: none!important;
  700. }
  701. /*=== Navigation menu (for articles) */
  702. #nav_entries {
  703. margin: 0;
  704. background: #262626;
  705. text-align: center;
  706. line-height: 3em;
  707. table-layout: fixed;
  708. }
  709. /*=== READER VIEW */
  710. /*================*/
  711. #stream.reader .flux {
  712. padding: 0 0 50px;
  713. color: #333;
  714. border-bottom: 10px solid #171717;
  715. }
  716. #stream.reader .flux.current.active {
  717. background: #333;
  718. }
  719. #stream.reader .flux .author {
  720. margin: 0 0 10px;
  721. color: #666;
  722. font-size: 90%;
  723. }
  724. /*=== GLOBAL VIEW */
  725. /*================*/
  726. .box.category .box-title .title {
  727. font-weight: normal;
  728. text-decoration: none;
  729. text-align: left;
  730. }
  731. .box.category:not([data-unread="0"]) .box-title {
  732. background: #262626;
  733. }
  734. .box.category:not([data-unread="0"]) .box-title:active {
  735. background: #171717;
  736. }
  737. .box.category:not([data-unread="0"]) .box-title .title {
  738. color: #999;
  739. font-weight: bold;
  740. }
  741. .box.category .title:not([data-unread="0"])::after {
  742. background: none;
  743. color: #fff;
  744. border: 0;
  745. box-shadow: none;
  746. position: absolute;
  747. top: 5px; right: 10px;
  748. font-weight: bold;
  749. text-shadow: none;
  750. }
  751. .box.category .item.feed {
  752. padding: 2px 10px;
  753. font-size: 0.8rem;
  754. }
  755. /*=== Slider */
  756. #slider {
  757. background: #171717;
  758. border-left: 1px solid #333;
  759. }
  760. /*=== SLIDESHOW */
  761. /*==============*/
  762. .nav label {
  763. color: #0062b7;
  764. }
  765. /*=== DIVERS */
  766. /*===========*/
  767. .aside.aside_feed .nav-form input,
  768. .aside.aside_feed .nav-form select {
  769. width: 140px;
  770. }
  771. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  772. right: -20px;
  773. }
  774. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  775. right: 33px;
  776. }
  777. /*=== STATISTICS */
  778. /*===============*/
  779. .stat {
  780. margin: 10px 0 20px;
  781. }
  782. .stat th,
  783. .stat td,
  784. .stat tr {
  785. border: none;
  786. }
  787. .stat > table td,
  788. .stat > table th {
  789. border-bottom: 1px solid #ddd;
  790. }
  791. .stat > .horizontal-list {
  792. margin: 0 0 5px;
  793. }
  794. .stat > .horizontal-list .item {
  795. overflow: hidden;
  796. white-space: nowrap;
  797. text-overflow: ellipsis;
  798. }
  799. .stat > .horizontal-list .item:first-child {
  800. width: 270px;
  801. }
  802. /*=== LOGS */
  803. /*=========*/
  804. .loglist {
  805. border: 1px solid #aaa;
  806. border-radius: 5px;
  807. overflow: hidden;
  808. }
  809. .log {
  810. padding: 5px 10px;
  811. background: #fafafa;
  812. color: #333;
  813. font-size: 0.8rem;
  814. }
  815. .log+.log {
  816. border-top: 1px solid #aaa;
  817. }
  818. .log .date {
  819. display: block;
  820. font-weight: bold;
  821. }
  822. .log.error {
  823. background: #fdd;
  824. color: #844;
  825. }
  826. .log.warning {
  827. background: #ffe;
  828. color: #c95;
  829. }
  830. .log.notice {
  831. background: #f4f4f4;
  832. color: #aaa;
  833. }
  834. .log.debug {
  835. background: #333;
  836. color: #eee;
  837. }
  838. /*=== MOBILE */
  839. /*===========*/
  840. @media (max-width: 840px) {
  841. .form-group .group-name {
  842. padding-bottom: 0;
  843. text-align: left;
  844. }
  845. .aside {
  846. box-shadow: 3px 0 3px #aaa;
  847. transition: width 200ms linear;
  848. }
  849. .aside .toggle_aside,
  850. #panel .close,
  851. .dropdown-menu .toggle_aside {
  852. background: #262626;
  853. display: block;
  854. width: 100%;
  855. height: 50px;
  856. border-bottom: 1px solid #333;
  857. line-height: 50px;
  858. text-align: center;
  859. }
  860. .aside.aside_feed {
  861. padding: 0;
  862. }
  863. .nav_menu .btn {
  864. margin: 5px 10px;
  865. padding: 3px 5px;
  866. min-height: 0;
  867. }
  868. .nav_menu .stick {
  869. margin: 0 10px;
  870. }
  871. .nav_menu .stick .btn {
  872. margin: 5px 0;
  873. }
  874. .nav_menu .search {
  875. display: inline-block;
  876. max-width: 97%;
  877. }
  878. .nav_menu .search input {
  879. padding: 3px 5px;
  880. max-width: 97%;
  881. width: 90px;
  882. }
  883. .nav_menu .search input:focus {
  884. width: 400px;
  885. }
  886. .dropdown-target:target ~ .dropdown-toggle::after {
  887. background-color: #333;
  888. border-top: 2px solid #262626;
  889. border-left: 2px solid #262626;
  890. }
  891. .day .name {
  892. display: none!important;
  893. font-size: 1.1rem;
  894. text-shadow: none;
  895. }
  896. .flux:not(.current):hover .item.title {
  897. background: #333;
  898. }
  899. .notification a.close {
  900. background: transparent;
  901. display: block;
  902. left: 0;
  903. }
  904. .notification a.close:hover {
  905. opacity: 0.5;
  906. }
  907. .notification a.close .icon {
  908. display: none;
  909. }
  910. .post {
  911. padding-left: 15px;
  912. padding-right: 15px;
  913. }
  914. }