Add govuk-template-flask-skeleton

This commit is contained in:
Rebecca Law
2015-11-23 13:50:37 +00:00
parent 9c07a61224
commit a9fe2e6bb7
92 changed files with 7201 additions and 5 deletions

View File

@@ -0,0 +1,36 @@
// Lists
// ==========================================================================
ul,
ol {
list-style-type: none;
padding: 0;
}
// Bulleted lists
.list-bullet {
list-style-type: disc;
padding-left: 20px;
}
// Numbered lists
.list-number {
list-style-type: decimal;
padding-left: 20px;
@include ie-lte(7) {
padding-left: 28px;
}
}
.list-bullet,
.list-number {
margin-top: 5px;
margin-bottom: 20px;
}
.list-bullet li,
.list-number li {
margin-bottom: 5px;
}