flat.rtl.css 16 KB

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