Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

44 wiersze
691 B

  1. @mixin no_float
  2. float: none
  3. clear: both
  4. overflow: hidden
  5. display: block
  6. @mixin float_left
  7. display: block
  8. clear: none
  9. float: left
  10. @mixin float_right
  11. display: block
  12. clear: none
  13. float: right
  14. @mixin centered_container($width)
  15. margin: 0px auto
  16. padding: 0px
  17. position: relative
  18. width: $width
  19. @mixin underline_on_hover_only
  20. text-decoration: none
  21. &:hover
  22. text-decoration: underline
  23. @mixin horizontal_list
  24. float: none
  25. clear: both
  26. overflow: hidden
  27. margin: 0
  28. padding: 0
  29. li
  30. float: left
  31. clear: none
  32. margin: 0
  33. padding: 2px 10px
  34. border-right: 1px solid #DDD
  35. &:first-child, &.first
  36. padding-left: 0
  37. &:last-child, &.last
  38. padding-right: 0
  39. border-right: none