dark.rtl.css 17 KB

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