frss.css 41 KB

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