Grunt SVG stuff and general tidy-up

This commit is contained in:
Mike Francis 2014-05-08 11:24:17 +01:00
parent 4eade92a01
commit b0be6463a8
14 changed files with 121 additions and 25 deletions

View file

@ -16,11 +16,33 @@ h4,
h5,
h6,
p,
hr,
ul,
ol {
margin-bottom: $base-margin-bottom;
}
h1 {
@include font-size($base-font-size * 2);
}
h2 {
@include font-size($base-font-size * 1.75);
}
h3 {
@include font-size($base-font-size * 1.5);
}
h4 {
@include font-size($base-font-size * 1.25);
}
h5,
h6 {
@include font-size($base-font-size);
}
ul,
ol {
margin-left: $base-margin-bottom;
@ -38,6 +60,37 @@ img {
}
blockquote {
font-style: italic;
font-family: serif;
padding-left: $base-margin-bottom;
}
em {
font-style: italic;
}
hr {
background-color: $base-colour;
border: 0;
color: $base-colour;
height: 1px;
}
h1,
h2,
h3,
h4,
h5,
h6,
strong,
th {
font-weight: bold;
}
table {
width: 100%;
th,
td {
padding: ($base-margin-bottom / 4);
text-align: left;
}
}