Advertisement
fauzanjeg

Change Font Size in Homepage || Mobile Display

Oct 31st, 2021
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.67 KB | None | 0 0
  1. /* Change Font Size in Homepage */
  2.  
  3. /* For Mobile Display */
  4. @media only screen and (max-width: 1024px) {
  5.     /* Global Texts (Paragraph and Link) */
  6.     .home .jeg_main p,
  7.     .home .jeg_main a {
  8.         font-size: 40px;
  9.     }
  10.  
  11.     /* Spesific || Post Title */
  12.     .home .jeg_main .jeg_post_title a {
  13.         font-size: 20px;
  14.     }
  15.  
  16.     /* Spesific || Post Meta */
  17.     .home .jeg_main .jeg_post_meta a {
  18.         font-size: 12px;
  19.     }
  20.  
  21.     /* Spesific || Post Category */
  22.     .home .jeg_main .jeg_post_category a {
  23.         font-size: 10px;
  24.     }
  25.  
  26.     /* Spesific || Post Excerpt */
  27.     .home .jeg_main .jeg_post_excerpt p {
  28.         font-size: 12px;
  29.     }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement