dark.rtl.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203
  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. border-color: #888;
  283. }
  284. .dropdown-header {
  285. padding: 0 5px 5px;
  286. font-weight: bold;
  287. text-align: right;
  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 > a:hover,
  298. .dropdown-menu > .item > button:hover {
  299. background: #26303f;
  300. color: #888;
  301. }
  302. .dropdown-menu > .item[aria-checked="true"] > a::before {
  303. font-weight: bold;
  304. margin: 0 -14px 0 0;
  305. }
  306. .dropdown-menu .input select,
  307. .dropdown-menu .input input {
  308. margin: 0 auto 5px;
  309. padding: 2px 5px;
  310. border-radius: 3px;
  311. }
  312. .separator {
  313. margin: 5px 0;
  314. border-bottom: 1px solid #333;
  315. }
  316. /*=== Alerts */
  317. .alert {
  318. margin: 15px auto;
  319. padding: 10px 15px;
  320. background: #111;
  321. color: #aaa;
  322. font-size: 0.9em;
  323. border: 1px solid #888;
  324. border-radius: 5px;
  325. }
  326. .alert-head {
  327. font-size: 1.15em;
  328. }
  329. .alert > a {
  330. text-decoration: underline;
  331. color: inherit;
  332. }
  333. .alert-warn {
  334. color: #c95;
  335. border: 1px solid #c95;
  336. }
  337. .alert-success {
  338. color: #484;
  339. border: 1px solid #484;
  340. }
  341. .alert-error {
  342. color: #a44;
  343. border: 1px solid #a44;
  344. }
  345. /*=== Pagination */
  346. .pagination {
  347. background: #1c1c1c;
  348. color: #888;
  349. font-size: 0.8em;
  350. text-align: center;
  351. }
  352. .content .pagination {
  353. margin: 0;
  354. padding: 0;
  355. }
  356. .pagination .item.pager-current {
  357. background: #111;
  358. font-size: 1.5em;
  359. font-weight: bold;
  360. }
  361. .pagination .item a {
  362. display: block;
  363. font-style: italic;
  364. line-height: 3em;
  365. text-decoration: none;
  366. color: #666;
  367. }
  368. .pagination .item a:hover {
  369. background-color: #111;
  370. }
  371. .pagination:first-child .item {
  372. border-bottom: 1px solid #333;
  373. }
  374. .pagination:last-child .item {
  375. border-top: 1px solid #333;
  376. }
  377. #load_more.loading,
  378. #load_more.loading:hover {
  379. background: url("loader.gif") center center no-repeat;
  380. }
  381. /*=== Boxes */
  382. .box {
  383. border: 1px solid #000;
  384. border-radius: 5px;
  385. }
  386. .box .icon {
  387. filter: brightness(100%);
  388. }
  389. .box .box-title {
  390. margin: 0;
  391. padding: 5px 10px;
  392. background: #26303f;
  393. border-bottom: 1px solid #000;
  394. border-radius: 5px 5px 0 0;
  395. }
  396. .box .box-title .configure {
  397. margin-left: 4px;
  398. }
  399. .box .box-content {
  400. padding-right: 30px;
  401. max-height: 260px;
  402. }
  403. .box .box-content .item {
  404. font-size: 0.9rem;
  405. line-height: 2.5em;
  406. }
  407. /*=== Tree */
  408. .tree {
  409. margin: 10px 0;
  410. }
  411. .tree-folder-title {
  412. padding: 0 10px;
  413. background: #1c1c1c;
  414. font-size: 1rem;
  415. position: relative;
  416. line-height: 2.5rem;
  417. }
  418. .tree-folder-title .title {
  419. background: inherit;
  420. color: #888;
  421. }
  422. .tree-folder-title .title:hover {
  423. text-decoration: none;
  424. }
  425. .tree-folder.active .tree-folder-title {
  426. background: #2c2c2c;
  427. font-weight: bold;
  428. }
  429. .tree-folder-items {
  430. background: #161616;
  431. border-top: 1px solid #222;
  432. border-bottom: 1px solid #222;
  433. }
  434. .tree-folder-items > .item {
  435. padding: 0 10px;
  436. line-height: 2.5rem;
  437. font-size: 0.8rem;
  438. }
  439. .tree-folder-items > .item.active {
  440. background: #1c1c1c;
  441. }
  442. .tree-folder-items > .item > a {
  443. text-decoration: none;
  444. }
  445. .tree-folder-items > .item.active > a {
  446. color: #888;
  447. }
  448. /*=== Scrollbar */
  449. @supports (scrollbar-width: thin) {
  450. #sidebar {
  451. scrollbar-color: rgba(255, 255, 255, 0.05) rgba(0, 0, 0, 0.0);
  452. }
  453. #sidebar:hover {
  454. scrollbar-color: rgba(255, 255, 255, 0.3) rgba(0, 0, 0, 0.0);
  455. }
  456. }
  457. @supports not (scrollbar-width: thin) {
  458. #sidebar::-webkit-scrollbar-thumb {
  459. background: rgba(255, 255, 255, 0.1);
  460. }
  461. #sidebar:hover::-webkit-scrollbar-thumb {
  462. background: rgba(255, 255, 255, 0.3);
  463. }
  464. }
  465. /*=== STRUCTURE */
  466. /*===============*/
  467. /*=== Header */
  468. .header > .item {
  469. padding: 10px;
  470. vertical-align: middle;
  471. text-align: center;
  472. border-bottom: 1px solid #333;
  473. }
  474. .header > .item.title {
  475. width: 230px;
  476. }
  477. .header > .item.title .logo {
  478. filter: grayscale(60%) brightness(1.1);
  479. }
  480. .header > .item.search input {
  481. width: 230px;
  482. }
  483. .header .item.search input:focus {
  484. width: 350px;
  485. }
  486. /*=== Body */
  487. #global {
  488. height: calc(100% - 85px);
  489. }
  490. .aside {
  491. background: #1c1c1c;
  492. border-left: 1px solid #333;
  493. }
  494. .aside.aside_feed {
  495. padding: 10px 0;
  496. text-align: center;
  497. }
  498. .aside.aside_feed .tree {
  499. margin: 10px 0 50px;
  500. }
  501. /*=== Aside main page (categories) */
  502. .aside.aside_feed .category .title:not([data-unread="0"])::after {
  503. background-color: #171717;
  504. }
  505. .aside.aside_feed .feed .item-title:not([data-unread="0"])::after {
  506. background-color: #222;
  507. color: #888;
  508. }
  509. .aside.aside_feed .feed.active .item-title:not([data-unread="0"])::after {
  510. border-color: #888;
  511. color: #888;
  512. }
  513. /*=== Aside main page (feeds) */
  514. .feed.item.empty.active {
  515. background: #c95;
  516. }
  517. .feed.item.error.active {
  518. background: #a44;
  519. }
  520. .feed.item.empty,
  521. .feed.item.empty > a {
  522. color: #c95;
  523. }
  524. .feed.item.error,
  525. .feed.item.error > a {
  526. color: #a44;
  527. }
  528. .feed.item.empty.active,
  529. .feed.item.empty.active > a {
  530. color: #111;
  531. }
  532. .feed.item.error.active,
  533. .feed.item.error.active > a {
  534. color: #fff;
  535. }
  536. .aside_feed .tree-folder-items .dropdown-menu::after {
  537. right: 2px;
  538. }
  539. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  540. .aside_feed .tree-folder-items .item:hover .dropdown-toggle > .icon,
  541. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  542. border-radius: 3px;
  543. background-color: #111;
  544. }
  545. /*=== Configuration pages */
  546. .post {
  547. padding: 10px 50px;
  548. font-size: 0.9em;
  549. }
  550. .post form {
  551. margin: 10px 0;
  552. }
  553. .post.content {
  554. max-width: 550px;
  555. }
  556. /*=== Prompt (centered) */
  557. .prompt {
  558. max-width: 20rem;
  559. margin-right: auto;
  560. margin-left: auto;
  561. padding-right: .5rem;
  562. padding-left: .5rem;
  563. text-align: center;
  564. }
  565. .prompt form {
  566. margin-top: 2rem;
  567. margin-bottom: 3rem;
  568. text-align: right;
  569. }
  570. .prompt .form-group {
  571. margin-bottom: 1rem;
  572. }
  573. .prompt .form-group::after {
  574. display: none;
  575. }
  576. .prompt .form-group.form-group-actions {
  577. display: flex;
  578. margin-top: 2rem;
  579. align-items: center;
  580. justify-content: space-between;
  581. }
  582. .prompt .stick,
  583. .prompt input {
  584. width: 100%;
  585. box-sizing: border-box;
  586. }
  587. .prompt .btn.btn-important {
  588. padding-right: 1.5rem;
  589. padding-left: 1.5rem;
  590. font-size: 1.1rem;
  591. }
  592. .prompt p {
  593. margin: 20px 0;
  594. }
  595. /*=== New article notification */
  596. #new-article {
  597. background: #26303f;
  598. font-size: 0.9em;
  599. text-align: center;
  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. background: #4a5d7a;
  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. background: #1c1c1c;
  636. border-right: 2px solid #2f2f2f;
  637. }
  638. .flux:hover {
  639. background: #111;
  640. }
  641. .flux.current {
  642. background: #111;
  643. border-right: 2px solid #0062be;
  644. }
  645. .flux.not_read {
  646. border-right: 2px solid #ff5300;
  647. }
  648. .flux.favorite {
  649. border-right: 2px solid #ffc300;
  650. }
  651. .flux_header {
  652. font-size: 0.8rem;
  653. cursor: pointer;
  654. }
  655. .flux_header .title {
  656. font-size: 0.9rem;
  657. }
  658. .flux_header .item.title a {
  659. color: #888;
  660. }
  661. .flux .website .favicon {
  662. margin: 5px;
  663. }
  664. .flux .item.date {
  665. color: #666;
  666. font-size: 0.7rem;
  667. }
  668. .flux:not(.current):hover .item.title {
  669. background: #111;
  670. }
  671. .flux .bottom {
  672. font-size: 0.8rem;
  673. text-align: center;
  674. }
  675. /*=== Content of feed articles */
  676. .content {
  677. padding: 20px 10px;
  678. }
  679. .content > h1.title > a {
  680. color: #888;
  681. }
  682. .content hr {
  683. margin: 30px 10px;
  684. background: #666;
  685. height: 1px;
  686. border: 0;
  687. box-shadow: 0 2px 5px #666;
  688. }
  689. .content pre {
  690. margin: 10px auto;
  691. padding: 10px 20px;
  692. background: #222;
  693. color: #fff;
  694. font-size: 0.9rem;
  695. border: 1px solid #000;
  696. border-radius: 3px;
  697. overflow: auto;
  698. }
  699. .content code {
  700. padding: 2px 5px;
  701. background: #000;
  702. color: #d14;
  703. border: 1px solid #333;
  704. border-radius: 3px;
  705. }
  706. .content pre code {
  707. background: transparent;
  708. color: #fff;
  709. border: none;
  710. }
  711. .content blockquote {
  712. margin: 0;
  713. padding: 5px 20px;
  714. background: #222;
  715. display: block;
  716. color: #999;
  717. border-top: 1px solid #444;
  718. border-bottom: 1px solid #444;
  719. }
  720. .content blockquote p {
  721. margin: 0;
  722. }
  723. /*=== Notification and actualize notification */
  724. .notification {
  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. 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: 3px 0 0 3px;
  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: right;
  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; left: 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-right: 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. left: -20px;
  841. }
  842. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  843. left: 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. .form-group .group-name {
  909. padding-bottom: 0;
  910. text-align: right;
  911. }
  912. .aside {
  913. transition: width 200ms linear;
  914. }
  915. .aside .toggle_aside,
  916. #panel .close,
  917. .dropdown-menu .toggle_aside {
  918. background: #111;
  919. display: block;
  920. width: 100%;
  921. height: 50px;
  922. border-bottom: 1px solid #333;
  923. line-height: 50px;
  924. text-align: center;
  925. }
  926. .aside.aside_feed {
  927. padding: 0;
  928. }
  929. .nav_menu .btn {
  930. margin: 5px 10px;
  931. }
  932. .nav_menu .stick {
  933. margin: 0 10px;
  934. }
  935. .nav_menu .stick .btn {
  936. margin: 5px 0;
  937. }
  938. .nav_menu .search {
  939. display: inline-block;
  940. max-width: 97%;
  941. }
  942. .nav_menu .search input {
  943. max-width: 97%;
  944. width: 90px;
  945. }
  946. .nav_menu .search input:focus {
  947. width: 400px;
  948. }
  949. .dropdown-target:target ~ .dropdown-toggle::after {
  950. background-color: #1a1a1a;
  951. border-top: 1px solid #888;
  952. border-right: 1px solid #888;
  953. left: 12px;
  954. }
  955. .day .name {
  956. font-size: 1.1rem;
  957. }
  958. .pagination {
  959. margin: 0 0 3.5em;
  960. }
  961. .notification {
  962. border-top: none;
  963. border-left: none;
  964. border-right: none;
  965. border-radius: 0;
  966. }
  967. .notification a.close {
  968. display: block;
  969. right: 0;
  970. }
  971. .notification a.close:hover {
  972. opacity: 0.5;
  973. }
  974. .notification a.close .icon {
  975. display: none;
  976. }
  977. .post {
  978. padding-right: 15px;
  979. padding-left: 15px;
  980. }
  981. #close-slider.active {
  982. background: #111;
  983. border-bottom: 1px solid #333;
  984. }
  985. }