frss.rtl.css 44 KB

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