dark.css 17 KB

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