converted all tabs to spaces

This commit is contained in:
Mike Francis 2014-03-31 16:19:42 +01:00
parent cbd57dc329
commit e2116839f8
10 changed files with 132 additions and 132 deletions

View file

@ -1,47 +1,47 @@
input,
select,
textarea {
background-color: $base-background-colour;
border: solid 1px $base-colour;
color: $base-colour;
display: inline-block;
font: inherit;
line-height: $base-margin-bottom;
padding: ($base-margin-bottom / 4) ($base-margin-bottom / 2);
width: 300px;
background-color: $base-background-colour;
border: solid 1px $base-colour;
color: $base-colour;
display: inline-block;
font: inherit;
line-height: $base-margin-bottom;
padding: ($base-margin-bottom / 4) ($base-margin-bottom / 2);
width: 300px;
}
input[type="checkbox"],
input[type="radio"] {
background: transparent;
border: 0;
width: auto;
background: transparent;
border: 0;
width: auto;
}
textarea {
min-height: ($base-margin-bottom * 4);
min-height: ($base-margin-bottom * 4);
}
.form__group {
margin-bottom: $base-margin-bottom;
margin-bottom: $base-margin-bottom;
}
.form__label {
font-weight: bold;
font-weight: bold;
}
.form__controls {
@extend .clearfix;
@extend .clearfix;
}
.btn {
background-color: $base-colour;
border: 0;
color: $base-background-colour;
cursor: pointer;
display: inline-block;
height: ($base-margin-bottom * 1.5);
line-height: ($base-margin-bottom * 1.5);
padding: 0 $base-margin-bottom;
width: auto;
background-color: $base-colour;
border: 0;
color: $base-background-colour;
cursor: pointer;
display: inline-block;
height: ($base-margin-bottom * 1.5);
line-height: ($base-margin-bottom * 1.5);
padding: 0 $base-margin-bottom;
width: auto;
}

View file

@ -7,4 +7,4 @@
display: block;
}
}
}
}

View file

@ -1,12 +1,12 @@
html {
background-color: $base-background-colour;
color: $base-colour;
font: #{($base-font-size * 6.25) * 1%}/#{$base-line-height} $base-font-stack;
background-color: $base-background-colour;
color: $base-colour;
font: #{($base-font-size * 6.25) * 1%}/#{$base-line-height} $base-font-stack;
}
a {
color: $base-colour;
text-decoration: none;
color: $base-colour;
text-decoration: none;
}
h1,
@ -18,26 +18,26 @@ h6,
p,
ul,
ol {
margin-bottom: $base-margin-bottom;
margin-bottom: $base-margin-bottom;
}
ul,
ol {
margin-left: $base-margin-bottom;
margin-left: $base-margin-bottom;
}
ul ul,
ol ol {
margin-bottom: 0;
margin-bottom: 0;
}
img {
display: block;
height: auto;
max-width: 100%;
display: block;
height: auto;
max-width: 100%;
}
blockquote {
font-style: italic;
padding-left: $base-margin-bottom;
font-style: italic;
padding-left: $base-margin-bottom;
}

View file

@ -1,10 +1,10 @@
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
border: 0;
font-size: 100%;
font: inherit;
margin: 0;
padding: 0;
vertical-align: baseline;
border: 0;
font-size: 100%;
font: inherit;
margin: 0;
padding: 0;
vertical-align: baseline;
}
article,
@ -19,7 +19,7 @@ menu,
nav,
section,
main {
display: block;
display: block;
}
address,
@ -28,29 +28,29 @@ cite,
dfn,
th,
var {
font-style: normal;
font-weight: normal;
font-style: normal;
font-weight: normal;
}
blockquote, q {
quotes: none;
quotes: none;
}
blockquote,
q {
&:before,
&:after {
content: '';
content: none;
}
&:before,
&:after {
content: '';
content: none;
}
}
table {
border-collapse: collapse;
border-spacing: 0;
border-collapse: collapse;
border-spacing: 0;
}
th {
font-weight: bold;
text-align: left;
}
font-weight: bold;
text-align: left;
}

View file

@ -1,35 +1,35 @@
.alignleft {
float: left;
float: left;
}
img.alignleft {
margin-right: $gutter * 1px;
margin-right: $gutter * 1px;
}
.alignright {
float: right;
float: right;
}
img.alignright {
margin-left : $gutter * 1px;
margin-left : $gutter * 1px;
}
.aligncenter {
display: block;
margin: {
left: auto;
right: auto;
}
display: block;
margin: {
left: auto;
right: auto;
}
}
.clearfix {
&:before,
&:after{
content: '';
display: table;
line-height: 0;
}
&:after{
clear: both;
}
&:before,
&:after{
content: '';
display: table;
line-height: 0;
}
&:after{
clear: both;
}
}