flat.rtl.css 16 KB

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