dark.rtl.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212
  1. @charset "UTF-8";
  2. /*=== GENERAL */
  3. /*============*/
  4. html, body {
  5. background: #1c1c1c;
  6. height: 100%;
  7. color: #888;
  8. font-family: "OpenSans", "Cantarell", "Helvetica", "Arial", "PingFang SC", "Microsoft YaHei", sans-serif;
  9. }
  10. /*=== Links */
  11. a, button.as-link {
  12. color: #6986b2;
  13. outline: none;
  14. }
  15. /*=== Images */
  16. img.favicon {
  17. background: #fff;
  18. border-radius: 2px;
  19. }
  20. body img,
  21. body video {
  22. filter: brightness(.6) contrast(1.2);
  23. }
  24. /*=== Forms */
  25. legend {
  26. margin: 20px 0 5px;
  27. padding: 5px 0;
  28. font-size: 1.4em;
  29. border-bottom: 1px solid #2f2f2f;
  30. }
  31. label {
  32. min-height: 25px;
  33. padding: 5px 0;
  34. cursor: pointer;
  35. }
  36. textarea {
  37. width: 360px;
  38. height: 100px;
  39. }
  40. input, select, textarea {
  41. padding: 5px;
  42. background: #333;
  43. color: #999;
  44. border: 1px solid #000;
  45. border-radius: 3px;
  46. box-shadow: 0 2px 2px #1d1d1d inset;
  47. min-height: 25px;
  48. line-height: 25px;
  49. vertical-align: middle;
  50. }
  51. option {
  52. padding: 0 .5em;
  53. }
  54. input:focus, select:focus, textarea:focus {
  55. color: #6986b2;
  56. border-color: #2f2f2f;
  57. }
  58. input:invalid, select:invalid {
  59. border-color: #f00;
  60. box-shadow: 0 0 2px 1px #f00;
  61. }
  62. input:disabled, select:disabled {
  63. background: #666;
  64. color: #aaa;
  65. }
  66. input.extend {
  67. transition: width 200ms linear;
  68. }
  69. /*=== Tables */
  70. table {
  71. border-collapse: collapse;
  72. }
  73. tr, th, td {
  74. padding: 0.5em;
  75. border: 1px solid #333;
  76. }
  77. th {
  78. background: #222;
  79. }
  80. form td,
  81. form th {
  82. font-weight: normal;
  83. text-align: center;
  84. }
  85. /*=== COMPONENTS */
  86. /*===============*/
  87. /*=== Forms */
  88. .form-group.form-actions {
  89. padding: 5px 0;
  90. background: #1a1a1a;
  91. border-top: 1px solid #2f2f2f;
  92. }
  93. .form-group.form-actions .btn {
  94. margin: 0 10px;
  95. }
  96. .form-group .group-name {
  97. padding: 10px 0;
  98. text-align: left;
  99. }
  100. .form-group .group-controls {
  101. min-height: 25px;
  102. padding: 5px 0;
  103. }
  104. /*=== Buttons */
  105. button.as-link[disabled] {
  106. color: #445 !important;
  107. }
  108. .stick {
  109. vertical-align: middle;
  110. font-size: 0;
  111. }
  112. .stick input,
  113. .stick .btn {
  114. border-radius: 0;
  115. }
  116. .stick .btn:first-child,
  117. .stick input:first-child {
  118. border-radius: 0 3px 3px 0;
  119. }
  120. .stick .btn-important:first-child {
  121. border-left: 1px solid #000;
  122. }
  123. .stick .btn:last-child,
  124. .stick input:last-child {
  125. border-radius: 3px 0 0 3px;
  126. }
  127. .stick .btn + .btn,
  128. .stick .btn + input,
  129. .stick .btn + .dropdown > .btn,
  130. .stick input + .btn,
  131. .stick input + input,
  132. .stick input + .dropdown > .btn,
  133. .stick .dropdown + .btn,
  134. .stick .dropdown + input,
  135. .stick .dropdown + .dropdown > .btn {
  136. border-right: none;
  137. }
  138. .stick input:focus+input {
  139. border-right: 1px solid #000;
  140. }
  141. .stick input+input:focus {
  142. border-right: 1px solid #333;
  143. }
  144. .stick .btn + .dropdown > .btn {
  145. border-right: none;
  146. border-radius: 3px 0 0 3px;
  147. }
  148. .btn {
  149. margin: 0;
  150. padding: 5px 10px;
  151. background: #111;
  152. display: inline-block;
  153. color: #888;
  154. font-size: 0.9rem;
  155. border: 1px solid #000;
  156. border-radius: 3px;
  157. min-height: 37px;
  158. min-width: 15px;
  159. line-height: 25px;
  160. vertical-align: middle;
  161. cursor: pointer;
  162. overflow: hidden;
  163. }
  164. a.btn {
  165. min-height: 25px;
  166. line-height: 25px;
  167. }
  168. .btn:hover {
  169. text-decoration: none;
  170. background: linear-gradient(to top, #4a5d7a 0%, #26303f 100%);
  171. }
  172. .btn.active,
  173. .dropdown-target:target ~ .btn.dropdown-toggle {
  174. background: #333;
  175. }
  176. .btn:active {
  177. background: #26303f;
  178. }
  179. .btn-important {
  180. font-weight: normal;
  181. background: #26303f;
  182. }
  183. .btn-important:hover {
  184. background: linear-gradient(to top, #4a5d7a 0%, #26303f 100%);
  185. }
  186. .btn-important:active {
  187. background: #26303f;
  188. }
  189. .btn-attention {
  190. background: #801;
  191. }
  192. .btn-attention:hover {
  193. background: linear-gradient(to top, #c04 0%, #801 100%);
  194. }
  195. .btn-attention:active {
  196. background: #801;
  197. }
  198. /*=== Navigation */
  199. .nav-list .nav-header,
  200. .nav-list .item {
  201. height: 2.5em;
  202. line-height: 2.5em;
  203. font-size: 0.9rem;
  204. }
  205. .nav-list .item:hover {
  206. background: #26303f;
  207. }
  208. .nav-list .item.active {
  209. background: #333;
  210. }
  211. .nav-list .item:hover a,
  212. .nav-list .item.active a {
  213. color: #888;
  214. }
  215. .nav-list .disable {
  216. background: #fafafa;
  217. color: #aaa;
  218. text-align: center;
  219. }
  220. .nav-list .item > a {
  221. padding: 0 10px;
  222. }
  223. .nav-list a:hover {
  224. text-decoration: none;
  225. }
  226. .nav-list .item.empty a {
  227. color: #c95;
  228. }
  229. .nav-list .item:hover.empty a,
  230. .nav-list .item.active.empty a {
  231. background: #c95;
  232. color: #fff;
  233. }
  234. .nav-list .item.error a {
  235. color: #a44;
  236. }
  237. .nav-list .item:hover.error a,
  238. .nav-list .item.active.error a {
  239. background: #a44;
  240. color: #fff;
  241. }
  242. .nav-list .nav-header {
  243. padding: 0 10px;
  244. font-weight: bold;
  245. background: #111;
  246. border-bottom: 1px solid #333;
  247. }
  248. .nav-list .nav-form {
  249. padding: 3px;
  250. text-align: center;
  251. }
  252. .nav-head {
  253. margin: 0;
  254. text-align: left;
  255. background: #1c1c1c;
  256. border-bottom: 1px solid #333;
  257. }
  258. .nav-head .item {
  259. padding: 5px 10px;
  260. font-size: 0.9rem;
  261. line-height: 1.5rem;
  262. }
  263. /*=== Horizontal-list */
  264. .horizontal-list {
  265. margin: 0;
  266. padding: 0;
  267. }
  268. .horizontal-list .item {
  269. vertical-align: middle;
  270. }
  271. /*=== Dropdown */
  272. .dropdown-menu {
  273. margin: 5px 0 0;
  274. padding: 5px 0;
  275. background: #1a1a1a;
  276. font-size: 0.8rem;
  277. border: 1px solid #888;
  278. border-radius: 5px;
  279. text-align: right;
  280. }
  281. .dropdown-menu::after {
  282. background: #1a1a1a;
  283. width: 10px;
  284. height: 10px;
  285. border-top: 1px solid #888;
  286. border-right: 1px solid #888;
  287. content: "";
  288. position: absolute;
  289. top: -6px;
  290. left: 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: right;
  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 -14px 0 0;
  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-left: 4px;
  412. }
  413. .box .box-content {
  414. padding-right: 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 > .item {
  483. padding: 10px;
  484. vertical-align: middle;
  485. text-align: center;
  486. border-bottom: 1px solid #333;
  487. }
  488. .header > .item.title {
  489. width: 230px;
  490. }
  491. .header > .item.title .logo {
  492. filter: grayscale(60%) brightness(1.1);
  493. }
  494. .header > .item.search input {
  495. width: 230px;
  496. }
  497. .header .item.search input:focus {
  498. width: 350px;
  499. }
  500. /*=== Body */
  501. #global {
  502. height: calc(100% - 85px);
  503. }
  504. .aside {
  505. background: #1c1c1c;
  506. border-left: 1px solid #333;
  507. }
  508. .aside.aside_feed {
  509. padding: 10px 0;
  510. text-align: center;
  511. }
  512. .aside.aside_feed .tree {
  513. margin: 10px 0 50px;
  514. }
  515. /*=== Aside main page (categories) */
  516. .aside_feed .tree-folder-title > .title:not([data-unread="0"])::after {
  517. margin: 10px 0;
  518. padding: 0 10px;
  519. background: inherit;
  520. font-size: 0.9rem;
  521. position: absolute;
  522. left: 0;
  523. line-height: 1.5rem;
  524. }
  525. /*=== Aside main page (feeds) */
  526. .feed.item.empty.active {
  527. background: #c95;
  528. }
  529. .feed.item.error.active {
  530. background: #a44;
  531. }
  532. .feed.item.empty,
  533. .feed.item.empty > a {
  534. color: #c95;
  535. }
  536. .feed.item.error,
  537. .feed.item.error > a {
  538. color: #a44;
  539. }
  540. .feed.item.empty.active,
  541. .feed.item.empty.active > a {
  542. color: #111;
  543. }
  544. .feed.item.error.active,
  545. .feed.item.error.active > a {
  546. color: #fff;
  547. }
  548. .aside_feed .tree-folder-items .dropdown-menu::after {
  549. right: 2px;
  550. }
  551. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  552. .aside_feed .tree-folder-items .item:hover .dropdown-toggle > .icon,
  553. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  554. border-radius: 3px;
  555. background-color: #111;
  556. }
  557. /*=== Configuration pages */
  558. .post {
  559. padding: 10px 50px;
  560. font-size: 0.9em;
  561. }
  562. .post form {
  563. margin: 10px 0;
  564. }
  565. .post.content {
  566. max-width: 550px;
  567. }
  568. /*=== Prompt (centered) */
  569. .prompt {
  570. max-width: 20rem;
  571. margin-right: auto;
  572. margin-left: auto;
  573. padding-right: .5rem;
  574. padding-left: .5rem;
  575. text-align: center;
  576. }
  577. .prompt form {
  578. margin-top: 2rem;
  579. margin-bottom: 3rem;
  580. text-align: right;
  581. }
  582. .prompt .form-group {
  583. margin-bottom: 1rem;
  584. }
  585. .prompt .form-group::after {
  586. display: none;
  587. }
  588. .prompt .form-group.form-group-actions {
  589. display: flex;
  590. margin-top: 2rem;
  591. align-items: center;
  592. justify-content: space-between;
  593. }
  594. .prompt .stick,
  595. .prompt input {
  596. width: 100%;
  597. box-sizing: border-box;
  598. }
  599. .prompt .btn.btn-important {
  600. padding-right: 1.5rem;
  601. padding-left: 1.5rem;
  602. font-size: 1.1rem;
  603. }
  604. .prompt p {
  605. margin: 20px 0;
  606. }
  607. /*=== New article notification */
  608. #new-article {
  609. background: #26303f;
  610. font-size: 0.9em;
  611. text-align: center;
  612. }
  613. #new-article:hover {
  614. background: #4a5d7a;
  615. }
  616. #new-article > a {
  617. line-height: 3em;
  618. font-weight: bold;
  619. color: #fff;
  620. }
  621. #new-article > a:hover {
  622. text-decoration: none;
  623. }
  624. /*=== Day indication */
  625. .day {
  626. padding: 0 10px;
  627. font-weight: bold;
  628. line-height: 3em;
  629. border-top: 1px solid #333;
  630. border-bottom: 1px solid #333;
  631. }
  632. .day .name {
  633. padding: 0 0 0 10px;
  634. color: #aab;
  635. font-size: 1.8em;
  636. opacity: 0.3;
  637. font-style: italic;
  638. text-align: left;
  639. text-shadow: 0px -1px 0px #333;
  640. }
  641. /*=== Index menu */
  642. .nav_menu {
  643. text-align: center;
  644. padding: 5px 0;
  645. border-bottom: 1px solid #2f2f2f;
  646. }
  647. /*=== Feed articles */
  648. .flux {
  649. background: #1c1c1c;
  650. border-right: 2px solid #2f2f2f;
  651. }
  652. .flux:hover {
  653. background: #111;
  654. }
  655. .flux.current {
  656. background: #111;
  657. border-right: 2px solid #0062be;
  658. }
  659. .flux.not_read {
  660. border-right: 2px solid #ff5300;
  661. }
  662. .flux.favorite {
  663. border-right: 2px solid #ffc300;
  664. }
  665. .flux_header {
  666. font-size: 0.8rem;
  667. cursor: pointer;
  668. }
  669. .flux_header .title {
  670. font-size: 0.9rem;
  671. }
  672. .flux_header .item.title a {
  673. color: #888;
  674. }
  675. .flux .website .favicon {
  676. margin: 5px;
  677. }
  678. .flux .item.date {
  679. color: #666;
  680. font-size: 0.7rem;
  681. }
  682. .flux:not(.current):hover .item.title {
  683. background: #111;
  684. }
  685. .flux .bottom {
  686. font-size: 0.8rem;
  687. text-align: center;
  688. }
  689. /*=== Content of feed articles */
  690. .content {
  691. padding: 20px 10px;
  692. }
  693. .content > h1.title > a {
  694. color: #888;
  695. }
  696. .content hr {
  697. margin: 30px 10px;
  698. background: #666;
  699. height: 1px;
  700. border: 0;
  701. box-shadow: 0 2px 5px #666;
  702. }
  703. .content pre {
  704. margin: 10px auto;
  705. padding: 10px 20px;
  706. background: #222;
  707. color: #fff;
  708. font-size: 0.9rem;
  709. border: 1px solid #000;
  710. border-radius: 3px;
  711. overflow: auto;
  712. }
  713. .content code {
  714. padding: 2px 5px;
  715. background: #000;
  716. color: #d14;
  717. border: 1px solid #333;
  718. border-radius: 3px;
  719. }
  720. .content pre code {
  721. background: transparent;
  722. color: #fff;
  723. border: none;
  724. }
  725. .content blockquote {
  726. margin: 0;
  727. padding: 5px 20px;
  728. background: #222;
  729. display: block;
  730. color: #999;
  731. border-top: 1px solid #444;
  732. border-bottom: 1px solid #444;
  733. }
  734. .content blockquote p {
  735. margin: 0;
  736. }
  737. /*=== Notification and actualize notification */
  738. .notification {
  739. padding: 0 5px 0 0;
  740. background: #111;
  741. color: #c95;
  742. font-size: 0.9em;
  743. border: 1px solid #c95;
  744. border-radius: 5px;
  745. box-shadow: 0 0 5px #666;
  746. text-align: center;
  747. font-weight: bold;
  748. line-height: 3em;
  749. z-index: 10;
  750. vertical-align: middle;
  751. }
  752. .notification.good {
  753. border-color: #484;
  754. color: #484;
  755. }
  756. .notification.bad {
  757. border-color: #a44;
  758. color: #a44;
  759. }
  760. .notification a.close {
  761. padding: 0 15px;
  762. line-height: 3em;
  763. }
  764. .notification a.close:hover {
  765. background: #222;
  766. border-radius: 3px 0 0 3px;
  767. }
  768. .notification.good a.close:hover {
  769. background: #484;
  770. }
  771. .notification.bad a.close:hover {
  772. background: #a44;
  773. }
  774. .notification#actualizeProgress {
  775. line-height: 2em;
  776. }
  777. /*=== "Load more" part */
  778. #bigMarkAsRead {
  779. text-align: center;
  780. text-decoration: none;
  781. }
  782. #bigMarkAsRead:hover {
  783. background: #111;
  784. color: #aaa;
  785. }
  786. /*=== Navigation menu (for articles) */
  787. #nav_entries {
  788. margin: 0;
  789. text-align: center;
  790. line-height: 3em;
  791. table-layout: fixed;
  792. background: #111;
  793. border-top: 1px solid #333;
  794. }
  795. /*=== READER VIEW */
  796. /*================*/
  797. #stream.reader .flux {
  798. padding: 0 0 50px;
  799. background: #111;
  800. border: none;
  801. }
  802. #stream.reader .flux .author {
  803. margin: 0 0 10px;
  804. color: #666;
  805. font-size: 90%;
  806. }
  807. /*=== GLOBAL VIEW */
  808. /*================*/
  809. .box.category .box-title .title {
  810. font-weight: normal;
  811. text-decoration: none;
  812. text-align: right;
  813. color: #888;
  814. }
  815. .box.category:not([data-unread="0"]) .box-title {
  816. background: #34495e;
  817. }
  818. .box.category:not([data-unread="0"]) .box-title:active {
  819. background: #26303f;
  820. }
  821. .box.category:not([data-unread="0"]) .box-title .title {
  822. color: #fff;
  823. font-weight: bold;
  824. }
  825. .box.category .title:not([data-unread="0"])::after {
  826. background: none;
  827. border: 0;
  828. position: absolute;
  829. top: 5px; left: 10px;
  830. font-weight: bold;
  831. box-shadow: none;
  832. text-shadow: none;
  833. }
  834. .box.category .item.feed {
  835. padding: 2px 10px;
  836. font-size: 0.8rem;
  837. }
  838. /*=== Panel */
  839. #panel {
  840. background: #1c1c1c;
  841. border: 1px solid #666;
  842. border-radius: 3px;
  843. }
  844. /*=== Slider */
  845. #slider {
  846. background-color: #1c1c1c;
  847. border-right: 1px solid #666;
  848. }
  849. /*=== DIVERS */
  850. /*===========*/
  851. .aside.aside_feed .nav-form input,
  852. .aside.aside_feed .nav-form select {
  853. width: 140px;
  854. }
  855. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  856. left: -20px;
  857. }
  858. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  859. left: 33px;
  860. }
  861. /*=== STATISTICS */
  862. /*===============*/
  863. .stat {
  864. margin: 10px 0 20px;
  865. }
  866. .stat th,
  867. .stat td,
  868. .stat tr {
  869. border: none;
  870. }
  871. .stat > table td,
  872. .stat > table th {
  873. border-bottom: 1px solid #333;
  874. }
  875. .stat > .horizontal-list {
  876. margin: 0 0 5px;
  877. }
  878. .stat > .horizontal-list .item {
  879. overflow: hidden;
  880. white-space: nowrap;
  881. text-overflow: ellipsis;
  882. }
  883. .stat > .horizontal-list .item:first-child {
  884. width: 270px;
  885. }
  886. /*=== LOGS */
  887. /*=========*/
  888. .loglist {
  889. overflow: hidden;
  890. border: 1px solid #333;
  891. }
  892. .log {
  893. padding: 5px 10px;
  894. background: #111;
  895. color: #888;
  896. font-size: 0.8rem;
  897. }
  898. .log+.log {
  899. border-top: 1px solid #333;
  900. }
  901. .log .date {
  902. display: block;
  903. font-weight: bold;
  904. }
  905. .log.error {
  906. background: #a44;
  907. color: #fff;
  908. }
  909. .log.warning {
  910. background: #c95;
  911. color: #fff;
  912. }
  913. .log.notice {
  914. background: #ec9;
  915. color: #000;
  916. }
  917. .log.debug {
  918. background: #111;
  919. color: #eee;
  920. }
  921. /*=== MOBILE */
  922. /*===========*/
  923. @media (max-width: 840px) {
  924. .form-group .group-name {
  925. padding-bottom: 0;
  926. text-align: right;
  927. }
  928. .aside {
  929. transition: width 200ms linear;
  930. }
  931. .aside .toggle_aside,
  932. #panel .close,
  933. .dropdown-menu .toggle_aside {
  934. background: #111;
  935. display: block;
  936. width: 100%;
  937. height: 50px;
  938. border-bottom: 1px solid #333;
  939. line-height: 50px;
  940. text-align: center;
  941. }
  942. .aside.aside_feed {
  943. padding: 0;
  944. }
  945. .nav_menu .btn {
  946. margin: 5px 10px;
  947. }
  948. .nav_menu .stick {
  949. margin: 0 10px;
  950. }
  951. .nav_menu .stick .btn {
  952. margin: 5px 0;
  953. }
  954. .nav_menu .search {
  955. display: inline-block;
  956. max-width: 97%;
  957. }
  958. .nav_menu .search input {
  959. max-width: 97%;
  960. width: 90px;
  961. }
  962. .nav_menu .search input:focus {
  963. width: 400px;
  964. }
  965. .day .name {
  966. font-size: 1.1rem;
  967. }
  968. .pagination {
  969. margin: 0 0 3.5em;
  970. }
  971. .notification {
  972. border-top: none;
  973. border-left: none;
  974. border-right: none;
  975. border-radius: 0;
  976. }
  977. .notification a.close {
  978. display: block;
  979. right: 0;
  980. }
  981. .notification a.close:hover {
  982. opacity: 0.5;
  983. }
  984. .notification a.close .icon {
  985. display: none;
  986. }
  987. .post {
  988. padding-right: 15px;
  989. padding-left: 15px;
  990. }
  991. #close-slider.active {
  992. background: #111;
  993. border-bottom: 1px solid #333;
  994. }
  995. }