dark.rtl.css 17 KB

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