flat.rtl.css 17 KB

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