frss.css 43 KB

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