flat.rtl.css 16 KB

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