Refactoring base SASS
This commit is contained in:
parent
b1534b9a0d
commit
a50d913cc4
5 changed files with 53 additions and 112 deletions
|
@ -1,93 +0,0 @@
|
|||
// Yaho YUI Reset
|
||||
|
||||
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
fieldset, img {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
address, caption, cite, dfn, th, var {
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
caption, th {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-size: 100%;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
q:before, q:after {
|
||||
content: '';
|
||||
}
|
||||
|
||||
abbr, acronym {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
// Normalisation
|
||||
|
||||
html {
|
||||
background-color: $bodyBackgroundColour;
|
||||
color: $color;
|
||||
font-family: $baseFontStack;
|
||||
font-size: ($baseFontSize / 16) * 1em;
|
||||
line-height: $baseLineHeight;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6, p, ul, ol, table, pre, fieldset {
|
||||
margin-bottom: $marginBottom * 1px;
|
||||
}
|
||||
|
||||
ul ul, ol ol {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: ($h1FontSize / $baseFontSize) * 1em;
|
||||
line-height: ($marginBottom / $h1FontSize ) * 1em;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: ($h2FontSize / $baseFontSize) * 1em;
|
||||
line-height: ($marginBottom / $h2FontSize ) * 1em;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: ($h3FontSize / $baseFontSize) * 1em;
|
||||
line-height: ($marginBottom / $h3FontSize ) * 1em;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: ($h4FontSize / $baseFontSize) * 1em;
|
||||
line-height: ($marginBottom / $h4FontSize ) * 1em;
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: ($h5FontSize / $baseFontSize) * 1em;
|
||||
line-height: ($marginBottom / $h5FontSize ) * 1em;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: ($h6FontSize / $baseFontSize) * 1em;
|
||||
line-height: ($marginBottom / $h6FontSize ) * 1em;
|
||||
}
|
||||
|
||||
ul, ol {
|
||||
margin-left: $listMarginLeft * 1px;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
35
_/scss/_reset.scss
Normal file
35
_/scss/_reset.scss
Normal file
|
@ -0,0 +1,35 @@
|
|||
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
fieldset, img {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
address, caption, cite, dfn, th, var {
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
caption, th {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-size: 100%;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
q:before, q:after {
|
||||
content: '';
|
||||
}
|
||||
|
||||
abbr, acronym {
|
||||
border: 0;
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
// Base
|
||||
|
||||
$color: #222;
|
||||
$color: #333;
|
||||
$bodyBackgroundColour: #fff;
|
||||
|
||||
$baseFontStack: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||||
|
@ -21,7 +21,7 @@ $listMarginLeft: 24;
|
|||
|
||||
// Scaffolding
|
||||
|
||||
$containerWidth: 1200;
|
||||
$containerWidth: 940;
|
||||
$containerPadding: 40;
|
||||
$columnGutter: 20;
|
||||
$columnCount: 12;
|
||||
|
|
|
@ -11,7 +11,8 @@ Author: Mike Francis
|
|||
|
||||
// Base
|
||||
|
||||
@import "base";
|
||||
@import "reset";
|
||||
@import "normalise";
|
||||
|
||||
// Main
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue