Advertisement
srikat

Untitled

Mar 9th, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.95 KB | None | 0 0
  1. .above-content-pages .entry {
  2.     float: left;
  3.     width: 14.9774774775%; /* [container's width - (number of columns - 1)xgap] / number of columns */
  4.     margin-left: 2.027027027%; /* (gap / container's width)x100 */
  5. }
  6.  
  7. .above-content-pages .entry:nth-of-type(6n+1) {
  8.     clear: left;
  9.     margin-left: 0;
  10. }
  11.  
  12. @media only screen and (max-width: 568px) {
  13.  
  14.     .above-content-pages .entry {
  15.         width: 31.3763861709%;
  16.         margin-left: 2.9354207436%;
  17.     }
  18.  
  19.     .above-content-pages .entry:nth-of-type(3n+1) {
  20.         clear: left;
  21.         margin-left: 0;
  22.     }
  23.  
  24. }
  25.  
  26. @media only screen and (max-width: 320px) {
  27.  
  28.     .above-content-pages .entry {
  29.         width: 47.3958333333%;
  30.         margin-left: 5.2083333333%;
  31.     }
  32.  
  33.     .above-content-pages .entry:nth-of-type(2n+1) {
  34.         clear: left;
  35.         margin-left: 0;
  36.     }
  37.  
  38.     .above-content-pages .entry:nth-of-type(3n+1) {
  39.         clear: none;
  40.         margin-left: 5.2083333333%;
  41.     }
  42.  
  43.     .above-content-pages .entry:nth-of-type(6n+1) {
  44.         clear: left;
  45.         margin-left: 0;
  46.     }
  47.  
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement