Advertisement
parkeast

Origin Corrected CSS

Dec 17th, 2012
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.42 KB | None | 0 0
  1. @media only screen and ( max-width: 1570px ) {
  2. .entry-image { width: 25%;}
  3.     .image-info { font-size: 13px; }
  4.         .image-info .title { padding: 13px 7px 0; }
  5.             .image-info h2 { font-size: 20px; }
  6.         .image-info .description { padding: 11px 8px 0; }
  7.  
  8.     .image-title { font-size: 13px; }
  9.         .image-title .title { padding: 13px 7px 0; }
  10.             .image-title h2 { font-size: 20px; }
  11.         .image-title .description { padding: 11px 8px 0; }
  12. }
  13.  
  14. @media only screen and ( min-width: 1024px ) {
  15.     #top-menu { display: block !important; }
  16. }
  17.  
  18. @media only screen and ( min-width: 1570px ) {
  19. .entry-image { width: 25%; height: auto; max-height: 240px; overflow: hidden; }
  20. }
  21.  
  22. @media only screen and ( min-width: 1400px ) and ( max-width: 1570px )  {
  23. .entry-image { width: 25%; height: auto; max-height: 200px; overflow: hidden; }
  24. }
  25.  
  26. @media only screen and ( min-width: 768px ) and ( max-width: 1400px ) {
  27.     .entry-image { width: 33.3%; height: auto; max-height: 180px; overflow: hidden; }
  28.    
  29.     .image-info .title { padding: 18px 7px 0; }
  30.     .image-title .title { padding: 18px 7px 0; }
  31. }
  32.  
  33. @media only screen and ( min-width: 1150px ) and ( max-width: 1279px ) {
  34.     .entry-image { width: 33.3%; }
  35.    
  36.     .image-info { font-size: 14px; }
  37.         .image-info h2 { font-size: 22px; }
  38.         .image-info .title { padding: 34px 7px 0; }
  39.  
  40.     .image-title { font-size: 14px; }
  41.         .image-title h2 { font-size: 22px; }
  42.         .image-title .title { padding: 34px 7px 0; }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement