dark.rtl.css 18 KB

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