gulp integration

This commit is contained in:
Mike Francis 2014-02-06 15:16:07 +00:00
parent aa573e574c
commit d0ef06c80a
18 changed files with 86 additions and 126 deletions

View file

@ -1,8 +1,8 @@
input,
select,
textarea {
background: $input-background;
border: $input-border;
background-color: $base-background-colour;
border: solid 1px $base-colour;
color: $base-colour;
display: inline-block;
font: inherit;
@ -35,16 +35,13 @@ textarea {
}
.btn {
background: $btn-background;
border: $btn-border;
color: $btn-color;
background-color: $base-background-colour;
border: solid 1px $base-colour;
color: $base-colour;
cursor: pointer;
display: inline-block;
line-height: ($base-margin-bottom * 2) * 1px;
height: ($base-margin-bottom * 2) * 1px;
line-height: ($base-margin-bottom * 2) * 1px;
padding: 0 $base-margin-bottom;
width: auto;
&:hover {
background: $btn-background-hover;
}
}

View file

@ -12,7 +12,6 @@
.row {
margin-left: -($column-gutter / $container-max-width) * 100%;
_overflow: hidden;
@extend .clearfix;
@include media($mobile) {
margin-left: 0;
@ -35,7 +34,6 @@
@for $i from 1 through $column-count {
.col-span-#{$i} {
width: (((100 / $column-count) * $i) - (($column-gutter / $container-max-width) * 100)) * 1%;
*width: (((100 / $column-count) * $i) - (($column-gutter / $container-max-width) * 100)) - .02 * 1%;
}
}
@ -46,6 +44,5 @@
@for $i from 1 through $column-count {
.row--no-gutters .column-span-#{$i} {
width: ((100 / $column-count) * $i) * 1%;
*width: ((100 / $column-count) * $i) - .02 * 1%;
}
}