flat.css 16 KB

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