flat.css 16 KB

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