dark.css 17 KB

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