Moved things
This commit is contained in:
parent
dad3da5ce7
commit
c37df83df7
29 changed files with 0 additions and 0 deletions
7
sass/base/_base.scss
Normal file
7
sass/base/_base.scss
Normal file
|
@ -0,0 +1,7 @@
|
|||
body {
|
||||
padding-top: 60px;
|
||||
}
|
||||
|
||||
main img {
|
||||
@extend .img-responsive;
|
||||
}
|
11
sass/base/_lists.scss
Normal file
11
sass/base/_lists.scss
Normal file
|
@ -0,0 +1,11 @@
|
|||
dt {
|
||||
margin-top: .5em;
|
||||
|
||||
&:after {
|
||||
content: ':';
|
||||
}
|
||||
}
|
||||
|
||||
dd {
|
||||
padding-left: 2em;
|
||||
}
|
3
sass/base/_tables.scss
Normal file
3
sass/base/_tables.scss
Normal file
|
@ -0,0 +1,3 @@
|
|||
table {
|
||||
width: 100%;
|
||||
}
|
8
sass/components/_about-author.scss
Normal file
8
sass/components/_about-author.scss
Normal file
|
@ -0,0 +1,8 @@
|
|||
.about-author {
|
||||
@include clearfix;
|
||||
|
||||
img {
|
||||
float: left;
|
||||
margin: 0 1em 1em 0;
|
||||
}
|
||||
}
|
5
sass/components/_footer.scss
Normal file
5
sass/components/_footer.scss
Normal file
|
@ -0,0 +1,5 @@
|
|||
.copyright {
|
||||
border-top: 1px solid #CCC;
|
||||
margin-top: 1em;
|
||||
padding-top: 1em;
|
||||
}
|
6
sass/components/_latest-posts.scss
Normal file
6
sass/components/_latest-posts.scss
Normal file
|
@ -0,0 +1,6 @@
|
|||
.latest-posts {
|
||||
li.active a {
|
||||
color: $dark-gray;
|
||||
font-weight: $semibold;
|
||||
}
|
||||
}
|
7
sass/components/_navbar.scss
Normal file
7
sass/components/_navbar.scss
Normal file
|
@ -0,0 +1,7 @@
|
|||
/*
|
||||
@each $page in experience, services, testimonials, talks, blog, contact {
|
||||
.page--#{$page} .nav__#{$page} {
|
||||
@extend .active;
|
||||
}
|
||||
}
|
||||
*/
|
5
sass/components/blocks/_drupalcon-la.scss
Normal file
5
sass/components/blocks/_drupalcon-la.scss
Normal file
|
@ -0,0 +1,5 @@
|
|||
.block--drupalcon_la {
|
||||
img {
|
||||
margin-bottom: .5em;
|
||||
}
|
||||
}
|
21
sass/components/blocks/_meetups.scss
Normal file
21
sass/components/blocks/_meetups.scss
Normal 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;
|
||||
}
|
||||
}
|
14
sass/components/pages/_blog-listing.scss
Normal file
14
sass/components/pages/_blog-listing.scss
Normal 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;
|
||||
}
|
||||
}
|
11
sass/components/pages/_testimonials.scss
Normal file
11
sass/components/pages/_testimonials.scss
Normal file
|
@ -0,0 +1,11 @@
|
|||
.page--testimonials .testimonial {
|
||||
@include clearfix;
|
||||
margin-bottom: 10px;
|
||||
|
||||
.testimonial__image {
|
||||
float: right;
|
||||
margin: 0 0 10px 10px;
|
||||
max-height: 100px;
|
||||
max-width: 100px;
|
||||
}
|
||||
}
|
6
sass/styles.scss
Normal file
6
sass/styles.scss
Normal file
|
@ -0,0 +1,6 @@
|
|||
@import 'compass';
|
||||
@import 'bootstrap';
|
||||
|
||||
@import "variables/**/*";
|
||||
@import "base/**/*";
|
||||
@import "components/**/*";
|
1
sass/variables/_colours.scss
Normal file
1
sass/variables/_colours.scss
Normal file
|
@ -0,0 +1 @@
|
|||
$dark-gray: #333;
|
2
sass/variables/_typography.scss
Normal file
2
sass/variables/_typography.scss
Normal file
|
@ -0,0 +1,2 @@
|
|||
// Font weights.
|
||||
$semibold: 500;
|
Loading…
Add table
Add a link
Reference in a new issue