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