flat.rtl.css 18 KB

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