dark.css 17 KB

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