44 lines
691 B
Sass
44 lines
691 B
Sass
@mixin no_float
|
|
float: none
|
|
clear: both
|
|
overflow: hidden
|
|
display: block
|
|
|
|
@mixin float_left
|
|
display: block
|
|
clear: none
|
|
float: left
|
|
|
|
@mixin float_right
|
|
display: block
|
|
clear: none
|
|
float: right
|
|
|
|
@mixin centered_container($width)
|
|
margin: 0px auto
|
|
padding: 0px
|
|
position: relative
|
|
width: $width
|
|
|
|
@mixin underline_on_hover_only
|
|
text-decoration: none
|
|
&:hover
|
|
text-decoration: underline
|
|
|
|
@mixin horizontal_list
|
|
float: none
|
|
clear: both
|
|
overflow: hidden
|
|
margin: 0
|
|
padding: 0
|
|
li
|
|
float: left
|
|
clear: none
|
|
margin: 0
|
|
padding: 2px 10px
|
|
border-right: 1px solid #DDD
|
|
&:first-child, &.first
|
|
padding-left: 0
|
|
&:last-child, &.last
|
|
padding-right: 0
|
|
border-right: none |