dark.rtl.css 17 KB

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