flat.rtl.css 17 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156
  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 {
  121. vertical-align: middle;
  122. font-size: 0;
  123. }
  124. .stick input,
  125. .stick .btn {
  126. border-radius: 0;
  127. }
  128. .stick .btn:first-child,
  129. .stick input:first-child {
  130. border-radius: 0 5px 5px 0;
  131. }
  132. .stick .btn:last-child,
  133. .stick input:last-child,
  134. .stick .btn + .dropdown > .btn {
  135. border-radius: 5px 0 0 5px;
  136. }
  137. .stick .btn + .btn,
  138. .stick .btn + input,
  139. .stick .btn + .dropdown > .btn,
  140. .stick input + .btn,
  141. .stick input + input,
  142. .stick input + .dropdown > .btn,
  143. .stick .dropdown + .btn,
  144. .stick .dropdown + input,
  145. .stick .dropdown + .dropdown > .btn {
  146. border-right-width: 1px;
  147. border-right-style: solid;
  148. }
  149. .btn {
  150. margin: 0;
  151. padding: 5px 10px;
  152. background: #3498db;
  153. display: inline-block;
  154. color: #fff;
  155. font-size: 0.9rem;
  156. border: none;
  157. border-bottom: 3px solid #2980b9;
  158. border-right-color: #2980b9;
  159. border-radius: 5px;
  160. min-height: 38px;
  161. min-width: 15px;
  162. line-height: 25px;
  163. vertical-align: middle;
  164. cursor: pointer;
  165. overflow: hidden;
  166. }
  167. a.btn {
  168. min-height: 25px;
  169. line-height: 25px;
  170. }
  171. .btn:hover {
  172. text-decoration: none;
  173. }
  174. .btn.active,
  175. .btn:active,
  176. .btn:hover,
  177. .dropdown-target:target ~ .btn.dropdown-toggle {
  178. background: #2980b9;
  179. }
  180. .btn .icon {
  181. filter: brightness(5);
  182. }
  183. #toggle-unread .icon,
  184. #toggle-starred .icon {
  185. filter: none;
  186. }
  187. .btn-important {
  188. font-weight: normal;
  189. background: #e67e22;
  190. color: #fff;
  191. border-bottom: 3px solid #d35400;
  192. border-right-color: #d35400;
  193. }
  194. .btn-important:hover,
  195. .btn-important:active {
  196. background: #d35400;
  197. }
  198. .btn-important .icon {
  199. filter: brightness(3);
  200. }
  201. .btn-attention {
  202. background: #e74c3c;
  203. color: #fff;
  204. border-bottom: 3px solid #c0392b;
  205. border-right-color: #c0392b;
  206. }
  207. .btn-attention:hover,
  208. .btn-attention:active {
  209. background: #c0392b;
  210. }
  211. .switch.active {
  212. background-color: #2980b9;
  213. }
  214. .switch.active:hover {
  215. background-image: url('./icons/disabled-light.svg');
  216. }
  217. /*=== Navigation */
  218. .nav-list .nav-header,
  219. .nav-list .item {
  220. height: 2.5em;
  221. line-height: 2.5em;
  222. font-size: 0.9rem;
  223. }
  224. .nav-list .item a:hover,
  225. .nav-list .item.active {
  226. background: #2980b9;
  227. color: #fff;
  228. }
  229. .nav-list .item.active a {
  230. color: #fff;
  231. }
  232. .nav-list .disable {
  233. text-align: center;
  234. background: #fafafa;
  235. color: #aaa;
  236. }
  237. .nav-list .item > a {
  238. padding: 0 10px;
  239. }
  240. .nav-list a:hover {
  241. text-decoration: none;
  242. }
  243. .nav-list .item.empty a {
  244. color: #f39c12;
  245. }
  246. .nav-list .item:hover.empty a,
  247. .nav-list .item.active.empty a {
  248. background: #f39c12;
  249. color: #fff;
  250. }
  251. .nav-list .item.error a {
  252. color: #bd362f;
  253. }
  254. .nav-list .item:hover.error a,
  255. .nav-list .item.active.error a {
  256. background: #bd362f;
  257. color: #fff;
  258. }
  259. .nav-list .nav-header {
  260. padding: 0 10px;
  261. font-weight: bold;
  262. background: #34495e;
  263. color: #fff;
  264. }
  265. .nav-list .nav-form {
  266. padding: 3px;
  267. text-align: center;
  268. }
  269. .nav-head {
  270. margin: 0;
  271. text-align: left;
  272. background: #34495e;
  273. color: #fff;
  274. }
  275. .nav-head a {
  276. color: #fff;
  277. }
  278. .nav-head .item {
  279. padding: 5px 10px;
  280. font-size: 0.9rem;
  281. line-height: 1.5rem;
  282. }
  283. /*=== Horizontal-list */
  284. .horizontal-list {
  285. margin: 0;
  286. padding: 0;
  287. }
  288. .horizontal-list .item {
  289. vertical-align: middle;
  290. }
  291. /*=== Dropdown */
  292. .dropdown-menu {
  293. margin: 5px 0 0;
  294. padding: 5px 0;
  295. background: #fafafa;
  296. font-size: 0.8rem;
  297. border: 1px solid #95a5a6;
  298. border-radius: 3px;
  299. text-align: right;
  300. }
  301. .dropdown-menu::after {
  302. border-color: #95a5a6;
  303. left: 12px;
  304. }
  305. .dropdown-header {
  306. padding: 0 5px 5px;
  307. font-weight: bold;
  308. text-align: right;
  309. color: #34495e;
  310. }
  311. .dropdown-menu > .item > a,
  312. .dropdown-menu > .item > span,
  313. .dropdown-menu > .item > .as-link {
  314. padding: 0 22px;
  315. line-height: 2.5em;
  316. font-size: 0.8rem;
  317. }
  318. .dropdown-menu > .item > a:hover,
  319. .dropdown-menu > .item > button:hover {
  320. background: #2980b9;
  321. color: #fff;
  322. }
  323. .dropdown-menu > .item[aria-checked="true"] > a::before {
  324. font-weight: bold;
  325. margin: 0 -14px 0 0;
  326. }
  327. .dropdown-menu .input select,
  328. .dropdown-menu .input input {
  329. margin: 0 auto 5px;
  330. padding: 2px 5px;
  331. border-radius: 3px;
  332. }
  333. .separator {
  334. margin: 5px 0;
  335. border-bottom: 1px solid #ddd;
  336. }
  337. /*=== Alerts */
  338. .alert {
  339. margin: 15px auto;
  340. padding: 10px 15px;
  341. background: #f4f4f4;
  342. color: #aaa;
  343. font-size: 0.9em;
  344. border: 1px solid #ccc;
  345. border-left: 1px solid #aaa;
  346. border-bottom: 1px solid #aaa;
  347. border-radius: 5px;
  348. text-shadow: 0 0 1px #eee;
  349. }
  350. .alert-head {
  351. font-size: 1.15em;
  352. }
  353. .alert > a {
  354. text-decoration: underline;
  355. color: inherit;
  356. }
  357. .alert-warn {
  358. background: #ffe;
  359. color: #c95;
  360. border: 1px solid #eeb;
  361. }
  362. .alert-success {
  363. background: #dfd;
  364. color: #484;
  365. border: 1px solid #cec;
  366. }
  367. .alert-error {
  368. background: #fdd;
  369. color: #844;
  370. border: 1px solid #ecc;
  371. }
  372. /*=== Pagination */
  373. .pagination {
  374. background: #ecf0f1;
  375. color: #000;
  376. }
  377. .pagination .item a {
  378. color: #000;
  379. }
  380. #load_more.loading,
  381. #load_more.loading:hover {
  382. background: url("loader.gif") center center no-repeat #34495e;
  383. }
  384. /*=== Boxes */
  385. .box {
  386. border: 1px solid #ddd;
  387. border-radius: 5px;
  388. }
  389. .box .box-title {
  390. margin: 0;
  391. padding: 5px 10px;
  392. background: #ecf0f1;
  393. color: #333;
  394. border-bottom: 1px solid #ddd;
  395. border-radius: 5px 5px 0 0;
  396. }
  397. .box .box-title .configure {
  398. margin-left: 4px;
  399. }
  400. .box .box-content {
  401. padding-right: 30px;
  402. max-height: 260px;
  403. }
  404. .box .box-content .item {
  405. font-size: 0.9rem;
  406. line-height: 2.5em;
  407. }
  408. .box .box-title .configure .icon,
  409. .box .box-content .item .configure .icon {
  410. vertical-align: middle;
  411. background-color: #95a5a6;
  412. border-radius: 3px;
  413. }
  414. /*=== Tree */
  415. .tree {
  416. margin: 10px 0;
  417. }
  418. .tree-folder-title {
  419. position: relative;
  420. padding: 0 10px;
  421. background: #34495e;
  422. line-height: 2.5rem;
  423. font-size: 1rem;
  424. }
  425. .tree-folder-title .title {
  426. background: inherit;
  427. color: #fff;
  428. }
  429. .tree-folder-title .title:hover {
  430. text-decoration: none;
  431. }
  432. .tree-folder.active .tree-folder-title {
  433. background: #2980b9;
  434. font-weight: bold;
  435. }
  436. .tree-folder-items {
  437. background: #2c3e50;
  438. }
  439. .tree-folder-items > .item {
  440. padding: 0 10px;
  441. line-height: 2.5rem;
  442. font-size: 0.8rem;
  443. }
  444. .tree-folder-items > .item.active {
  445. background: #2980b9;
  446. }
  447. .tree-folder-items > .item > a {
  448. text-decoration: none;
  449. color: #fff;
  450. }
  451. /*=== Scrollbar */
  452. @supports (scrollbar-width: thin) {
  453. #sidebar {
  454. scrollbar-color: rgba(255, 255, 255, 0.05) rgba(0, 0, 0, 0.0);
  455. }
  456. #sidebar:hover {
  457. scrollbar-color: rgba(255, 255, 255, 0.3) rgba(0, 0, 0, 0.0);
  458. }
  459. }
  460. @supports not (scrollbar-width: thin) {
  461. #sidebar::-webkit-scrollbar-thumb {
  462. background: rgba(255, 255, 255, 0.1);
  463. }
  464. #sidebar:hover::-webkit-scrollbar-thumb {
  465. background: rgba(255, 255, 255, 0.3);
  466. }
  467. }
  468. /*=== STRUCTURE */
  469. /*===============*/
  470. /*=== Header */
  471. .header {
  472. background: #ecf0f1;
  473. }
  474. .header > .item {
  475. padding: 10px;
  476. vertical-align: middle;
  477. text-align: center;
  478. }
  479. .header > .item.title {
  480. width: 230px;
  481. }
  482. .header > .item.title h1 {
  483. margin: 0.5em 0;
  484. }
  485. .header > .item.title h1 a {
  486. text-decoration: none;
  487. }
  488. .header > .item.search input {
  489. width: 230px;
  490. }
  491. .header .item.search input:focus {
  492. width: 350px;
  493. }
  494. .aside {
  495. background: #ecf0f1;
  496. }
  497. .aside.aside_feed {
  498. padding: 10px 0;
  499. text-align: center;
  500. background: #34495e;
  501. border-radius: 10px 0 0 0;
  502. }
  503. .aside.aside_feed .tree {
  504. margin: 10px 0 50px;
  505. }
  506. /*=== Aside main page (categories) */
  507. .aside.aside_feed .category .title:not([data-unread="0"])::after {
  508. background-color: #2c3e50;
  509. }
  510. .aside.aside_feed .feed .item-title:not([data-unread="0"])::after {
  511. background-color: #34495e;
  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. vertical-align: middle;
  608. background-color: #95a5a6;
  609. border-radius: 3px;
  610. }
  611. /*=== Feed articles */
  612. .flux {
  613. border-right: 2px solid #ecf0f1;
  614. }
  615. .flux:hover {
  616. background: #fff;
  617. }
  618. .flux.current {
  619. background: #fff;
  620. border-right-color: #3498db;
  621. }
  622. .flux.not_read {
  623. border-right-color: #ff5300;
  624. }
  625. .flux.not_read:not(.current) {
  626. background: #fff3ed;
  627. }
  628. .flux.not_read:not(.current):hover .item.title {
  629. background: inherit;
  630. }
  631. .flux.favorite {
  632. border-right-color: #ffc300;
  633. }
  634. .flux.favorite:not(.current) {
  635. background: #fff6da;
  636. }
  637. .flux.favorite:not(.current):hover .item.title {
  638. background: #fff6da;
  639. }
  640. .flux_header {
  641. font-size: 0.8rem;
  642. cursor: pointer;
  643. border-top: 1px solid #ecf0f1;
  644. }
  645. .flux_header .title {
  646. font-size: 0.9rem;
  647. }
  648. .flux .website .favicon {
  649. padding: 5px;
  650. }
  651. .flux .item.date {
  652. color: #666;
  653. font-size: 0.7rem;
  654. }
  655. .flux .bottom {
  656. font-size: 0.8rem;
  657. text-align: center;
  658. }
  659. /*=== Content of feed articles */
  660. .content {
  661. padding: 20px 10px;
  662. }
  663. .content > h1.title > a {
  664. color: #000;
  665. }
  666. .content hr {
  667. margin: 30px 10px;
  668. background: #ddd;
  669. height: 1px;
  670. border: 0;
  671. box-shadow: 0 2px 5px #ccc;
  672. }
  673. .content pre {
  674. margin: 10px auto;
  675. padding: 10px 20px;
  676. overflow: auto;
  677. background: #222;
  678. color: #fff;
  679. font-size: 0.9rem;
  680. border-radius: 3px;
  681. }
  682. .content code {
  683. padding: 2px 5px;
  684. background: #fafafa;
  685. color: #d14;
  686. border: 1px solid #eee;
  687. border-radius: 3px;
  688. }
  689. .content pre code {
  690. background: transparent;
  691. color: #fff;
  692. border: none;
  693. }
  694. .content blockquote {
  695. margin: 0;
  696. padding: 5px 20px;
  697. background: #fafafa;
  698. display: block;
  699. color: #333;
  700. border-top: 1px solid #ddd;
  701. border-bottom: 1px solid #ddd;
  702. }
  703. .content blockquote p {
  704. margin: 0;
  705. }
  706. /*=== Notification and actualize notification */
  707. .notification {
  708. background: #ddd;
  709. color: #666;
  710. font-size: 0.9em;
  711. border: none;
  712. border-radius: 3px;
  713. text-align: center;
  714. font-weight: bold;
  715. vertical-align: middle;
  716. }
  717. .notification.good {
  718. background: #1abc9c;
  719. color: #fff;
  720. }
  721. .notification.bad {
  722. background: #e74c3c;
  723. color: #fff;
  724. }
  725. .notification a {
  726. color: #000;
  727. }
  728. .notification a.close {
  729. padding: 0 15px;
  730. line-height: 3em;
  731. border-radius: 3px 0 0 3px;
  732. }
  733. .notification.good a.close:hover {
  734. background: #16a085;
  735. }
  736. .notification.bad a.close:hover {
  737. background: #c0392b;
  738. }
  739. .notification#actualizeProgress {
  740. line-height: 2em;
  741. }
  742. /*=== "Load more" part */
  743. #bigMarkAsRead {
  744. text-align: center;
  745. text-decoration: none;
  746. background: #ecf0f1;
  747. }
  748. #bigMarkAsRead:hover {
  749. background: #34495e;
  750. color: #fff;
  751. }
  752. /*=== Navigation menu (for articles) */
  753. #nav_entries {
  754. margin: 0;
  755. text-align: center;
  756. line-height: 3em;
  757. table-layout: fixed;
  758. background: #34495e;
  759. }
  760. /*=== READER VIEW */
  761. /*================*/
  762. #stream.reader .flux {
  763. padding: 0 0 50px;
  764. background: #ecf0f1;
  765. color: #34495e;
  766. border: none;
  767. }
  768. #stream.reader .flux .author {
  769. margin: 0 0 10px;
  770. color: #999;
  771. font-size: 90%;
  772. }
  773. /*=== GLOBAL VIEW */
  774. /*================*/
  775. .box.category .box-title .title {
  776. font-weight: normal;
  777. text-decoration: none;
  778. text-align: right;
  779. }
  780. .box.category:not([data-unread="0"]) .box-title {
  781. background: #3498db;
  782. }
  783. .box.category:not([data-unread="0"]) .box-title:active {
  784. background: #2980b9;
  785. }
  786. .box.category:not([data-unread="0"]) .box-title .title {
  787. font-weight: bold;
  788. color: #fff;
  789. }
  790. .box.category .title:not([data-unread="0"])::after {
  791. background: none;
  792. border: 0;
  793. position: absolute;
  794. top: 5px; left: 10px;
  795. font-weight: bold;
  796. box-shadow: none;
  797. text-shadow: none;
  798. }
  799. .box.category .item.feed {
  800. padding: 2px 10px;
  801. font-size: 0.8rem;
  802. }
  803. /*=== DIVERS */
  804. /*===========*/
  805. .aside.aside_feed .nav-form input,
  806. .aside.aside_feed .nav-form select {
  807. width: 140px;
  808. }
  809. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  810. left: -20px;
  811. }
  812. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  813. left: 33px;
  814. }
  815. /*=== STATISTICS */
  816. /*===============*/
  817. .stat {
  818. margin: 10px 0 20px;
  819. }
  820. .stat th,
  821. .stat td,
  822. .stat tr {
  823. border: none;
  824. }
  825. .stat > table td,
  826. .stat > table th {
  827. border-bottom: 1px solid #ddd;
  828. }
  829. .stat > .horizontal-list {
  830. margin: 0 0 5px;
  831. }
  832. .stat > .horizontal-list .item {
  833. overflow: hidden;
  834. white-space: nowrap;
  835. text-overflow: ellipsis;
  836. }
  837. .stat > .horizontal-list .item:first-child {
  838. width: 270px;
  839. }
  840. /*=== LOGS */
  841. /*=========*/
  842. .loglist {
  843. overflow: hidden;
  844. border: 1px solid #aaa;
  845. }
  846. .log {
  847. margin: 10px 0;
  848. padding: 5px 2%;
  849. background: #fafafa;
  850. color: #666;
  851. font-size: 0.8rem;
  852. overflow: auto;
  853. }
  854. .log > .date {
  855. margin: 0 0 0 10px;
  856. padding: 5px 10px;
  857. border-radius: 20px;
  858. }
  859. .log.error > .date {
  860. background: #e74c3c;
  861. color: #fff;
  862. }
  863. .log.warning > .date {
  864. background: #f39c12;
  865. }
  866. .log.notice > .date {
  867. background: #ecf0f1;
  868. }
  869. .log.debug > .date {
  870. background: #111;
  871. color: #eee;
  872. }
  873. /*=== MOBILE */
  874. /*===========*/
  875. @media (max-width: 840px) {
  876. .form-group .group-name {
  877. padding-bottom: 0;
  878. text-align: right;
  879. }
  880. .aside {
  881. transition: width 200ms linear;
  882. }
  883. .aside .toggle_aside,
  884. #panel .close,
  885. .dropdown-menu .toggle_aside {
  886. background: #2c3e50;
  887. display: block;
  888. width: 100%;
  889. height: 50px;
  890. line-height: 50px;
  891. text-align: center;
  892. }
  893. .aside.aside_feed {
  894. padding: 0;
  895. }
  896. .nav_menu .btn {
  897. margin: 5px 10px;
  898. padding: 3px 5px;
  899. min-height: 0;
  900. }
  901. .nav_menu .stick {
  902. margin: 0 10px;
  903. }
  904. .nav_menu .stick .btn {
  905. margin: 5px 0;
  906. }
  907. .nav_menu .search {
  908. display: inline-block;
  909. max-width: 97%;
  910. }
  911. .nav_menu .search input {
  912. padding: 3px 5px;
  913. max-width: 97%;
  914. width: 90px;
  915. }
  916. .nav_menu .search input:focus {
  917. width: 400px;
  918. }
  919. .dropdown-target:target ~ .dropdown-toggle::after {
  920. background-color: #fafafa;
  921. border-top: 1px solid #95a5a6;
  922. border-right: 1px solid #95a5a6;
  923. }
  924. .dropdown-target:target ~ .btn.dropdown-toggle::after {
  925. bottom: -19px;
  926. }
  927. .day .name {
  928. font-size: 1.1rem;
  929. }
  930. .notification {
  931. border-radius: 0;
  932. }
  933. .notification a.close {
  934. background: transparent;
  935. display: block;
  936. right: 0;
  937. }
  938. .notification a.close:hover {
  939. opacity: 0.5;
  940. }
  941. .notification a.close .icon {
  942. display: none;
  943. }
  944. .post {
  945. padding-right: 15px;
  946. padding-left: 15px;
  947. }
  948. #close-slider.active {
  949. background: #2c3e50;
  950. }
  951. }