Move sass partials

This commit is contained in:
Oliver Davies 2015-10-26 23:47:13 +00:00
parent 3615ef2c7c
commit 58b5521c4a
11 changed files with 8 additions and 7 deletions

15
sass/partials/_base.scss Normal file
View file

@ -0,0 +1,15 @@
body {
padding-top: 60px;
}
main {
a:link,
a:hover {
border-bottom: 1px solid;
text-decoration: none;
}
img {
@extend .img-responsive;
}
}

View file

@ -0,0 +1,14 @@
.page--blog__list {
ul.posts {
list-style: none;
margin-bottom: 2em;
padding-left: 0;
}
.post {
@include clearfix;
border-bottom: 1px solid #CCC;
margin-bottom: 1em;
padding-bottom: 2em;
}
}

View file

@ -0,0 +1,8 @@
.about-author {
@include clearfix;
img {
float: left;
margin: 0 1em 1em 0;
}
}

View file

@ -0,0 +1,5 @@
.copyright {
border-top: 1px solid #CCC;
margin-top: 1em;
padding-top: 1em;
}

View file

@ -0,0 +1,21 @@
.meetups {
@include clearfix;
ul {
@include inline-block-list;
}
li {
padding: 5px 0;
margin: 0 5px 5px 0;
}
a {
display: block;
}
img {
max-height: 45px;
width: auto;
}
}

View file

@ -0,0 +1,17 @@
.page--testimonials .testimonial {
@include clearfix;
margin-bottom: 10px;
.testimonial__image {
@extend .img-circle;
@extend .pull-right;
height: 75px;
margin: 0 0 10px 10px;
width: 75px;
@include breakpoint($screen-sm) {
height: 90px;
width: 90px;
}
}
}