frss.rtl.css 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265
  1. @charset "UTF-8";
  2. /*=== GENERAL */
  3. /*============*/
  4. :root {
  5. --frss-font-color-dark: #000;
  6. --frss-font-color-grey-dark: #666;
  7. --frss-font-color-grey-light: #aaa;
  8. --frss-font-color-light: #fff;
  9. --frss-background-color-error-transparent: #ff000040;
  10. --frss-font-color-error: #f00;
  11. --frss-background-color: #fff;
  12. --frss-background-color-transparent: #ffffff7f;
  13. --frss-background-color-middle: #eee;
  14. --frss-background-color-dark: #ccc;
  15. --frss-border-color: #999;
  16. --frss-border-color-error: #f00;
  17. --frss-switch-accent-color: #85d885;
  18. --frss-dragdrop-color: #ff0;
  19. --frss-dragdrop-color-transparent: #ff02;
  20. --frss-noThumbnailImage-background-color: #ddd;
  21. --frss-darken-background-hover-transparent: #6662;
  22. --frss-modal-background-color-transparent: #0007;
  23. --frss-box-shadow-color-transparent: #0003;
  24. --frss-scrollbar-handle: #0002;
  25. --frss-scrollbar-handle-hover: #0005;
  26. --frss-scrollbar-track: #0001;
  27. --frss-scrollbar-track-hover: #0001;
  28. --frss-loading-image: url("loader.gif");
  29. --frss-padding-flux-items: 0.75rem;
  30. --frss-padding-top-bottom: 0.5rem;
  31. line-height: 1.5;
  32. }
  33. @font-face {
  34. font-family: 'OpenSans';
  35. font-style: normal;
  36. font-weight: 400;
  37. src: local('Open Sans'), local('OpenSans'),
  38. url('../fonts/OpenSans.woff2') format('woff2'),
  39. url('../fonts/OpenSans.woff') format('woff');
  40. }
  41. html, body {
  42. margin: 0;
  43. padding: 0;
  44. background-color: var(--frss-background-color);
  45. height: 100%;
  46. font-family: "OpenSans", "Cantarell", "Helvetica", "Arial", sans-serif;
  47. font-size: 100%;
  48. }
  49. main.prompt {
  50. margin: 3rem auto;
  51. padding: 2rem;
  52. max-width: 400px;
  53. min-width: 300px;
  54. width: 33%;
  55. text-align: center;
  56. }
  57. /*=== Links */
  58. a {
  59. text-decoration: none;
  60. }
  61. a:hover {
  62. text-decoration: underline;
  63. }
  64. /*=== Lists */
  65. ul, ol, dd {
  66. margin: 0;
  67. padding: 0;
  68. }
  69. /*=== Titles */
  70. h1 {
  71. margin: 1rem 0 0.5rem;
  72. font-size: 1.6rem;
  73. line-height: 1.5;
  74. }
  75. h2 {
  76. margin: 0.5rem 0 0.25rem;
  77. font-size: 1.4rem;
  78. line-height: 1.5;
  79. }
  80. h2 .icon,
  81. legend .icon {
  82. height: 0.8em;
  83. vertical-align: baseline;
  84. }
  85. h3 {
  86. margin: 0.5rem 0 0.25rem;
  87. font-size: 1.2rem;
  88. line-height: 1.5;
  89. }
  90. .title_hidden {
  91. display: none;
  92. }
  93. /*=== Paragraphs */
  94. p {
  95. margin: 1rem 0 0.5rem;
  96. }
  97. p.help, .prompt p.help {
  98. margin: 0.25rem 0 0.5rem;
  99. text-align: right;
  100. }
  101. p.help .icon {
  102. filter: brightness(2);
  103. }
  104. kbd {
  105. background-color: var(--frss-background-color-middle);
  106. padding: 0 0.5rem 0 0.5rem;
  107. display: inline-block;
  108. color: var(--frss-font-color-grey-dark);
  109. font-size: 0.9rem;
  110. border: 1px solid var(--frss-border-color);
  111. border-radius: 3px;
  112. white-space: pre-wrap;
  113. overflow-wrap: anywhere;
  114. }
  115. /*=== Images */
  116. img {
  117. max-width: 100%;
  118. height: auto;
  119. }
  120. img.favicon {
  121. margin: 0 0 0 0.25rem;
  122. width: 1rem;
  123. height: 1rem;
  124. vertical-align: middle;
  125. }
  126. .content.thin figure,
  127. .content.medium figure {
  128. margin: 8px 0px;
  129. }
  130. .content figure figcaption {
  131. font-style: italic;
  132. }
  133. .feed.mute::before {
  134. content: '🔇';
  135. }
  136. /*=== Videos */
  137. audio, iframe, embed, object, video {
  138. max-width: 100%;
  139. }
  140. audio {
  141. width: 100%;
  142. }
  143. /*=== Forms */
  144. fieldset {
  145. margin: 0;
  146. padding: 0;
  147. border: 0;
  148. }
  149. legend {
  150. display: block;
  151. width: 100%;
  152. clear: both;
  153. }
  154. label {
  155. display: block;
  156. }
  157. input {
  158. width: 180px;
  159. }
  160. input[type=number] {
  161. width: 6em;
  162. }
  163. textarea,
  164. input[type="file"],
  165. input.long,
  166. input.extend:focus {
  167. width: 300px;
  168. }
  169. input, select, textarea {
  170. display: inline-block;
  171. max-width: 100%;
  172. font-size: 0.8rem;
  173. }
  174. input.w50,
  175. select.w50,
  176. textarea.w50 {
  177. min-width: 50%;
  178. box-sizing: border-box;
  179. }
  180. input.w100,
  181. select.w100,
  182. textarea.w100 {
  183. width: 100%;
  184. box-sizing: border-box;
  185. }
  186. .stick.w50 {
  187. width: 50%;
  188. }
  189. .stick.w100 {
  190. width: 100%;
  191. }
  192. .stick.w50 input,
  193. .stick.w100 input {
  194. width: 100%;
  195. }
  196. .stick.w100 input + .btn {
  197. width: 29px;
  198. padding-right: 3px;
  199. padding-left: 3px;
  200. text-align: center;
  201. }
  202. textarea[rows="2"] {
  203. height: 4em;
  204. }
  205. textarea:invalid {
  206. border: 2px dashed var(--frss-border-color-error);
  207. }
  208. .prompt textarea,
  209. .prompt input,
  210. .prompt select,
  211. .prompt .stick {
  212. margin: 5px auto;
  213. width: 100%;
  214. box-sizing: border-box;
  215. }
  216. input:disabled,
  217. select:disabled {
  218. background-color: transparent;
  219. min-width: 75px;
  220. color: var(--frss-font-color-grey-light);
  221. font-style: italic;
  222. border: 1px dashed var(--frss-border-color);
  223. }
  224. input[type="radio"],
  225. input[type="checkbox"] {
  226. min-width: auto;
  227. width: 15px !important;
  228. min-height: 15px !important;
  229. }
  230. .dropdown-menu label > input[type="text"] {
  231. width: 150px;
  232. width: calc(99% - 5em);
  233. }
  234. .dropdown-menu .item > a:hover,
  235. .dropdown-menu .item > button:hover {
  236. text-decoration: none;
  237. }
  238. .dropdown-menu input[type="checkbox"] {
  239. margin-right: 1em;
  240. margin-left: .5em;
  241. }
  242. .dropdown-menu .item .checkboxNewTag {
  243. display: none;
  244. }
  245. .dropdown-menu .item.addItem {
  246. padding: 0 0.5em;
  247. }
  248. .dropdown-menu .item.addItem .stick {
  249. width: 100%
  250. }
  251. .dropdown-menu .item.addItem .stick input[type=text] {
  252. width: 100%;
  253. }
  254. button.as-link,
  255. button.as-link:hover,
  256. button.as-link:active {
  257. background: transparent;
  258. color: inherit;
  259. font-size: 1.1rem;
  260. border: none;
  261. cursor: pointer;
  262. text-align: right;
  263. }
  264. button.as-link[disabled] {
  265. color: var(--frss-font-color-grey-light) !important;
  266. }
  267. /*=== Tables */
  268. .table-wrapper {
  269. overflow-x: auto;
  270. }
  271. table {
  272. margin: 0.5rem 0;
  273. max-width: 100%;
  274. }
  275. th, td {
  276. padding: 0.5rem;
  277. }
  278. th.numeric,
  279. td.numeric {
  280. text-align: center;
  281. }
  282. /*=== COMPONENTS */
  283. /*===============*/
  284. [aria-hidden="true"] {
  285. display: none !important;
  286. }
  287. /* prompt: login + register form + alert message banner */
  288. .prompt {
  289. text-align: center;
  290. }
  291. .prompt form {
  292. margin-top: 2rem;
  293. margin-bottom: 3rem;
  294. text-align: right;
  295. }
  296. .prompt label,
  297. .prompt .help {
  298. text-align: right;
  299. }
  300. .prompt input,
  301. .prompt select,
  302. .prompt .stick {
  303. width: 100%;
  304. box-sizing: border-box;
  305. }
  306. .prompt p {
  307. margin: 20px 0;
  308. }
  309. /*=== Forms */
  310. .form-group::after {
  311. content: "";
  312. display: block;
  313. clear: both;
  314. }
  315. .form-group.form-actions {
  316. min-width: 250px;
  317. }
  318. .form-group .group-name {
  319. display: block;
  320. float: right;
  321. width: 200px;
  322. text-align: left;
  323. }
  324. .form-group .group-controls {
  325. min-width: 250px;
  326. margin: 0 220px 0 0;
  327. overflow-x: auto;
  328. }
  329. .form-group .group-controls .control {
  330. display: block;
  331. }
  332. .form-advanced-title {
  333. padding: 15px 0;
  334. width: 200px;
  335. font-weight: bold;
  336. text-align: left;
  337. cursor: pointer;
  338. }
  339. @supports (position: sticky) {
  340. #mark-read-aside {
  341. position: sticky;
  342. top: 0;
  343. }
  344. }
  345. /*=== Buttons */
  346. .stick {
  347. display: inline-flex;
  348. max-width: 100%;
  349. white-space: nowrap;
  350. vertical-align: middle;
  351. }
  352. .stick > input {
  353. margin-top: 0;
  354. margin-bottom: 0;
  355. }
  356. .stick > input.long {
  357. flex-shrink: 1;
  358. }
  359. .stick > .btn {
  360. flex-shrink: 0;
  361. }
  362. .stick form {
  363. display: inline-flex;
  364. }
  365. .btn,
  366. a.btn {
  367. display: inline-block;
  368. cursor: pointer;
  369. overflow: hidden;
  370. }
  371. .btn-important {
  372. font-weight: bold;
  373. }
  374. /*=== switch */
  375. .switch {
  376. margin: 0 0.5em;
  377. padding: revert;
  378. position: relative;
  379. width: 3.5em;
  380. height: 1.75em;
  381. border: 0;
  382. border-radius: 1em;
  383. background-color: var(--frss-background-color-dark);
  384. cursor: pointer;
  385. box-sizing: content-box;
  386. background-repeat: no-repeat;
  387. background-position: center center;
  388. background-image: url('../icons/disabled.svg');
  389. transition: background-position 0.5s;
  390. }
  391. .switch:not([disabled]):hover {
  392. background-image: url('../icons/enabled.svg');
  393. background-repeat: no-repeat;
  394. background-position: left 7px center;
  395. }
  396. .switch.active {
  397. background-color: var(--frss-switch-accent-color);
  398. background-repeat: no-repeat;
  399. background-position: center center;
  400. background-image: url('../icons/enabled.svg');
  401. }
  402. .switch.active:not([disabled]):hover {
  403. background-position: right 7px center;
  404. background-repeat: no-repeat;
  405. background-image: url('../icons/disabled.svg');
  406. }
  407. @supports selector(.switch::before) {
  408. .switch {
  409. background-image: none;
  410. }
  411. .switch.active {
  412. background-image: none;
  413. }
  414. }
  415. /* ::before = circle */
  416. .switch::before {
  417. content: "";
  418. position: absolute;
  419. right: 5px;
  420. left: unset;
  421. top: 0.2em;
  422. width: 1.5em;
  423. height: 1.5em;
  424. background-color: var(--frss-background-color);
  425. background-image: url('../icons/disabled.svg');
  426. background-repeat: no-repeat;
  427. background-position: center center;
  428. border-radius: 50%;
  429. transition: right 0.6s, left 0.6s;
  430. }
  431. .switch:not([disabled]):hover::before {
  432. background-color: var(--frss-background-color-middle);
  433. }
  434. .switch.active::before {
  435. background-image: url('../icons/enabled.svg');
  436. background-position: center center;
  437. right: unset;
  438. left: 5px;
  439. }
  440. .switch.active:not([disabled]):hover::before {
  441. left: 8px;
  442. }
  443. /* ::after = background */
  444. .switch::after {
  445. content: "";
  446. position: absolute;
  447. top: 50%;
  448. left: 8px;
  449. width: 12px;
  450. height: 12px;
  451. transform: translateY(-50%);
  452. }
  453. .switch.active::after {
  454. width: 14px;
  455. height: 14px;
  456. right: 8px;
  457. }
  458. .btn:focus-visible,
  459. input[type="checkbox"]:focus-visible {
  460. outline: 2px solid var(--frss-border-color);
  461. }
  462. /*=== Navigation */
  463. .nav-list .nav-header,
  464. .nav-list .item {
  465. display: block;
  466. }
  467. .nav-list .item,
  468. .nav-list .item > a,
  469. .nav-list .item > span {
  470. display: block;
  471. overflow: hidden;
  472. white-space: nowrap;
  473. text-overflow: ellipsis;
  474. }
  475. /*=== Horizontal-list */
  476. .horizontal-list {
  477. margin: 0;
  478. padding: 0;
  479. display: table;
  480. table-layout: fixed;
  481. width: 100%;
  482. }
  483. .horizontal-list .item {
  484. display: table-cell;
  485. vertical-align: middle;
  486. }
  487. .horizontal-list .item .item-element {
  488. padding: var(--frss-padding-top-bottom) 0;
  489. }
  490. /*=== manage-list */
  491. .manage-list {
  492. list-style: none;
  493. }
  494. .manage-list li {
  495. line-height: 2;
  496. }
  497. .manage-list li * {
  498. vertical-align: middle;
  499. }
  500. .manage-list .disabled {
  501. font-style: italic;
  502. }
  503. /*=== Dropdown */
  504. .dropdown {
  505. position: relative;
  506. display: inline-block;
  507. vertical-align: middle;
  508. }
  509. .dropdown-target {
  510. display: none;
  511. }
  512. .dropdown-menu {
  513. margin: 0;
  514. background-color: var(--frss-background-color);
  515. display: none;
  516. border: 1px solid var(--frss-border-color);
  517. min-width: 200px;
  518. position: absolute;
  519. left: 0;
  520. }
  521. .dropdown-menu::after {
  522. background-color: inherit;
  523. width: 10px;
  524. height: 10px;
  525. border-width: 1px 1px 0 0;
  526. border-style: solid;
  527. border-color: var(--frss-border-color);
  528. content: "";
  529. position: absolute;
  530. top: -6px;
  531. left: 13px;
  532. z-index: -10;
  533. transform: rotate(-45deg);
  534. }
  535. .dropdown-menu-scrollable {
  536. max-height: min(75vh, 50em);
  537. overflow-x: hidden;
  538. overflow-y: auto;
  539. }
  540. .dropdown-header {
  541. display: block;
  542. }
  543. .dropdown-menu .item {
  544. display: block;
  545. }
  546. .dropdown-menu .item > a,
  547. .dropdown-menu .item > .as-link,
  548. .dropdown-menu .item > span {
  549. display: block;
  550. width: 100%;
  551. white-space: nowrap;
  552. box-sizing: border-box;
  553. }
  554. .dropdown-menu > .item[aria-checked="true"] > a::before {
  555. content: '✓';
  556. }
  557. .dropdown-menu .input {
  558. display: block;
  559. }
  560. .dropdown-menu .input select,
  561. .dropdown-menu .input input {
  562. display: block;
  563. max-width: 95%;
  564. }
  565. .dropdown-target:target ~ .dropdown-menu {
  566. display: block;
  567. z-index: 1000;
  568. }
  569. .dropdown-menu + .dropdown-close {
  570. display: none;
  571. }
  572. .dropdown-target:target ~ .dropdown-close {
  573. display: block;
  574. font-size: 0;
  575. position: fixed;
  576. top: 0; bottom: 0;
  577. right: 0; left: 0;
  578. z-index: 999;
  579. cursor: default;
  580. }
  581. .item ~ .dropdown-header,
  582. .dropdown-section ~ .dropdown-section,
  583. .item.separator {
  584. margin-top: 5px;
  585. padding-top: 5px;
  586. border-top-width: 1px;
  587. border-top-style: solid;
  588. }
  589. /*=== Alerts */
  590. .alert {
  591. display: block;
  592. width: 90%;
  593. }
  594. .alert-warn {
  595. background: inherit;
  596. }
  597. .group-controls .alert {
  598. width: 100%
  599. }
  600. .alert-head {
  601. margin: 0;
  602. font-weight: bold;
  603. }
  604. .alert ul {
  605. margin: 5px 20px;
  606. }
  607. .alert.hide {
  608. display: none;
  609. }
  610. /*=== Icons */
  611. .icon {
  612. display: inline-block;
  613. max-width: none;
  614. height: 1rem;
  615. vertical-align: middle;
  616. line-height: 1;
  617. }
  618. /* === stream-footer **/
  619. #stream-footer {
  620. margin: 0 0 5em;
  621. padding: 1em 0;
  622. width: 100%;
  623. border-top: 1px solid var(--frss-border-color);
  624. text-align: center;
  625. }
  626. /*=== Pagination */
  627. .nav-pagination {
  628. margin: 2em auto;
  629. }
  630. .pagination {
  631. margin: 0 auto;
  632. padding: 0;
  633. display: table;
  634. table-layout: fixed;
  635. text-align: center;
  636. }
  637. .pagination .item {
  638. display: table-cell;
  639. width: 3em;
  640. font-style: italic;
  641. }
  642. .pagination .item.active {
  643. min-width: 3em;
  644. font-weight: bold;
  645. font-style: normal;
  646. }
  647. .pagination .item a {
  648. display: block;
  649. text-decoration: none;
  650. }
  651. .pagination .pager-previous,
  652. .pagination .pager-next {
  653. width: 6em;
  654. }
  655. .pagination .pager-first,
  656. .pagination .pager-last {
  657. width: 7.5em;
  658. }
  659. /*=== Boxes */
  660. .box {
  661. margin: 20px 0 20px 20px;
  662. display: inline-block;
  663. max-width: 95%;
  664. width: 20rem;
  665. vertical-align: top;
  666. }
  667. .box.visible-semi {
  668. border-style: dashed;
  669. opacity: 0.5;
  670. }
  671. .box .box-title {
  672. position: relative;
  673. }
  674. .box .box-title h2 {
  675. display: inline;
  676. font-size: 1.2rem;
  677. font-weight: bold;
  678. }
  679. .box .box-title form {
  680. margin: 0;
  681. }
  682. .box .box-content {
  683. padding: 8px 16px 8px 8px;
  684. display: block;
  685. min-height: 2.5em;
  686. max-height: 260px;
  687. overflow: auto;
  688. }
  689. .box .box-content .item.feed {
  690. display: block;
  691. padding-top: var(--frss-padding-top-bottom);
  692. }
  693. .box .box-content .item.feed.moved {
  694. font-style: italic;
  695. }
  696. .box .box-content .item.feed.moved .favicon {
  697. opacity: 0.4;
  698. }
  699. .box .box-content .item.disabled {
  700. text-align: center;
  701. font-style: italic;
  702. }
  703. .box .box-content-centered {
  704. padding: 30px 5px;
  705. text-align: center;
  706. }
  707. .box .box-content-centered .btn {
  708. margin: 20px 0 0;
  709. }
  710. /*=== Draggable */
  711. [draggable=true]:hover {
  712. cursor: move;
  713. }
  714. .dragging {
  715. background-color: var(--frss-dragdrop-color)
  716. }
  717. .dragging .icon {
  718. visibility: hidden;
  719. }
  720. .drag-disallowed {
  721. opacity: 0.5;
  722. }
  723. .drag-active .drop-zone:not(.drag-disallowed) {
  724. background: repeating-linear-gradient(-45deg, transparent, transparent 40px, var(--frss-dragdrop-color-transparent) 40px, var(--frss-dragdrop-color-transparent) 60px);
  725. }
  726. .drag-active .drag-hover.drop-zone {
  727. background-color: var(--frss-dragdrop-color-transparent);
  728. transition: background 0.5s;
  729. }
  730. li.drag-hover {
  731. margin: 0 0 5px;
  732. border-bottom: 2px solid var(--frss-border-color);
  733. }
  734. .drag-drop {
  735. animation-name: droppedKeyframe;
  736. animation-duration: 0.7s;
  737. }
  738. @keyframes droppedKeyframe {
  739. 0% {
  740. background-color: var(--frss-dragdrop-color-transparent);
  741. }
  742. 50% {
  743. background-color: var(--frss-dragdrop-color);
  744. }
  745. 100% {
  746. background-color: none;
  747. }
  748. }
  749. /*=== Scrollbar */
  750. @supports (scrollbar-width: thin) {
  751. #sidebar,
  752. .scrollbar-thin {
  753. scrollbar-color: var(--frss-scrollbar-handle) var(--frss-scrollbar-track);
  754. scrollbar-width: thin;
  755. }
  756. #sidebar:hover,
  757. .scrollbar-thin:hover {
  758. scrollbar-color: var(--frss-scrollbar-handle-hover) var(--frss-scrollbar-track-hover);
  759. }
  760. }
  761. @supports not (scrollbar-width: thin) {
  762. #sidebar::-webkit-scrollbar,
  763. .scrollbar-thin::-webkit-scrollbar {
  764. background-color: var(--frss-scrollbar-track);
  765. width: 8px;
  766. }
  767. #sidebar:hover::-webkit-scrollbar,
  768. .scrollbar-thin:hover::-webkit-scrollbar {
  769. background-color: var(--frss-scrollbar-track-hover);
  770. }
  771. #sidebar::-webkit-scrollbar-thumb,
  772. .scrollbar-thin::-webkit-scrollbar-thumb {
  773. background-color: var(--frss-scrollbar-handle);
  774. display: unset;
  775. border-radius: 5px;
  776. }
  777. #sidebar:hover::-webkit-scrollbar-thumb,
  778. .scrollbar-thin:hover::-webkit-scrollbar-thumb {
  779. background-color: var(--frss-scrollbar-handle-hover);
  780. }
  781. }
  782. /*=== Tree */
  783. .tree {
  784. margin: 0;
  785. max-height: 99vh;
  786. list-style: none;
  787. text-align: right;
  788. overflow-x: hidden;
  789. }
  790. .tree-folder-items {
  791. padding: 0;
  792. list-style: none;
  793. transition: max-height .3s linear;
  794. }
  795. .tree-folder-title {
  796. padding-top: var(--frss-padding-top-bottom);
  797. padding-bottom: var(--frss-padding-top-bottom);
  798. }
  799. .tree-folder-title .title {
  800. display: inline-block;
  801. width: 100%;
  802. vertical-align: middle;
  803. overflow: hidden;
  804. white-space: nowrap;
  805. text-overflow: ellipsis;
  806. }
  807. .tree-folder-items > .item {
  808. display: block;
  809. white-space: nowrap;
  810. }
  811. .tree-folder-items > .item > a {
  812. display: inline-block;
  813. vertical-align: middle;
  814. width: calc(100% - 32px);
  815. overflow: hidden;
  816. white-space: nowrap;
  817. text-overflow: ellipsis;
  818. }
  819. .tree-folder-items .item.feed {
  820. position: relative;
  821. }
  822. .tree-bottom {
  823. visibility: hidden;
  824. margin-bottom: 18em;
  825. }
  826. /*=== STRUCTURE */
  827. /*===============*/
  828. /*=== Header */
  829. .header {
  830. display: table;
  831. width: 100%;
  832. height: calc(2rem + 2 * var(--frss-padding-top-bottom));
  833. table-layout: fixed;
  834. }
  835. .header > .item {
  836. padding-top: var(--frss-padding-top-bottom);
  837. padding-bottom: var(--frss-padding-top-bottom);
  838. display: table-cell;
  839. }
  840. .header > .item.title {
  841. width: 250px;
  842. white-space: nowrap;
  843. }
  844. .header > .item.title h1 {
  845. display: inline-block;
  846. }
  847. .header > .item.title .logo {
  848. display: inline-block;
  849. height: 2rem;
  850. vertical-align: middle;
  851. }
  852. .header > .item.configure {
  853. width: 100px;
  854. }
  855. input[type="search"] {
  856. -webkit-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
  857. }
  858. /*=== Body */
  859. #global {
  860. background: inherit;
  861. display: table;
  862. width: 100%;
  863. height: calc(100vh - (calc(2rem + 2 * var(--frss-padding-top-bottom))));
  864. table-layout: fixed;
  865. }
  866. #stream:not(.alert-warn) {
  867. background: inherit;
  868. }
  869. .aside {
  870. display: table-cell;
  871. width: 300px;
  872. vertical-align: top;
  873. }
  874. .aside + .close-aside {
  875. display: none;
  876. }
  877. /*=== Aside main page */
  878. .aside_feed .category .title {
  879. width: calc(100% - 35px);
  880. }
  881. .aside_feed .category .title:not([data-unread="0"]) {
  882. width: calc(100% - 75px);
  883. }
  884. .aside_feed .tree-folder-title .icon {
  885. padding: 0 0.25rem;
  886. }
  887. .aside_feed .tree-folder-items .item.feed {
  888. padding: var(--frss-padding-top-bottom) 0.75rem;
  889. }
  890. .aside_feed .tree-folder-items:not(.active) {
  891. margin: 0;
  892. padding: 0;
  893. max-height: 0;
  894. border: none;
  895. overflow: hidden;
  896. }
  897. .aside_feed .tree-folder-items .dropdown {
  898. vertical-align: top;
  899. }
  900. .aside_feed .tree-folder-items .dropdown-menu {
  901. right: 0;
  902. }
  903. .aside_feed .tree-folder-items .item .dropdown-toggle > .icon {
  904. visibility: hidden;
  905. cursor: pointer;
  906. }
  907. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  908. .aside_feed .tree-folder-items .item:hover .dropdown-toggle > .icon,
  909. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  910. visibility: visible;
  911. }
  912. .aside .toggle_aside:hover,
  913. #panel .close:hover,
  914. #slider .toggle_aside:hover,
  915. .dropdown-menu .toggle_aside:hover {
  916. background-color: var(--frss-darken-background-hover-transparent);
  917. }
  918. /*=== New article notification */
  919. #new-article {
  920. display: none;
  921. }
  922. #new-article > a {
  923. padding: calc(0.25rem + var(--frss-padding-top-bottom)) 1rem;
  924. display: block;
  925. }
  926. /*=== Day indication */
  927. .day {
  928. background: inherit;
  929. }
  930. .day .name {
  931. position: absolute;
  932. left: 0;
  933. width: 50%;
  934. overflow: hidden;
  935. white-space: nowrap;
  936. text-overflow: ellipsis;
  937. }
  938. /*=== Feed article header and footer */
  939. .flux_header {
  940. background: inherit;
  941. position: relative;
  942. }
  943. .flux .flux_header .item {
  944. white-space: nowrap;
  945. }
  946. .flux .flux_header .item .item-element {
  947. padding: var(--frss-padding-top-bottom) 0;
  948. line-height: 1.5rem;
  949. }
  950. .flux .flux_header .item.manage .item-element,
  951. .flux .flux_header .item.website .item-element,
  952. .flux .flux_header .item.link .item-element {
  953. padding-right: var(--frss-padding-flux-items);
  954. padding-left: var(--frss-padding-flux-items);
  955. }
  956. .flux .item.manage,
  957. .flux .item.link {
  958. width: calc(1rem + 2 * var(--frss-padding-flux-items));
  959. }
  960. .flux .item.website {
  961. width: 200px;
  962. }
  963. .website a:hover .favicon,
  964. a.website:hover .favicon {
  965. filter: grayscale(100%);
  966. }
  967. .flux.not_read .item.title,
  968. .flux.current .item.title {
  969. font-weight: bold;
  970. }
  971. .flux:not(.current):hover .item.title {
  972. background-color: inherit;
  973. max-width: calc(100% - 320px);
  974. position: absolute;
  975. }
  976. .flux:not(.current):hover .item.title.multiline {
  977. position: initial;
  978. }
  979. .flux .item.title a {
  980. color: var(--frss-font-color-dark);
  981. text-decoration: none;
  982. }
  983. .flux .item.thumbnail {
  984. line-height: 0;
  985. padding: 0.75rem;
  986. height: 80px;
  987. }
  988. .flux .item.thumbnail.small {
  989. height: 40px;
  990. }
  991. .flux .item.thumbnail.portrait {
  992. width: 60px;
  993. }
  994. .flux .item.thumbnail.square {
  995. width: 80px;
  996. }
  997. .flux .item.thumbnail.landscape {
  998. width: 128px;
  999. }
  1000. .flux .item.thumbnail.portrait.small {
  1001. width: 30px;
  1002. }
  1003. .flux .item.thumbnail.square.small {
  1004. width: 40px;
  1005. }
  1006. .flux .item.thumbnail.landscape.small {
  1007. width: 64px;
  1008. }
  1009. .flux .item.thumbnail img {
  1010. background: repeating-linear-gradient( 45deg, var(--frss-noThumbnailImage-background-color), var(--frss-noThumbnailImage-background-color) 5px, transparent 5px, transparent 10px );
  1011. display: inline-block;
  1012. width: 100%;
  1013. height: 100%;
  1014. overflow: hidden;
  1015. object-fit: cover;
  1016. }
  1017. .flux .item.title .summary {
  1018. display: -webkit-box;
  1019. color: var(--frss-font-color-grey-dark);
  1020. font-size: 0.9rem;
  1021. font-weight: normal;
  1022. text-overflow: ellipsis;
  1023. -webkit-line-clamp: 2;
  1024. -webkit-box-orient: vertical;
  1025. white-space: break-spaces;
  1026. }
  1027. .flux .item.title .author {
  1028. padding-right: 1rem;
  1029. color: var(--frss-font-color-grey-dark);
  1030. font-weight: normal;
  1031. }
  1032. .flux .item.date {
  1033. width: 155px;
  1034. text-align: left;
  1035. overflow: hidden;
  1036. }
  1037. .flux .item > a {
  1038. display: block;
  1039. white-space: nowrap;
  1040. text-overflow: ellipsis;
  1041. overflow: hidden;
  1042. }
  1043. .item.query > a {
  1044. display: list-item;
  1045. list-style-position: inside;
  1046. list-style-type: decimal;
  1047. }
  1048. .flux_content .bottom .dropdown-toggle .icon {
  1049. margin-left: 0.25rem;
  1050. }
  1051. /*=== Feed article content */
  1052. .hide_posts > .flux:not(.active) > .flux_content {
  1053. display: none;
  1054. }
  1055. .content {
  1056. min-height: 20rem;
  1057. margin: auto;
  1058. padding: 0.75rem;
  1059. line-height: 1.5;
  1060. word-wrap: break-word;
  1061. overflow: auto;
  1062. }
  1063. .content.large {
  1064. max-width: 1000px;
  1065. }
  1066. .content.medium {
  1067. max-width: 800px;
  1068. }
  1069. .content.thin {
  1070. max-width: 550px;
  1071. }
  1072. .content .article-header-topline {
  1073. margin-bottom: 0.75rem;
  1074. }
  1075. .content > header,
  1076. .content > footer {
  1077. color: var(--frss-font-color-grey-light);
  1078. font-size: 0.9rem;
  1079. }
  1080. .content > footer {
  1081. margin: 2rem 0 2rem;
  1082. padding-top: 1rem;
  1083. border-top: 2px solid var(--frss-border-color);
  1084. clear: both;
  1085. }
  1086. .content > footer .subtitle {
  1087. padding-bottom: 1rem;
  1088. }
  1089. .content > header .tags,
  1090. .content > footer .tags {
  1091. display: flex;
  1092. line-height: 1;
  1093. }
  1094. .content > header .tags .icon,
  1095. .content > header .website .favicon,
  1096. .content > footer .tags .icon {
  1097. margin: 0 0 0 0.5rem;
  1098. line-height: 1.5;
  1099. }
  1100. .content > header .tags .list-tags,
  1101. .content > footer .tags .list-tags {
  1102. margin: 0;
  1103. padding: 0;
  1104. display: inline-block;
  1105. list-style: none;
  1106. }
  1107. .content > header .tags .list-tags .item.tag,
  1108. .content > footer .tags .list-tags .item.tag {
  1109. padding: 0 0 0 0.75rem;
  1110. display: inline-block;
  1111. line-height: 1.5;
  1112. }
  1113. .content > header .tags .list-tags .item.tag a.link-tag,
  1114. .content > footer .tags .list-tags .item.tag a.link-tag {
  1115. display: inline;
  1116. }
  1117. .content > header h1 {
  1118. margin: 0.5rem 0;
  1119. }
  1120. .content .text ul,
  1121. .content .text ol,
  1122. .content .text dd {
  1123. margin: 0 1rem 0 0;
  1124. padding: 0 1rem 0.25rem 0;
  1125. }
  1126. .content pre {
  1127. overflow: auto;
  1128. }
  1129. .subtitle > div {
  1130. display: inline;
  1131. }
  1132. .subtitle > div:not(:first-of-type)::before {
  1133. content: ' · ';
  1134. }
  1135. /*=== Notification and actualize notification */
  1136. .notification {
  1137. padding: 0.75rem 0.75rem 0.75rem 3.5rem;
  1138. position: absolute;
  1139. top: 1rem;
  1140. right: 25%; left: 25%;
  1141. z-index: 9999;
  1142. background-color: var(--frss-background-color);
  1143. font-weight: bold;
  1144. font-size: 0.9rem;
  1145. border: 1px solid var(--frss-border-color);
  1146. opacity: 1;
  1147. text-align: center;
  1148. line-height: 2;
  1149. vertical-align: middle;
  1150. visibility: visible;
  1151. transition: visibility 0s, opacity .3s linear;
  1152. }
  1153. .notification.closed {
  1154. opacity: 0;
  1155. visibility: hidden;
  1156. }
  1157. .notification a.close {
  1158. padding: 0 1rem;
  1159. position: absolute;
  1160. top: 0; bottom: 0;
  1161. left: 0;
  1162. display: inline-block;
  1163. line-height: 3;
  1164. }
  1165. .notification a.close:hover {
  1166. background-color: var(--frss-darken-background-hover-transparent);
  1167. }
  1168. .notification a.close:hover .icon {
  1169. filter: brightness(2);
  1170. }
  1171. #actualizeProgress {
  1172. position: fixed;
  1173. }
  1174. #actualizeProgress progress {
  1175. max-width: 100%;
  1176. vertical-align: middle;
  1177. }
  1178. #actualizeProgress .progress {
  1179. vertical-align: middle;
  1180. }
  1181. /*=== Popup */
  1182. #popup {
  1183. display: none;
  1184. position: fixed;
  1185. z-index: 200;
  1186. right: 0;
  1187. top: 0;
  1188. width: 100%;
  1189. height: 100%;
  1190. overflow: auto;
  1191. background-color: var(--frss-modal-background-color-transparent);
  1192. }
  1193. #popup-content {
  1194. margin: 5rem auto;
  1195. display: table;
  1196. width: 80%;
  1197. height: 80%;
  1198. overflow: hidden;
  1199. background-color: var(--frss-background-color);
  1200. border-radius: .25rem;
  1201. box-shadow: -3px 3px 5px var(--frss-box-shadow-color-transparent);
  1202. }
  1203. .popup-row {
  1204. display: table-row;
  1205. width: 100%;
  1206. }
  1207. #popup-close {
  1208. float: left;
  1209. width: 27px;
  1210. height: 22px;
  1211. padding-top: 5px;
  1212. }
  1213. #popup-close:hover,
  1214. #popup-close:focus {
  1215. color: var(--frss-font-color-dark);
  1216. text-decoration: none;
  1217. cursor: pointer;
  1218. }
  1219. #popup-iframe-container {
  1220. display: none;
  1221. height: 100%;
  1222. }
  1223. #popup-iframe-sub {
  1224. padding: 10px;
  1225. height: 100%;
  1226. }
  1227. #popup-iframe {
  1228. width: 100%;
  1229. height: 100%;
  1230. }
  1231. /*=== Navigation menu (for articles) */
  1232. #nav_entries {
  1233. display: table;
  1234. position: fixed;
  1235. bottom: 0; right: 0;
  1236. width: 300px;
  1237. table-layout: fixed;
  1238. padding-bottom: env(safe-area-inset-bottom);
  1239. }
  1240. #nav_entries .item {
  1241. display: table-cell;
  1242. width: 30%;
  1243. }
  1244. #nav_entries a {
  1245. display: block;
  1246. }
  1247. /*=== "Load" parts */
  1248. #first_load {
  1249. margin: 130px auto -170px auto;
  1250. height: 40px;
  1251. }
  1252. #load_more {
  1253. min-height: 40px;
  1254. }
  1255. #load_more.loading,
  1256. #load_more.loading:hover {
  1257. padding: 10px 20px;
  1258. background: var(--frss-loading-image) center center no-repeat var(--frss-background-color);
  1259. font-size: 0;
  1260. }
  1261. .loading {
  1262. background: var(--frss-loading-image) center center no-repeat;
  1263. font-size: 0;
  1264. }
  1265. #bigMarkAsRead {
  1266. margin: 0 0 100% 0;
  1267. margin: 0 0 100vh 0;
  1268. padding: 1em 0 50px 0;
  1269. display: block;
  1270. width: 100%;
  1271. text-align: center;
  1272. font-size: 1.25rem;
  1273. }
  1274. .bigTick {
  1275. font-size: 4rem;
  1276. }
  1277. /*=== Statistiques */
  1278. .stat-grid {
  1279. display: grid;
  1280. grid-template-columns: 1fr 1fr;
  1281. grid-gap: 20px;
  1282. }
  1283. .stat {
  1284. grid-column: 1 / span 2;
  1285. }
  1286. .stat.half {
  1287. grid-column: auto;
  1288. }
  1289. .stat > table {
  1290. width: 100%;
  1291. }
  1292. .statGraph {
  1293. height: 300px;
  1294. }
  1295. /*=== GLOBAL VIEW */
  1296. /*================*/
  1297. #stream.global {
  1298. text-align: center;
  1299. }
  1300. #stream.global .box {
  1301. text-align: right;
  1302. }
  1303. #global > #panel {
  1304. bottom: 99vh;
  1305. display: block;
  1306. transition: visibility .3s, bottom .3s;
  1307. visibility: hidden;
  1308. }
  1309. #global > #panel.visible {
  1310. bottom: 2%;
  1311. visibility: visible;
  1312. }
  1313. /*=== Panel */
  1314. #overlay {
  1315. position: fixed;
  1316. top: 0; bottom: 0;
  1317. right: 0; left: 0;
  1318. background-color: var(--frss-modal-background-color-transparent);
  1319. opacity: 0;
  1320. transition: visibility .3s, opacity .3s;
  1321. visibility: hidden;
  1322. }
  1323. #overlay.visible {
  1324. opacity: 1;
  1325. visibility: visible;
  1326. }
  1327. #panel {
  1328. background-color: var(--frss-background-color);
  1329. display: none;
  1330. position: fixed;
  1331. top: 2%; bottom: 2%;
  1332. right: 3%; left: 3%;
  1333. overflow: auto;
  1334. }
  1335. #overlay .close {
  1336. position: fixed;
  1337. top: 0; bottom: 0;
  1338. right: 0; left: 0;
  1339. display: block;
  1340. }
  1341. #overlay .close img {
  1342. display: none;
  1343. }
  1344. /*=== Slider */
  1345. html.slider-active {
  1346. overflow: hidden;
  1347. }
  1348. #slider {
  1349. background-color: var(--frss-background-color);
  1350. width: 0;
  1351. position: fixed;
  1352. top: 0; bottom: 0;
  1353. left: 0;
  1354. overflow: auto;
  1355. z-index: 100;
  1356. }
  1357. #slider.active:target {
  1358. width: 750px;
  1359. box-shadow: 3px 3px 5px var(--frss-box-shadow-color-transparent);
  1360. }
  1361. #slider.sliding {
  1362. transition: width 200ms linear;
  1363. }
  1364. #close-slider {
  1365. position: fixed;
  1366. top: 0; bottom: 0;
  1367. right: 100%; left: 0;
  1368. cursor: pointer;
  1369. }
  1370. #slider.active:target + #close-slider {
  1371. background-color: var(--frss-modal-background-color-transparent);
  1372. font-size: 0;
  1373. right: 0;
  1374. z-index: 99;
  1375. }
  1376. #close-slider img {
  1377. display: none;
  1378. }
  1379. #slider.active:target + #close-slider img {
  1380. padding: 0.5rem;
  1381. display: inline-block;
  1382. position: absolute;
  1383. top: 0.5rem;
  1384. right: 0.5rem;
  1385. filter: grayscale(100%) brightness(2.5);
  1386. }
  1387. #slider-content .loader {
  1388. height: 90vh;
  1389. background-image: url('loader.gif');
  1390. background-repeat: no-repeat;
  1391. background-position: center;
  1392. }
  1393. /*=== SLIDESHOW */
  1394. /*==============*/
  1395. .slides {
  1396. padding: 0;
  1397. display: block;
  1398. max-width: 640px;
  1399. height: 320px;
  1400. border: 1px solid var(--frss-border-color);
  1401. position: relative;
  1402. min-width: 260px;
  1403. margin-bottom: 30px;
  1404. }
  1405. .slides input {
  1406. display: none;
  1407. }
  1408. .slide-container {
  1409. display: block;
  1410. }
  1411. .slide {
  1412. display: block;
  1413. width: 100%;
  1414. height: 100%;
  1415. top: 0;
  1416. opacity: 0;
  1417. position: absolute;
  1418. transform: scale(0);
  1419. transition: all .7s ease-in-out;
  1420. }
  1421. .slide img {
  1422. width: 100%;
  1423. height: 100%;
  1424. }
  1425. .nav label {
  1426. padding: 0;
  1427. display: none;
  1428. width: 65px;
  1429. height: 100%;
  1430. color: var(--frss-font-color-light);
  1431. font-family: "Varela Round", sans-serif;
  1432. font-size: 9rem;
  1433. position: absolute;
  1434. opacity: 0;
  1435. z-index: 9;
  1436. cursor: pointer;
  1437. transition: opacity .2s;
  1438. text-align: center;
  1439. line-height: 2;
  1440. background-color: var(--frss-background-color-transparent);
  1441. text-shadow: 0px 0px 15px rgb(119, 119, 119);
  1442. }
  1443. .properties {
  1444. padding: 5px;
  1445. background-color: var(--frss-background-color-transparent);
  1446. display: none;
  1447. border-top: 1px solid var(--frss-border-color);
  1448. bottom: 0;
  1449. right: 0; left: 0;
  1450. position: absolute;
  1451. z-index: 10;
  1452. backdrop-filter: blur(3px);
  1453. }
  1454. .properties .page-number {
  1455. left: 5px;
  1456. top: 0;
  1457. position: absolute;
  1458. }
  1459. .slide:hover + .nav label {
  1460. opacity: 0.5;
  1461. }
  1462. .nav label:hover {
  1463. opacity: 1;
  1464. }
  1465. .nav .next {
  1466. left: 0;
  1467. }
  1468. input:checked + .slide-container .slide {
  1469. opacity: 1;
  1470. transform: scale(1);
  1471. transition: opacity 1s ease-in-out;
  1472. }
  1473. input:checked + .slide-container .nav label {
  1474. display: block;
  1475. }
  1476. input:checked + .slide-container .properties {
  1477. display: block;
  1478. }
  1479. /*=== DIVERS */
  1480. /*===========*/
  1481. .log-level {
  1482. text-align: center;
  1483. }
  1484. .log-item.log-error {
  1485. background-color: var(--frss-background-color-error-transparent);
  1486. }
  1487. .item.share.error a::after,
  1488. .category .title.error::before,
  1489. .item.feed.error .item-title::before {
  1490. content: " ⚠ ";
  1491. color: var(--frss-font-color-error);
  1492. }
  1493. .feed.item.error.active .item-title::before {
  1494. color: var(--frss-font-color-light);
  1495. }
  1496. .aside .category .title:not([data-unread="0"])::after,
  1497. .aside .feed .item-title:not([data-unread="0"])::after {
  1498. margin: calc(0.125rem + var(--frss-padding-top-bottom)) 0 0 0;
  1499. padding: 0.25rem 0.5rem;
  1500. min-width: 2rem;
  1501. display: block;
  1502. content: attr(data-unread);
  1503. position: absolute;
  1504. top: 0;
  1505. left: 0.75rem;
  1506. text-align: center;
  1507. font-size: 0.9rem;
  1508. border-radius: 0.75rem;
  1509. line-height: 1;
  1510. font-weight: initial;
  1511. }
  1512. .global .box.category .title:not([data-unread="0"])::after {
  1513. margin: 0.5rem 0 0 0;
  1514. padding: 5px 10px;
  1515. min-width: 20px;
  1516. display: block;
  1517. content: attr(data-unread);
  1518. position: absolute;
  1519. top: 0;
  1520. left: 10px;
  1521. text-align: center;
  1522. font-size: 0.75rem;
  1523. border-radius: 12px;
  1524. line-height: 1;
  1525. font-weight: initial;
  1526. }
  1527. .box .box-title .configure:not([data-cat-position=""])::after {
  1528. margin: 0.5rem 0px 0px;
  1529. padding: 5px 10px;
  1530. min-width: 20px;
  1531. display: block;
  1532. content: attr(data-cat-position);
  1533. position: absolute;
  1534. top: 0px;
  1535. left: 10px;
  1536. text-align: center;
  1537. font-size: 0.75rem;
  1538. border-radius: 12px;
  1539. line-height: 1;
  1540. font-weight: initial;
  1541. }
  1542. .feed .item-title:not([data-unread="0"])::after {
  1543. margin: 1em 0 0 0;
  1544. }
  1545. .feed.active .item-title:not([data-unread="0"])::after {
  1546. color: var(--frss-font-color-light);
  1547. border: 1px solid var(--frss-border-color);
  1548. font-weight: bold;
  1549. }
  1550. .feed .item-title:not([data-unread="0"]) {
  1551. font-weight: bold;
  1552. width: calc(100% - 5.5rem);
  1553. }
  1554. .state_unread .category:not(.active)[data-unread="0"],
  1555. .state_unread .feed:not(.active)[data-unread="0"] {
  1556. display: none;
  1557. }
  1558. .nav_menu {
  1559. padding-top: var(--frss-padding-top-bottom);
  1560. padding-bottom: var(--frss-padding-top-bottom);
  1561. background: inherit;
  1562. text-align: center;
  1563. }
  1564. .nav_mobile {
  1565. display: none;
  1566. }
  1567. .nav-login,
  1568. .nav_menu .search,
  1569. .aside .toggle_aside,
  1570. #slider .toggle_aside,
  1571. .nav_menu .toggle_aside,
  1572. .configure .dropdown-header-close {
  1573. display: none;
  1574. }
  1575. .enclosure [download] {
  1576. font-size: 3rem;
  1577. margin-right: .8em;
  1578. }
  1579. .enclosure-description {
  1580. white-space: pre-line;
  1581. }
  1582. .default-user {
  1583. font-style: italic;
  1584. }
  1585. /*=== READER */
  1586. /*===========*/
  1587. .reader .nav_menu .toggle_aside {
  1588. display: inline-block;
  1589. }
  1590. .reader .aside .toggle_aside {
  1591. display: block;
  1592. width: 100%;
  1593. }
  1594. .reader .aside {
  1595. display: none;
  1596. width: 0;
  1597. }
  1598. .reader .aside:target {
  1599. display: table-cell;
  1600. width: 300px;
  1601. }
  1602. .reader .aside .stick {
  1603. display: none;
  1604. }
  1605. .reader .flux {
  1606. padding: 1rem 0 2rem;
  1607. }
  1608. .reader .flux .content {
  1609. padding: 3rem;
  1610. background-color: var(--frss-background-color);
  1611. border: 1px solid var(--frss-border-color);
  1612. }
  1613. #loglist-wrapper {
  1614. overflow-x: auto;
  1615. }
  1616. /*=== MOBILE */
  1617. /*===========*/
  1618. @media (max-width: 840px) {
  1619. :root {
  1620. --frss-padding-flux-items: 0.5rem;
  1621. }
  1622. .flux_header .item.website span,
  1623. .item.date, .day .date,
  1624. .dropdown-menu > .no-mobile,
  1625. .no-mobile {
  1626. display: none;
  1627. }
  1628. .header > .item {
  1629. padding: 5px;
  1630. }
  1631. .header > .item.title .logo {
  1632. height: 24px;
  1633. }
  1634. header .item.search form {
  1635. display: none;
  1636. }
  1637. .aside:target {
  1638. box-shadow: -3px 3px 5px var(--frss-box-shadow-color-transparent);
  1639. }
  1640. .aside .toggle_aside,
  1641. #panel .close,
  1642. .dropdown-menu .toggle_aside,
  1643. #slider .toggle_aside {
  1644. padding: 1rem 0;
  1645. display: block;
  1646. width: 100%;
  1647. border-bottom: 1px solid var(--frss-border-color);
  1648. text-align: center;
  1649. }
  1650. .form-group {
  1651. margin-bottom: 10px;
  1652. }
  1653. .form-group .group-name {
  1654. float: none;
  1655. width: auto;
  1656. text-align: right;
  1657. }
  1658. .form-group .group-controls {
  1659. margin-right: 0;
  1660. }
  1661. .dropdown {
  1662. position: inherit;
  1663. }
  1664. .dropdown .dropdown-header,
  1665. .dropdown .dropdown-section {
  1666. line-height: 2;
  1667. }
  1668. .dropdown .dropdown-menu {
  1669. width: 94%;
  1670. border-radius: 0;
  1671. right: 3%;
  1672. left: 3%;
  1673. position: absolute;
  1674. }
  1675. .dropdown .dropdown-menu .item {
  1676. margin: 2px 0;
  1677. }
  1678. .dropdown .dropdown-menu .item button.as-link,
  1679. .dropdown .dropdown-menu .item button.as-link:hover, button.as-link:active {
  1680. width: 100%;
  1681. }
  1682. .dropdown-target:target ~ .dropdown-toggle {
  1683. position: relative;
  1684. overflow: visible;
  1685. }
  1686. .dropdown-target:target ~ .dropdown-toggle::after {
  1687. background-color: var(--frss-background-color);
  1688. width: 10px;
  1689. height: 10px;
  1690. content: "";
  1691. position: absolute;
  1692. left: 8px;
  1693. bottom: -17px;
  1694. transform: rotate(-45deg);
  1695. z-index: 9999;
  1696. cursor: default;
  1697. }
  1698. .dropdown-target:target ~ .dropdown-toggle:not(.btn) ~ .dropdown-menu {
  1699. margin-top: 0;
  1700. }
  1701. .configure .dropdown .dropdown-menu {
  1702. width: 90%;
  1703. height: 100vh;
  1704. top: 0;
  1705. left: 0;
  1706. bottom: 0;
  1707. right: auto;
  1708. position: fixed;
  1709. padding-top: 0;
  1710. margin-top: 0;
  1711. overflow: auto;
  1712. box-shadow: 3px 0 3px var(--frss-box-shadow-color-transparent);
  1713. }
  1714. .configure .dropdown-target:target ~ .dropdown-toggle::after {
  1715. content: none;
  1716. }
  1717. .dropdown-target:target ~ .dropdown-menu {
  1718. display: table-cell;
  1719. z-index: 1000;
  1720. }
  1721. .dropdown-menu::after {
  1722. display: none;
  1723. }
  1724. .aside .toggle_aside,
  1725. .configure .dropdown-header-close,
  1726. .nav-login {
  1727. display: block;
  1728. }
  1729. .nav_menu .toggle_aside,
  1730. .nav_menu .search,
  1731. #panel .close img {
  1732. display: inline-block;
  1733. }
  1734. .aside:target + .close-aside,
  1735. .configure .dropdown-target:target ~ .dropdown-close {
  1736. background-color: var(--frss-modal-background-color-transparent);
  1737. display: block;
  1738. font-size: 0;
  1739. position: fixed;
  1740. top: 0;
  1741. bottom: 0;
  1742. right: 0;
  1743. left: 0;
  1744. cursor: default;
  1745. z-index: 99;
  1746. }
  1747. .nav_mobile {
  1748. display: block;
  1749. }
  1750. .aside {
  1751. position: fixed;
  1752. top: 0; bottom: 0;
  1753. right: -1px;
  1754. width: 0;
  1755. overflow: hidden;
  1756. z-index: 100;
  1757. }
  1758. .aside:target,
  1759. .reader .aside:target {
  1760. width: 90%;
  1761. height: 100vh;
  1762. }
  1763. .aside_feed .configure-feeds {
  1764. margin-top: 10px;
  1765. }
  1766. .flux_header .item.website {
  1767. width: 40px;
  1768. }
  1769. .flux:not(.current):hover .item.title {
  1770. position: relative;
  1771. width: auto;
  1772. white-space: nowrap;
  1773. top: 0;
  1774. }
  1775. .reader .flux .content {
  1776. padding: 1rem;
  1777. }
  1778. table {
  1779. font-size: 0.9rem;
  1780. }
  1781. th, td {
  1782. padding: 0.25rem;
  1783. }
  1784. .notification {
  1785. top: 0;
  1786. right: 0;
  1787. left: 0;
  1788. }
  1789. #nav_entries {
  1790. width: 100%;
  1791. }
  1792. #panel {
  1793. top: 25px; bottom: 30px;
  1794. right: 0; left: 0;
  1795. }
  1796. #panel .close {
  1797. top: 0; left: 0;
  1798. right: auto; bottom: auto;
  1799. display: inline-block;
  1800. width: 30px;
  1801. height: 30px;
  1802. }
  1803. #slider.active:target {
  1804. width: 100%;
  1805. }
  1806. #close-slider img {
  1807. display: initial;
  1808. }
  1809. #slider.active:target #close-slider img {
  1810. display: initial;
  1811. position: initial;
  1812. filter: initial;
  1813. }
  1814. #slider.active:target + #close-slider {
  1815. display: none;
  1816. }
  1817. .stat.half {
  1818. grid-column: 1 / span 2;
  1819. }
  1820. }
  1821. /*=== PRINTER */
  1822. /*============*/
  1823. @media print {
  1824. .header, .aside,
  1825. .nav_menu, .day,
  1826. .flux_header,
  1827. .flux_content .bottom,
  1828. .pagination,
  1829. #stream-footer,
  1830. #nav_entries {
  1831. display: none;
  1832. }
  1833. html, body {
  1834. background-color: var(--frss-background-color);
  1835. font-family: Serif;
  1836. }
  1837. #global,
  1838. .flux_content {
  1839. display: block !important;
  1840. }
  1841. .flux_content .content {
  1842. width: 100% !important;
  1843. }
  1844. .flux_content .content a {
  1845. color: var(--frss-font-color-dark);
  1846. }
  1847. .flux_content .content a::after {
  1848. content: " [" attr(href) "] ";
  1849. font-style: italic;
  1850. }
  1851. }
  1852. /*=== PREVIEW */
  1853. /*===========*/
  1854. .preview_controls {
  1855. margin-right: auto;
  1856. margin-left: auto;
  1857. padding: 1rem;
  1858. max-width: 1000px;
  1859. text-align: center;
  1860. background-color: var(--frss-background-color-middle);
  1861. border: 1px solid var(--frss-border-color);
  1862. border-radius: .25rem;
  1863. }
  1864. .preview_controls label {
  1865. display: inline;
  1866. }
  1867. .preview_controls label input[type="radio"] {
  1868. margin-top: -4px;
  1869. }
  1870. .preview_controls label + label {
  1871. margin-right: 1rem;
  1872. }
  1873. .drag-drop-marker {
  1874. margin: -1px;
  1875. }