frss.rtl.css 41 KB

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