template.rtl.css 19 KB

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