flat.rtl.css 17 KB

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