Advertisement
Guest User

Untitled

a guest
Feb 10th, 2014
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.46 KB | None | 0 0
  1. @media only screen and (min-width: 768px) and (max-width: 960px) {
  2. .content.sidebar .newsfeed.classic li .item .item-image img {
  3. max-width:496px;
  4. height:auto;
  5. }
  6. }
  7.  
  8. @media only screen and (max-width: 767px) {
  9. .content .newsfeed.classic li .item .item-image img {
  10. max-width:300px;
  11. height:auto;
  12. }
  13. }
  14.  
  15. @media only screen and (min-width: 480px) and (max-width: 767px) {
  16. .content .newsfeed.classic li .item .item-image img {
  17. max-width:440px;
  18. height:auto;
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement