adark.rtl.css 15 KB

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