flat.rtl.css 17 KB

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