Advertisement
artemsemkin

Rhye theme: equal size for lists and paragraphs

Oct 6th, 2022
936
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.42 KB | None | 0 0
  1. @media screen and (min-width: 320px) {
  2.   .section-content__text ul, .section-content__text ol {
  3.     font-size: calc(var(--paragraph-min-font-size) * 1px + (var(--paragraph-max-font-size) - var(--paragraph-min-font-size)) * ((100vw - 320px) / 1600));
  4.   }
  5. }
  6.  
  7. @media screen and (min-width: 1920px) {
  8.   .section-content__text ul, .section-content__text ol {
  9.     font-size: calc(var(--paragraph-max-font-size) * 1px);
  10.   }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement