dark.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179
  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: right;
  95. }
  96. .form-group .group-controls {
  97. min-height: 25px;
  98. padding: 5px 0;
  99. }
  100. .form-group table {
  101. margin: 10px 0 0 220px;
  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: 3px 0 0 3px;
  118. }
  119. .stick .btn-important:first-child {
  120. border-right: 1px solid #000;
  121. }
  122. .stick .btn:last-child,
  123. .stick input:last-child {
  124. border-radius: 0 3px 3px 0;
  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-left: none;
  136. }
  137. .stick input:focus+input {
  138. border-left: 1px solid #000;
  139. }
  140. .stick input+input:focus {
  141. border-left: 1px solid #333;
  142. }
  143. .stick .btn + .dropdown > .btn {
  144. border-left: none;
  145. border-radius: 0 3px 3px 0;
  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: right;
  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: left;
  279. }
  280. .dropdown-menu::after {
  281. background: #1a1a1a;
  282. width: 10px;
  283. height: 10px;
  284. border-top: 1px solid #888;
  285. border-left: 1px solid #888;
  286. content: "";
  287. position: absolute;
  288. top: -6px;
  289. right: 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: left;
  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 0 0 -14px;
  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. font-size: 0;
  392. }
  393. /*=== Boxes */
  394. .box {
  395. border: 1px solid #000;
  396. border-radius: 5px;
  397. }
  398. .box .box-title {
  399. margin: 0;
  400. padding: 5px 10px;
  401. background: #26303f;
  402. border-bottom: 1px solid #000;
  403. border-radius: 5px 5px 0 0;
  404. }
  405. .box .box-content {
  406. max-height: 260px;
  407. }
  408. .box .box-content .item {
  409. padding: 0 10px;
  410. font-size: 0.9rem;
  411. line-height: 2.5em;
  412. }
  413. .box .box-title .configure,
  414. .box .box-content .item .configure {
  415. visibility: hidden;
  416. }
  417. .box .box-title:hover .configure,
  418. .box .box-content .item:hover .configure {
  419. visibility: visible;
  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 h1 {
  495. margin: 0.5em 0;
  496. }
  497. .header > .item.title h1 a {
  498. text-decoration: none;
  499. }
  500. .header > .item.search input {
  501. width: 230px;
  502. }
  503. .header .item.search input:focus {
  504. width: 350px;
  505. }
  506. /*=== Body */
  507. #global {
  508. height: calc(100% - 85px);
  509. }
  510. .aside {
  511. background: #1c1c1c;
  512. border-right: 1px solid #333;
  513. }
  514. .aside.aside_feed {
  515. padding: 10px 0;
  516. text-align: center;
  517. }
  518. .aside.aside_feed .tree {
  519. margin: 10px 0 50px;
  520. }
  521. /*=== Aside main page (categories) */
  522. .aside_feed .tree-folder-title > .title:not([data-unread="0"])::after {
  523. margin: 10px 0;
  524. padding: 0 10px;
  525. background: inherit;
  526. font-size: 0.9rem;
  527. position: absolute;
  528. right: 0;
  529. line-height: 1.5rem;
  530. }
  531. /*=== Aside main page (feeds) */
  532. .feed.item.empty.active {
  533. background: #c95;
  534. }
  535. .feed.item.error.active {
  536. background: #a44;
  537. }
  538. .feed.item.empty,
  539. .feed.item.empty > a {
  540. color: #c95;
  541. }
  542. .feed.item.error,
  543. .feed.item.error > a {
  544. color: #a44;
  545. }
  546. .feed.item.empty.active,
  547. .feed.item.empty.active > a {
  548. color: #111;
  549. }
  550. .feed.item.error.active,
  551. .feed.item.error.active > a {
  552. color: #fff;
  553. }
  554. .aside_feed .tree-folder-items .dropdown-menu::after {
  555. left: 2px;
  556. }
  557. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  558. .aside_feed .tree-folder-items .item:hover .dropdown-toggle > .icon,
  559. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  560. border-radius: 3px;
  561. background-color: #111;
  562. }
  563. /*=== Configuration pages */
  564. .post {
  565. padding: 10px 50px;
  566. font-size: 0.9em;
  567. }
  568. .post form {
  569. margin: 10px 0;
  570. }
  571. .post.content {
  572. max-width: 550px;
  573. }
  574. /*=== Prompt (centered) */
  575. .prompt {
  576. text-align: center;
  577. }
  578. .prompt label {
  579. text-align: left;
  580. }
  581. .prompt form {
  582. margin: 10px auto 20px auto;
  583. width: 200px;
  584. }
  585. .prompt input {
  586. margin: 5px auto;
  587. width: 100%;
  588. }
  589. .prompt p {
  590. margin: 20px 0;
  591. }
  592. /*=== New article notification */
  593. #new-article {
  594. background: #26303f;
  595. font-size: 0.9em;
  596. text-align: center;
  597. }
  598. #new-article:hover {
  599. background: #4a5d7a;
  600. }
  601. #new-article > a {
  602. line-height: 3em;
  603. font-weight: bold;
  604. color: #fff;
  605. }
  606. #new-article > a:hover {
  607. text-decoration: none;
  608. }
  609. /*=== Day indication */
  610. .day {
  611. padding: 0 10px;
  612. font-weight: bold;
  613. line-height: 3em;
  614. border-top: 1px solid #333;
  615. border-bottom: 1px solid #333;
  616. }
  617. .day .name {
  618. padding: 0 10px 0 0;
  619. color: #aab;
  620. font-size: 1.8em;
  621. opacity: 0.3;
  622. font-style: italic;
  623. text-align: right;
  624. text-shadow: 0px -1px 0px #333;
  625. }
  626. /*=== Index menu */
  627. .nav_menu {
  628. text-align: center;
  629. padding: 5px 0;
  630. border-bottom: 1px solid #2f2f2f;
  631. }
  632. /*=== Feed articles */
  633. .flux {
  634. border-left: 2px solid #2f2f2f;
  635. }
  636. .flux:hover {
  637. background: #111;
  638. }
  639. .flux.current {
  640. background: #111;
  641. border-left: 2px solid #0062be;
  642. }
  643. .flux.not_read {
  644. border-left: 2px solid #ff5300;
  645. }
  646. .flux.favorite {
  647. border-left: 2px solid #ffc300;
  648. }
  649. .flux_header {
  650. font-size: 0.8rem;
  651. cursor: pointer;
  652. }
  653. .flux_header .title {
  654. font-size: 0.9rem;
  655. }
  656. .flux_header .item.title a {
  657. color: #888;
  658. }
  659. .flux .website .favicon {
  660. margin: 5px;
  661. }
  662. .flux .date {
  663. color: #666;
  664. font-size: 0.7rem;
  665. }
  666. .flux:not(.current):hover .item.title {
  667. background: #111;
  668. }
  669. .flux .bottom {
  670. font-size: 0.8rem;
  671. text-align: center;
  672. }
  673. /*=== Content of feed articles */
  674. .content {
  675. padding: 20px 10px;
  676. }
  677. .content > h1.title > a {
  678. color: #888;
  679. }
  680. .content hr {
  681. margin: 30px 10px;
  682. background: #666;
  683. height: 1px;
  684. border: 0;
  685. box-shadow: 0 2px 5px #666;
  686. }
  687. .content pre {
  688. margin: 10px auto;
  689. padding: 10px 20px;
  690. background: #222;
  691. color: #fff;
  692. font-size: 0.9rem;
  693. border: 1px solid #000;
  694. border-radius: 3px;
  695. overflow: auto;
  696. }
  697. .content code {
  698. padding: 2px 5px;
  699. background: #000;
  700. color: #d14;
  701. border: 1px solid #333;
  702. border-radius: 3px;
  703. }
  704. .content pre code {
  705. background: transparent;
  706. color: #fff;
  707. border: none;
  708. }
  709. .content blockquote {
  710. margin: 0;
  711. padding: 5px 20px;
  712. background: #222;
  713. display: block;
  714. color: #999;
  715. border-top: 1px solid #444;
  716. border-bottom: 1px solid #444;
  717. }
  718. .content blockquote p {
  719. margin: 0;
  720. }
  721. /*=== Notification and actualize notification */
  722. .notification {
  723. padding: 0 0 0 5px;
  724. background: #111;
  725. color: #c95;
  726. font-size: 0.9em;
  727. border: 1px solid #c95;
  728. border-radius: 5px;
  729. box-shadow: 0 0 5px #666;
  730. text-align: center;
  731. font-weight: bold;
  732. line-height: 3em;
  733. z-index: 10;
  734. vertical-align: middle;
  735. }
  736. .notification.good {
  737. border-color: #484;
  738. color: #484;
  739. }
  740. .notification.bad {
  741. border-color: #a44;
  742. color: #a44;
  743. }
  744. .notification a.close {
  745. padding: 0 15px;
  746. line-height: 3em;
  747. }
  748. .notification a.close:hover {
  749. background: #222;
  750. border-radius: 0 3px 3px 0;
  751. }
  752. .notification.good a.close:hover {
  753. background: #484;
  754. }
  755. .notification.bad a.close:hover {
  756. background: #a44;
  757. }
  758. .notification#actualizeProgress {
  759. line-height: 2em;
  760. }
  761. /*=== "Load more" part */
  762. #bigMarkAsRead {
  763. text-align: center;
  764. text-decoration: none;
  765. }
  766. #bigMarkAsRead:hover {
  767. background: #111;
  768. color: #aaa;
  769. }
  770. /*=== Navigation menu (for articles) */
  771. #nav_entries {
  772. margin: 0;
  773. text-align: center;
  774. line-height: 3em;
  775. table-layout: fixed;
  776. background: #111;
  777. border-top: 1px solid #333;
  778. }
  779. /*=== READER VIEW */
  780. /*================*/
  781. #stream.reader .flux {
  782. padding: 0 0 50px;
  783. background: #111;
  784. border: none;
  785. }
  786. #stream.reader .flux .author {
  787. margin: 0 0 10px;
  788. color: #666;
  789. font-size: 90%;
  790. }
  791. /*=== GLOBAL VIEW */
  792. /*================*/
  793. .box.category .box-title .title {
  794. font-weight: normal;
  795. text-decoration: none;
  796. text-align: left;
  797. color: #888;
  798. }
  799. .box.category:not([data-unread="0"]) .box-title {
  800. background: #34495e;
  801. }
  802. .box.category:not([data-unread="0"]) .box-title:active {
  803. background: #26303f;
  804. }
  805. .box.category:not([data-unread="0"]) .box-title .title {
  806. color: #fff;
  807. font-weight: bold;
  808. }
  809. .box.category .title:not([data-unread="0"])::after {
  810. background: none;
  811. border: 0;
  812. position: absolute;
  813. top: 5px; right: 10px;
  814. font-weight: bold;
  815. box-shadow: none;
  816. text-shadow: none;
  817. }
  818. .box.category .item.feed {
  819. padding: 2px 10px;
  820. font-size: 0.8rem;
  821. }
  822. /*=== Panel */
  823. #panel {
  824. background: #1c1c1c;
  825. border: 1px solid #666;
  826. border-radius: 3px;
  827. }
  828. /*=== Slider */
  829. #slider {
  830. background-color: #1c1c1c;
  831. border-left: 1px solid #666;
  832. }
  833. /*=== DIVERS */
  834. /*===========*/
  835. .aside.aside_feed .nav-form input,
  836. .aside.aside_feed .nav-form select {
  837. width: 140px;
  838. }
  839. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  840. right: -20px;
  841. }
  842. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  843. right: 33px;
  844. }
  845. /*=== STATISTICS */
  846. /*===============*/
  847. .stat {
  848. margin: 10px 0 20px;
  849. }
  850. .stat th,
  851. .stat td,
  852. .stat tr {
  853. border: none;
  854. }
  855. .stat > table td,
  856. .stat > table th {
  857. border-bottom: 1px solid #333;
  858. }
  859. .stat > .horizontal-list {
  860. margin: 0 0 5px;
  861. }
  862. .stat > .horizontal-list .item {
  863. overflow: hidden;
  864. white-space: nowrap;
  865. text-overflow: ellipsis;
  866. }
  867. .stat > .horizontal-list .item:first-child {
  868. width: 270px;
  869. }
  870. /*=== LOGS */
  871. /*=========*/
  872. .loglist {
  873. overflow: hidden;
  874. border: 1px solid #333;
  875. }
  876. .log {
  877. padding: 5px 10px;
  878. background: #111;
  879. color: #888;
  880. font-size: 0.8rem;
  881. }
  882. .log+.log {
  883. border-top: 1px solid #333;
  884. }
  885. .log .date {
  886. display: block;
  887. font-weight: bold;
  888. }
  889. .log.error {
  890. background: #a44;
  891. color: #fff;
  892. }
  893. .log.warning {
  894. background: #c95;
  895. color: #fff;
  896. }
  897. .log.notice {
  898. background: #ec9;
  899. color: #000;
  900. }
  901. .log.debug {
  902. background: #111;
  903. color: #eee;
  904. }
  905. /*=== MOBILE */
  906. /*===========*/
  907. @media (max-width: 840px) {
  908. .aside {
  909. transition: width 200ms linear;
  910. }
  911. .aside .toggle_aside,
  912. #panel .close {
  913. background: #111;
  914. display: block;
  915. width: 100%;
  916. height: 50px;
  917. border-bottom: 1px solid #333;
  918. line-height: 50px;
  919. text-align: center;
  920. }
  921. .aside.aside_feed {
  922. padding: 0;
  923. }
  924. .nav_menu .btn {
  925. margin: 5px 10px;
  926. }
  927. .nav_menu .stick {
  928. margin: 0 10px;
  929. }
  930. .nav_menu .stick .btn {
  931. margin: 5px 0;
  932. }
  933. .nav_menu .search {
  934. display: inline-block;
  935. max-width: 97%;
  936. }
  937. .nav_menu .search input {
  938. max-width: 97%;
  939. width: 90px;
  940. }
  941. .nav_menu .search input:focus {
  942. width: 400px;
  943. }
  944. .day .name {
  945. font-size: 1.1rem;
  946. }
  947. .pagination {
  948. margin: 0 0 3.5em;
  949. }
  950. .notification {
  951. border-top: none;
  952. border-right: none;
  953. border-left: none;
  954. border-radius: 0;
  955. }
  956. .notification a.close {
  957. display: block;
  958. left: 0;
  959. }
  960. .notification a.close:hover {
  961. opacity: 0.5;
  962. }
  963. .notification a.close .icon {
  964. display: none;
  965. }
  966. }