frss.css 45 KB

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