template.rtl.css 18 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312
  1. @charset "UTF-8";
  2. /*=== GENERAL */
  3. /*============*/
  4. @font-face {
  5. font-family: 'OpenSans';
  6. font-style: normal;
  7. font-weight: 400;
  8. src: local('Open Sans'), local('OpenSans'),
  9. url('../fonts/OpenSans.woff2') format('woff2'),
  10. url('../fonts/OpenSans.woff') format('woff');
  11. }
  12. html, body {
  13. margin: 0;
  14. padding: 0;
  15. font-family: "OpenSans", "Cantarell", "Helvetica", "Arial", sans-serif;
  16. font-size: 100%;
  17. }
  18. /*=== Links */
  19. a {
  20. text-decoration: none;
  21. }
  22. a:hover {
  23. text-decoration: underline;
  24. }
  25. /*=== Lists */
  26. ul, ol, dd {
  27. margin: 0;
  28. padding: 0;
  29. }
  30. /*=== Titles */
  31. h1 {
  32. margin: 0.6em 0 0.3em;
  33. font-size: 1.5em;
  34. line-height: 1.6em;
  35. }
  36. h2 {
  37. margin: 0.5em 0 0.25em;
  38. font-size: 1.3em;
  39. line-height: 2em;
  40. }
  41. h3 {
  42. margin: 0.5em 0 0.25em;
  43. font-size: 1.1em;
  44. line-height: 2em;
  45. }
  46. /*=== Paragraphs */
  47. p {
  48. margin: 1em 0 0.5em;
  49. font-size: 1em;
  50. }
  51. sup {
  52. line-height: 25px;
  53. position: relative;
  54. top: -0.8em;
  55. vertical-align: baseline;
  56. }
  57. /*=== Images */
  58. img {
  59. max-width: 100%;
  60. height: auto;
  61. }
  62. img.favicon {
  63. width: 16px;
  64. height: 16px;
  65. vertical-align: middle;
  66. }
  67. .feed.mute::before {
  68. content: '🔇';
  69. }
  70. /*=== Videos */
  71. iframe, embed, object, video {
  72. max-width: 100%;
  73. }
  74. /*=== Forms */
  75. legend {
  76. display: block;
  77. width: 100%;
  78. clear: both;
  79. }
  80. label {
  81. display: block;
  82. }
  83. input {
  84. width: 180px;
  85. }
  86. input[type=number] {
  87. width: 6em;
  88. }
  89. textarea,
  90. input[type="file"],
  91. input.long,
  92. input.extend:focus {
  93. width: 300px;
  94. }
  95. input, select, textarea {
  96. display: inline-block;
  97. max-width: 100%;
  98. font-size: 0.8rem;
  99. }
  100. input[type="radio"],
  101. input[type="checkbox"] {
  102. width: 15px !important;
  103. min-height: 15px !important;
  104. }
  105. .dropdown-menu label > input[type="text"] {
  106. width: 150px;
  107. width: calc(99% - 5em);
  108. }
  109. .dropdown-menu input[type="checkbox"] {
  110. margin-right: 1em;
  111. margin-left: .5em;
  112. }
  113. button.as-link,
  114. button.as-link:hover,
  115. button.as-link:active {
  116. background: transparent;
  117. color: inherit;
  118. font-size: 1.1em;
  119. border: none;
  120. cursor: pointer;
  121. text-align: right;
  122. }
  123. button.as-link[disabled] {
  124. color: #ddd !important;
  125. }
  126. /*=== Tables */
  127. table {
  128. max-width: 100%;
  129. }
  130. th.numeric,
  131. td.numeric {
  132. text-align: center;
  133. }
  134. /*=== COMPONENTS */
  135. /*===============*/
  136. [aria-hidden="true"] {
  137. display: none !important;
  138. }
  139. /*=== Forms */
  140. .form-group::after {
  141. content: "";
  142. display: block;
  143. clear: both;
  144. }
  145. .form-group.form-actions {
  146. min-width: 250px;
  147. }
  148. .form-group .group-name {
  149. display: block;
  150. float: right;
  151. width: 200px;
  152. }
  153. .form-group .group-controls {
  154. min-width: 250px;
  155. margin: 0 220px 0 0;
  156. }
  157. .form-group .group-controls .control {
  158. display: block;
  159. }
  160. @supports (position: sticky) {
  161. #mark-read-aside {
  162. position: sticky;
  163. top: 0;
  164. }
  165. }
  166. /*=== Buttons */
  167. .stick {
  168. display: inline-block;
  169. white-space: nowrap;
  170. }
  171. .btn,
  172. a.btn {
  173. display: inline-block;
  174. cursor: pointer;
  175. overflow: hidden;
  176. }
  177. .btn-important {
  178. font-weight: bold;
  179. }
  180. /*=== Navigation */
  181. .nav-list .nav-header,
  182. .nav-list .item {
  183. display: block;
  184. }
  185. .nav-list .item,
  186. .nav-list .item > a {
  187. display: block;
  188. overflow: hidden;
  189. white-space: nowrap;
  190. text-overflow: ellipsis;
  191. }
  192. .nav-head {
  193. display: block;
  194. }
  195. .nav-head .item {
  196. display: inline-block;
  197. }
  198. /*=== Horizontal-list */
  199. .horizontal-list {
  200. display: table;
  201. table-layout: fixed;
  202. width: 100%;
  203. }
  204. .horizontal-list .item {
  205. display: table-cell;
  206. }
  207. /*=== Dropdown */
  208. .dropdown {
  209. position: relative;
  210. display: inline-block;
  211. vertical-align: middle;
  212. }
  213. .dropdown-target {
  214. display: none;
  215. }
  216. .dropdown-menu {
  217. margin: 0;
  218. background: #fff;
  219. display: none;
  220. border: 1px solid #aaa;
  221. min-width: 200px;
  222. position: absolute;
  223. left: 0;
  224. }
  225. .dropdown-menu-scrollable {
  226. max-height: 75vh;
  227. overflow-x: hidden;
  228. overflow-y: auto;
  229. }
  230. .dropdown-header {
  231. display: block;
  232. }
  233. .dropdown-menu > .item {
  234. display: block;
  235. }
  236. .dropdown-menu > .item > a,
  237. .dropdown-menu > .item > .as-link,
  238. .dropdown-menu > .item > span {
  239. display: block;
  240. min-width: 200px;
  241. white-space: nowrap;
  242. }
  243. .dropdown-menu > .item[aria-checked="true"] > a::before {
  244. content: '✓';
  245. }
  246. .dropdown-menu .input {
  247. display: block;
  248. }
  249. .dropdown-menu .input select,
  250. .dropdown-menu .input input {
  251. display: block;
  252. max-width: 95%;
  253. }
  254. .dropdown-target:target ~ .dropdown-menu {
  255. display: block;
  256. z-index: 1000;
  257. }
  258. .dropdown-close {
  259. display: inline;
  260. }
  261. .dropdown-close a {
  262. display: block;
  263. font-size: 0;
  264. position: fixed;
  265. top: 0; bottom: 0;
  266. right: 0; left: 0;
  267. z-index: -11;
  268. cursor: default;
  269. }
  270. .dropdown div.dropdown-close {
  271. display: none;
  272. }
  273. .dropdown-target:target ~ div.dropdown-close {
  274. display: block;
  275. z-index: 999;
  276. position: relative;
  277. }
  278. .dropdown-menu-scrollable .dropdown-close {
  279. display: none;
  280. }
  281. .separator {
  282. display: block;
  283. height: 0;
  284. border-bottom: 1px solid #aaa;
  285. }
  286. /*=== Alerts */
  287. .alert {
  288. display: block;
  289. width: 90%;
  290. }
  291. .group-controls .alert {
  292. width: 100%
  293. }
  294. .alert-head {
  295. margin: 0;
  296. font-weight: bold;
  297. }
  298. .alert ul {
  299. margin: 5px 20px;
  300. }
  301. /*=== Icons */
  302. .icon {
  303. display: inline-block;
  304. width: 16px;
  305. height: 16px;
  306. vertical-align: middle;
  307. line-height: 16px;
  308. }
  309. /*=== Pagination */
  310. .pagination {
  311. margin: 0;
  312. padding: 0;
  313. display: table;
  314. width: 100%;
  315. table-layout: fixed;
  316. }
  317. .pagination .item {
  318. display: table-cell;
  319. }
  320. .pagination .pager-first,
  321. .pagination .pager-previous,
  322. .pagination .pager-next,
  323. .pagination .pager-last {
  324. width: 100px;
  325. }
  326. /*=== Boxes */
  327. .box {
  328. margin: 20px 10px;
  329. display: inline-block;
  330. max-width: 95%;
  331. width: 20rem;
  332. border: 1px solid #ccc;
  333. vertical-align: top;
  334. }
  335. .box .box-title {
  336. position: relative;
  337. font-size: 1.2rem;
  338. font-weight: bold;
  339. }
  340. .box .box-title form {
  341. margin: 0;
  342. }
  343. .box .box-content {
  344. display: block;
  345. overflow: auto;
  346. }
  347. .box .box-content .item {
  348. display: block;
  349. }
  350. .box .box-content .item.disabled {
  351. text-align: center;
  352. font-style: italic;
  353. }
  354. .box .box-content-centered {
  355. padding: 30px 5px;
  356. text-align: center;
  357. }
  358. .box .box-content-centered .btn {
  359. margin: 20px 0 0;
  360. }
  361. /*=== Draggable */
  362. .drag-hover {
  363. margin: 0 0 5px;
  364. border-bottom: 2px solid #ccc;
  365. }
  366. [draggable=true] {
  367. cursor: grab;
  368. }
  369. /*=== Scrollbar */
  370. @supports (scrollbar-width: thin) {
  371. #sidebar {
  372. overflow-y: auto;
  373. scrollbar-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.05);
  374. scrollbar-width: thin;
  375. }
  376. #sidebar:hover {
  377. scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.05);
  378. }
  379. }
  380. @supports not (scrollbar-width: thin) {
  381. #sidebar::-webkit-scrollbar {
  382. background: rgba(0, 0, 0, 0.05);
  383. width: 8px;
  384. }
  385. #sidebar::-webkit-scrollbar-thumb {
  386. background: rgba(0, 0, 0, 0.1);
  387. display: unset;
  388. border-radius: 5px;
  389. }
  390. #sidebar:hover::-webkit-scrollbar-thumb {
  391. background: rgba(0, 0, 0, 0.3);
  392. }
  393. }
  394. /*=== Tree */
  395. .tree {
  396. margin: 0;
  397. max-height: 99vh;
  398. list-style: none;
  399. text-align: right;
  400. overflow-x: hidden;
  401. }
  402. .tree-folder-items {
  403. padding: 0;
  404. max-height: 200em;
  405. list-style: none;
  406. transition: max-height .3s linear;
  407. }
  408. .tree-folder-title {
  409. display: block;
  410. overflow: hidden;
  411. white-space: nowrap;
  412. text-overflow: ellipsis;
  413. }
  414. .tree-folder-title .title {
  415. display: inline-block;
  416. width: 100%;
  417. vertical-align: middle;
  418. }
  419. .tree-folder-items > .item {
  420. display: block;
  421. white-space: nowrap;
  422. }
  423. .tree-folder-items > .item > a {
  424. display: inline-block;
  425. vertical-align: middle;
  426. width: calc(100% - 32px);
  427. overflow: hidden;
  428. white-space: nowrap;
  429. text-overflow: ellipsis;
  430. }
  431. .tree-bottom {
  432. visibility: hidden;
  433. margin-bottom: 18em;
  434. }
  435. /*=== STRUCTURE */
  436. /*===============*/
  437. /*=== Header */
  438. .header {
  439. display: table;
  440. width: 100%;
  441. table-layout: fixed;
  442. }
  443. .header > .item {
  444. display: table-cell;
  445. }
  446. .header > .item.title {
  447. width: 250px;
  448. white-space: nowrap;
  449. }
  450. .header > .item.title h1 {
  451. display: inline-block;
  452. }
  453. .header > .item.title .logo {
  454. display: inline-block;
  455. width: 32px;
  456. height: 32px;
  457. vertical-align: middle;
  458. }
  459. .header > .item.configure {
  460. width: 100px;
  461. }
  462. /*=== Body */
  463. #global {
  464. display: table;
  465. width: 100%;
  466. height: 100%;
  467. table-layout: fixed;
  468. }
  469. .aside {
  470. display: table-cell;
  471. width: 300px;
  472. vertical-align: top;
  473. }
  474. /*=== Aside main page */
  475. .aside_feed .category .title {
  476. width: calc(100% - 35px);
  477. }
  478. .aside_feed .tree-folder-title .icon {
  479. padding: 5px;
  480. }
  481. .aside_feed .tree-folder-items .item.feed {
  482. padding: 0px 15px;
  483. }
  484. .aside_feed .tree-folder-items:not(.active) {
  485. margin: 0;
  486. padding: 0;
  487. max-height: 0;
  488. border: none;
  489. overflow: hidden;
  490. }
  491. .aside_feed .tree-folder-items .dropdown {
  492. vertical-align: top;
  493. }
  494. .aside_feed .tree-folder-items .dropdown-menu {
  495. right: 0;
  496. }
  497. .aside_feed .tree-folder-items .item .dropdown-toggle > .icon {
  498. visibility: hidden;
  499. cursor: pointer;
  500. }
  501. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  502. .aside_feed .tree-folder-items .item:hover .dropdown-toggle > .icon,
  503. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  504. visibility: visible;
  505. }
  506. /*=== New article notification */
  507. #new-article {
  508. display: none;
  509. }
  510. #new-article > a {
  511. display: block;
  512. }
  513. /*=== Day indication */
  514. .day .name {
  515. position: absolute;
  516. left: 0;
  517. width: 50%;
  518. overflow: hidden;
  519. white-space: nowrap;
  520. text-overflow: ellipsis;
  521. }
  522. /*=== Feed article header and footer */
  523. .flux_header {
  524. position: relative;
  525. }
  526. .flux .item {
  527. line-height: 40px;
  528. white-space: nowrap;
  529. }
  530. .flux .item.manage,
  531. .flux .item.link {
  532. width: 40px;
  533. text-align: center;
  534. }
  535. .flux .item.website {
  536. width: 200px;
  537. }
  538. .flux.not_read .item.title,
  539. .flux.current .item.title {
  540. font-weight: bold;
  541. }
  542. .flux:not(.current):hover .item.title {
  543. background: #fff;
  544. max-width: calc(100% - 320px);
  545. position: absolute;
  546. }
  547. .flux .item.title a {
  548. color: #000;
  549. text-decoration: none;
  550. }
  551. .flux .item.title .author {
  552. padding-right: 1rem;
  553. color: #555;
  554. font-size: .9rem;
  555. font-weight: normal;
  556. }
  557. .flux .item.date {
  558. width: 155px;
  559. text-align: left;
  560. overflow: hidden;
  561. }
  562. .flux .item > a {
  563. display: block;
  564. text-decoration: none;
  565. white-space: nowrap;
  566. text-overflow: ellipsis;
  567. overflow: hidden;
  568. }
  569. .flux .item.share > a,
  570. .item.query > a {
  571. display: list-item;
  572. list-style-position: inside;
  573. list-style-type: decimal;
  574. }
  575. /*=== Feed article content */
  576. .hide_posts > .flux:not(.active) > .flux_content {
  577. display: none;
  578. }
  579. .content {
  580. min-height: 20em;
  581. margin: auto;
  582. line-height: 1.7em;
  583. word-wrap: break-word;
  584. }
  585. .content.large {
  586. max-width: 1000px;
  587. }
  588. .content.medium {
  589. max-width: 800px;
  590. }
  591. .content.thin {
  592. max-width: 550px;
  593. }
  594. .content ul,
  595. .content ol,
  596. .content dd {
  597. margin: 0 15px 0 0;
  598. padding: 0 15px 5px 0;
  599. }
  600. .content pre {
  601. overflow: auto;
  602. }
  603. br {
  604. line-height: 1em;
  605. }
  606. /*=== Notification and actualize notification */
  607. .notification {
  608. position: absolute;
  609. top: 1em;
  610. right: 25%; left: 25%;
  611. z-index: 10;
  612. background: #fff;
  613. border: 1px solid #aaa;
  614. opacity: 1;
  615. visibility: visible;
  616. transition: visibility 0s, opacity .3s linear;
  617. }
  618. .notification.closed {
  619. opacity: 0;
  620. visibility: hidden;
  621. }
  622. .notification a.close {
  623. position: absolute;
  624. top: 0; bottom: 0;
  625. left: 0;
  626. display: inline-block;
  627. }
  628. #actualizeProgress {
  629. position: fixed;
  630. }
  631. #actualizeProgress progress {
  632. max-width: 100%;
  633. vertical-align: middle;
  634. }
  635. #actualizeProgress .progress {
  636. vertical-align: middle;
  637. }
  638. /*=== Popup */
  639. #popup {
  640. display: none;
  641. position: fixed;
  642. z-index: 1;
  643. right: 0;
  644. top: 0;
  645. width: 100%;
  646. height: 100%;
  647. overflow: auto;
  648. background-color: #eee;
  649. background-color: rgba(0,0,0,0.4);
  650. }
  651. #popup-content {
  652. margin: 5rem auto;
  653. display: table;
  654. width: 80%;
  655. height: 80%;
  656. overflow: hidden;
  657. background-color: #fafafa;
  658. border-radius: .25rem;
  659. box-shadow: 0 0 1px #737373, -1px 2px 3px #4a4a4f;
  660. }
  661. .popup-row {
  662. display: table-row;
  663. width: 100%;
  664. }
  665. #popup-close {
  666. float: left;
  667. width: 27px;
  668. height: 27px;
  669. padding-bottom: 5px;
  670. color: #aaa;
  671. font-size: 28px;
  672. font-weight: bold;
  673. }
  674. #popup-close:hover,
  675. #popup-close:focus {
  676. color: #000;
  677. text-decoration: none;
  678. cursor: pointer;
  679. }
  680. #popup-txt {
  681. display: none;
  682. height: 100%;
  683. }
  684. #popup-iframe-container {
  685. display: none;
  686. height: 100%;
  687. }
  688. #popup-iframe-sub {
  689. padding: 10px;
  690. height: 100%;
  691. }
  692. #popup-iframe {
  693. width: 100%;
  694. height: 100%;
  695. }
  696. /*=== Navigation menu (for articles) */
  697. #nav_entries {
  698. background: #fff;
  699. display: table;
  700. position: fixed;
  701. bottom: 0; right: 0;
  702. width: 300px;
  703. table-layout: fixed;
  704. }
  705. #nav_entries .item {
  706. display: table-cell;
  707. width: 30%;
  708. }
  709. #nav_entries a {
  710. display: block;
  711. }
  712. /*=== "Load more" part */
  713. #load_more {
  714. min-height: 40px;
  715. }
  716. .loading {
  717. background: url("loader.gif") center center no-repeat;
  718. font-size: 0;
  719. }
  720. #bigMarkAsRead {
  721. margin: 0 0 100% 0;
  722. margin: 0 0 100vh 0;
  723. padding: 1em 0 50px 0;
  724. display: block;
  725. width: 100%;
  726. text-align: center;
  727. font-size: 1.4em;
  728. }
  729. .bigTick {
  730. font-size: 4em;
  731. }
  732. /*=== Statistiques */
  733. .stat {
  734. margin: 15px 0;
  735. }
  736. .stat.half {
  737. padding: 0 2%;
  738. display: inline-block;
  739. width: 46%;
  740. }
  741. .stat > table {
  742. width: 100%;
  743. }
  744. .statGraph {
  745. height: 300px;
  746. }
  747. /*=== LOGIN VIEW */
  748. /*================*/
  749. .formLogin .header > .item {
  750. padding: 10px 30px;
  751. }
  752. .formLogin .header > .item.title {
  753. text-align: right;
  754. }
  755. .formLogin .header > .item.configure {
  756. text-align: left;
  757. }
  758. /*=== GLOBAL VIEW */
  759. /*================*/
  760. #stream.global {
  761. text-align: center;
  762. }
  763. #stream.global .box {
  764. text-align: right;
  765. }
  766. #global > #panel {
  767. bottom: 99vh;
  768. display: block;
  769. transition: visibility .3s, bottom .3s;
  770. visibility: hidden;
  771. }
  772. #global > #panel.visible {
  773. bottom: 1em;
  774. visibility: visible;
  775. }
  776. /*=== Panel */
  777. #overlay {
  778. position: fixed;
  779. top: 0; bottom: 0;
  780. right: 0; left: 0;
  781. background: rgba(0, 0, 0, 0.9);
  782. opacity: 0;
  783. transition: visibility .3s, opacity .3s;
  784. visibility: hidden;
  785. }
  786. #overlay.visible {
  787. opacity: 1;
  788. visibility: visible;
  789. }
  790. #panel {
  791. background: #fff;
  792. display: none;
  793. position: fixed;
  794. top: 1em; bottom: 1em;
  795. right: 2em; left: 2em;
  796. overflow: auto;
  797. }
  798. #overlay .close {
  799. position: fixed;
  800. top: 0; bottom: 0;
  801. right: 0; left: 0;
  802. display: block;
  803. }
  804. #overlay .close img {
  805. display: none;
  806. }
  807. /*=== Slider */
  808. #slider {
  809. position: fixed;
  810. top: 0; bottom: 0;
  811. right: 100%; left: 0;
  812. overflow: auto;
  813. background: #fff;
  814. border-right: 1px solid #aaa;
  815. transition: right 200ms linear;
  816. }
  817. #slider.active {
  818. right: 40%;
  819. }
  820. #close-slider {
  821. position: fixed;
  822. top: 0; bottom: 0;
  823. right: 100%; left: 0;
  824. cursor: pointer;
  825. }
  826. #close-slider.active {
  827. right: 0;
  828. }
  829. /*=== SLIDESHOW */
  830. /*==============*/
  831. .slides {
  832. padding: 0;
  833. display: block;
  834. max-width: 640px;
  835. height: 320px;
  836. border: 1px solid #aaa;
  837. position: relative;
  838. min-width: 260px;
  839. margin-bottom: 30px;
  840. }
  841. .slides input {
  842. display: none;
  843. }
  844. .slide-container {
  845. display: block;
  846. }
  847. .slide {
  848. display: block;
  849. width: 100%;
  850. height: 100%;
  851. top: 0;
  852. opacity: 0;
  853. position: absolute;
  854. transform: scale(0);
  855. transition: all .7s ease-in-out;
  856. }
  857. .slide img {
  858. width: 100%;
  859. height: 100%;
  860. }
  861. .nav label {
  862. padding: 0;
  863. display: none;
  864. width: 10%;
  865. height: 100%;
  866. color: #fff;
  867. font-family: "Varela Round", sans-serif;
  868. font-size: 1000%;
  869. position: absolute;
  870. opacity: 0;
  871. z-index: 9;
  872. cursor: pointer;
  873. transition: opacity .2s;
  874. text-align: center;
  875. line-height: 225%;
  876. background-color: rgba(255, 255, 255, .3);
  877. text-shadow: 0px 0px 15px rgb(119, 119, 119);
  878. }
  879. .properties {
  880. padding: 5px;
  881. background: rgba(255, 255, 255, 0.7);
  882. display: none;
  883. color: #000;
  884. border-top: 1px solid #aaa;
  885. bottom: 0;
  886. right: 0; left: 0;
  887. position: absolute;
  888. z-index: 10;
  889. }
  890. .properties .page-number {
  891. left: 5px;
  892. top: 0;
  893. position: absolute;
  894. }
  895. .slide:hover + .nav label {
  896. opacity: 0.5;
  897. }
  898. .nav label:hover {
  899. opacity: 1;
  900. }
  901. .nav .next {
  902. left: 0;
  903. }
  904. input:checked + .slide-container .slide {
  905. opacity: 1;
  906. transform: scale(1);
  907. transition: opacity 1s ease-in-out;
  908. }
  909. input:checked + .slide-container .nav label {
  910. display: block;
  911. }
  912. input:checked + .slide-container .properties {
  913. display: block;
  914. }
  915. /*=== DIVERS */
  916. /*===========*/
  917. .category .title:not([data-unread="0"])::after {
  918. content: attr(data-unread);
  919. }
  920. .category .title.error::before {
  921. content: "⚠ ";
  922. color: #bd362f;
  923. }
  924. .feed .item-title:not([data-unread="0"])::before {
  925. content: "(" attr(data-unread) ") ";
  926. }
  927. .feed .item-title:not([data-unread="0"]) {
  928. font-weight: bold;
  929. }
  930. .state_unread .category:not(.active)[data-unread="0"],
  931. .state_unread .feed:not(.active)[data-unread="0"] {
  932. display: none;
  933. }
  934. .nav-login,
  935. .nav_menu .search,
  936. .aside .toggle_aside,
  937. .nav_menu .toggle_aside {
  938. display: none;
  939. }
  940. .enclosure [download] {
  941. font-size: xx-large;
  942. margin-right: .8em;
  943. }
  944. pre.enclosure-description {
  945. white-space: pre-line;
  946. }
  947. /*=== READER */
  948. /*===========*/
  949. .reader .nav_menu .toggle_aside {
  950. display: inline-block;
  951. }
  952. .reader .aside .toggle_aside {
  953. display: block;
  954. width: 100%;
  955. }
  956. .reader .aside {
  957. width: 0;
  958. }
  959. .reader .aside:target {
  960. width: 300px;
  961. }
  962. .reader .aside .stick {
  963. display: none;
  964. }
  965. /*=== MOBILE */
  966. /*===========*/
  967. @media (max-width: 840px) {
  968. .header,
  969. .aside .btn-important,
  970. .flux_header .item.website span,
  971. .item.date, .day .date,
  972. .dropdown-menu > .no-mobile,
  973. .no-mobile {
  974. display: none;
  975. }
  976. .dropdown .dropdown-menu {
  977. width: 100%;
  978. border-radius: 0;
  979. bottom: 0;
  980. position: fixed;
  981. }
  982. .dropdown-menu::after {
  983. display: none;
  984. }
  985. .aside .toggle_aside,
  986. .nav-login {
  987. display: block;
  988. }
  989. .nav_menu .toggle_aside,
  990. .nav_menu .search,
  991. #panel .close img {
  992. display: inline-block;
  993. }
  994. .aside {
  995. position: fixed;
  996. top: 0; bottom: 0;
  997. right: 0;
  998. width: 0;
  999. overflow: hidden;
  1000. z-index: 100;
  1001. }
  1002. .aside:target {
  1003. width: 90%;
  1004. }
  1005. .flux_header .item.website {
  1006. width: 40px;
  1007. }
  1008. .flux:not(.current):hover .item.title {
  1009. position: relative;
  1010. width: auto;
  1011. white-space: nowrap;
  1012. }
  1013. .notification {
  1014. top: 0;
  1015. right: 0;
  1016. left: 0;
  1017. }
  1018. #nav_entries {
  1019. width: 100%;
  1020. }
  1021. #panel {
  1022. top: 25px; bottom: 30px;
  1023. right: 0; left: 0;
  1024. }
  1025. #panel .close {
  1026. top: 0; left: 0;
  1027. right: auto; bottom: auto;
  1028. display: inline-block;
  1029. width: 30px;
  1030. height: 30px;
  1031. }
  1032. }
  1033. /*=== PRINTER */
  1034. /*============*/
  1035. @media print {
  1036. .header, .aside,
  1037. .nav_menu, .day,
  1038. .flux_header,
  1039. .flux_content .bottom,
  1040. .pagination,
  1041. #nav_entries {
  1042. display: none;
  1043. }
  1044. html, body {
  1045. background: #fff;
  1046. color: #000;
  1047. font-family: Serif;
  1048. }
  1049. #global,
  1050. .flux_content {
  1051. display: block !important;
  1052. }
  1053. .flux_content .content {
  1054. width: 100% !important;
  1055. }
  1056. .flux_content .content a {
  1057. color: #000;
  1058. }
  1059. .flux_content .content a::after {
  1060. content: " [" attr(href) "] ";
  1061. font-style: italic;
  1062. }
  1063. }
  1064. /*=== PREVIEW */
  1065. /*===========*/
  1066. .preview_controls {
  1067. margin-right: auto;
  1068. margin-left: auto;
  1069. padding: 1rem;
  1070. max-width: 1000px;
  1071. text-align: center;
  1072. background-color: #eee;
  1073. border: 1px solid #e0e0e0;
  1074. border-radius: .25rem;
  1075. }
  1076. .preview_controls label {
  1077. display: inline;
  1078. }
  1079. .preview_controls label input[type="radio"] {
  1080. margin-top: -4px;
  1081. }
  1082. .preview_controls label + label {
  1083. margin-right: 1rem;
  1084. }
  1085. .preview_background {
  1086. background-color: transparent;
  1087. }