dark.rtl.css 18 KB

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