Advertisement
srikat

Untitled

Feb 16th, 2014
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.58 KB | None | 0 0
  1. @media only screen and (max-width: 860px) {
  2.  
  3.     .home .featuredpost {
  4.         width: 48%;
  5.         padding-left: 0;
  6.     }
  7.  
  8.     .home .featuredpost h2 {
  9.         text-align: center;
  10.         margin-bottom: 10px;
  11.     }
  12.  
  13. }
  14.  
  15. @media only screen and (max-width: 768px) {
  16.  
  17.     .home .featuredpost p {
  18.         padding-left: 30px;
  19.         padding-right: 20px;
  20.     }
  21.  
  22. }
  23.  
  24. @media only screen and (max-width: 665px) {
  25.  
  26.     .home .featuredpost {
  27.         width: 100%;
  28.         margin-bottom: 0;
  29.         padding-bottom: 0;
  30.     }
  31.  
  32. }
  33.  
  34. @media only screen and (max-width: 390px) {
  35.  
  36.     .home .featuredpost p {
  37.         padding-left: 0;
  38.         padding-right: 0;
  39.     }
  40.  
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement