Re-organised assets and updated gulpfile

This commit is contained in:
Oliver Davies 2016-03-29 22:44:47 +01:00
parent 1ed53d7357
commit e3854c99be
123 changed files with 788 additions and 140 deletions

11
assets/sass/_base.sass Normal file
View file

@ -0,0 +1,11 @@
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,11 @@
.badges
> a
display: block
margin: 0 0 10px
text-align: center
&:last-child
margin-bottom: 0
&[class$="da-member"] img
max-width: 152px

View file

@ -0,0 +1,4 @@
.copyright
border-top: 1px solid #CCC
margin-top: 1em
padding-top: 1em

View file

@ -0,0 +1,19 @@
.meetups
@include clearfix
ul
list-style: none
padding-left: 0
margin-left: 0
li
display: inline-block
padding: 5px 0
margin: 0 5px 5px 0
a
display: block
img
max-height: 40px
width: auto

View file

@ -0,0 +1,14 @@
.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

View file

@ -0,0 +1,3 @@
code[data-gist-id]
background: transparent
padding: 0

View file

@ -0,0 +1,3 @@
.page--talk
.abstract__title
@extend .sr-only

View file

@ -0,0 +1,11 @@
.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,6 @@
.about-author
@include clearfix
img
float: left
margin: 0 1em 1em 0

View file

@ -0,0 +1,11 @@
.experience
@include clearfix
.experience__logo
@extend .pull-right
margin: 0 0 10px 10px
max-width: 150px
.experience__role
font-style: italic
margin-bottom: 10px

View file

@ -0,0 +1,21 @@
.project--skills
ul
list-style: none
margin-left: 0
padding-left: 0
li
display: inline-block
margin-right: 5px
img
max-height: 30px
.project--company__has-logo
a:link,
a:hover
border-bottom: 0
display: block
img
max-height: 50px

21
assets/sass/site.sass Normal file
View file

@ -0,0 +1,21 @@
@import '../../vendor/bower/bootstrap-sass/assets/stylesheets/bootstrap/variables'
@import '../../vendor/bower/bootstrap-sass/assets/stylesheets/bootstrap/mixins/clearfix'
@import '../../vendor/bower/bootstrap-sass/assets/stylesheets/bootstrap/mixins/center-block'
@import '../../vendor/bower/bootstrap-sass/assets/stylesheets/bootstrap/mixins/hide-text'
@import '../../vendor/bower/bootstrap-sass/assets/stylesheets/bootstrap/mixins'
@import '../../vendor/bower/bootstrap-sass/assets/stylesheets/bootstrap/mixins/tab-focus'
@import '../../vendor/bower/bootstrap-sass/assets/stylesheets/bootstrap/mixins/image'
@import '../../vendor/bower/bootstrap-sass/assets/stylesheets/bootstrap/utilities'
@import '../../vendor/bower/bootstrap-sass/assets/stylesheets/bootstrap/scaffolding'
@import '../../vendor/bower/compass-breakpoint/stylesheets/breakpoint'
@import 'base'
@import 'components/badges'
@import 'components/content-types/**'
@import 'components/footer'
@import 'components/meetups'
@import 'components/testimonials'
@import 'pages/blog-list'
@import 'pages/blog-post'
@import 'pages/experience'
@import 'pages/portfolio'

2
assets/sass/vendor.sass Normal file
View file

@ -0,0 +1,2 @@
@import '../../vendor/bower/compass-breakpoint/stylesheets/breakpoint'
@import '../../vendor/bower/bootstrap-sass/assets/stylesheets/bootstrap'