Advertisement
Guest User

Untitled

a guest
May 28th, 2015
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. /* Settings */
  2. $break-small-width: 800px
  3. $num_cols: 12
  4. $col_padding: 2%
  5. $main-color: /* Insert color here */
  6.  
  7. =desktop()
  8. @media screen and (min-width: $break_small_width+1)
  9. @content
  10. =mobile()
  11. @media screen and (max-width: $break_small_width)
  12. @content
  13.  
  14. =keyframes($name)
  15. @-webkit-keyframes #{$name}
  16. @content
  17. @-moz-keyframes #{$name}
  18. @content
  19. @-o-keyframes #{$name}
  20. @content
  21. @keyframes #{$name}
  22. @content
  23.  
  24. @for $i from 1 through $num_cols
  25. .col-#{$i}
  26. width: $i*100%/12 - $col_padding
  27. +desktop
  28.  
  29. .column
  30. position: relative
  31. display: inline-block
  32.  
  33. +mobile
  34. width: 100% !important
  35.  
  36. ::selection
  37. background: $main-color
  38.  
  39. ::-moz-selection
  40. background: $main-color
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement