Remove references to bootstrap
This commit is contained in:
parent
10ac00b601
commit
b6504ae92b
|
@ -10,9 +10,6 @@ main
|
||||||
border-bottom: 1px solid
|
border-bottom: 1px solid
|
||||||
text-decoration: none
|
text-decoration: none
|
||||||
|
|
||||||
img
|
|
||||||
@extend .img-responsive
|
|
||||||
|
|
||||||
p img
|
p img
|
||||||
margin: 1.5em 0
|
margin: 1.5em 0
|
||||||
|
|
||||||
|
|
|
@ -1,35 +1,35 @@
|
||||||
=from($device)
|
// =from($device)
|
||||||
@media screen and (min-width: $device)
|
// @media screen and (min-width: $device)
|
||||||
@content
|
// @content
|
||||||
|
|
||||||
=until($device)
|
// =until($device)
|
||||||
@media screen and (max-width: $device - 1px)
|
// @media screen and (max-width: $device - 1px)
|
||||||
@content
|
// @content
|
||||||
|
|
||||||
=mobile
|
// =mobile
|
||||||
@media screen and (max-width: $screen-tablet - 1px)
|
// @media screen and (max-width: $screen-tablet - 1px)
|
||||||
@content
|
// @content
|
||||||
|
|
||||||
=tablet
|
// =tablet
|
||||||
@media screen and (min-width: $screen-tablet)
|
// @media screen and (min-width: $screen-tablet)
|
||||||
@content
|
// @content
|
||||||
|
|
||||||
=tablet-only
|
// =tablet-only
|
||||||
@media screen and (min-width: $screen-tablet) and (max-width: $screen-desktop - 1px)
|
// @media screen and (min-width: $screen-tablet) and (max-width: $screen-desktop - 1px)
|
||||||
@content
|
// @content
|
||||||
|
|
||||||
=touch
|
// =touch
|
||||||
@media screen and (max-width: $screen-desktop - 1px)
|
// @media screen and (max-width: $screen-desktop - 1px)
|
||||||
@content
|
// @content
|
||||||
|
|
||||||
=desktop
|
// =desktop
|
||||||
@media screen and (min-width: $screen-desktop)
|
// @media screen and (min-width: $screen-desktop)
|
||||||
@content
|
// @content
|
||||||
|
|
||||||
=desktop-only
|
// =desktop-only
|
||||||
@media screen and (min-width: $screen-desktop) and (max-width: $screen-lg - 1px)
|
// @media screen and (min-width: $screen-desktop) and (max-width: $screen-lg - 1px)
|
||||||
@content
|
// @content
|
||||||
|
|
||||||
=widescreen
|
// =widescreen
|
||||||
@media screen and (min-width: $screen-lg)
|
// @media screen and (min-width: $screen-lg)
|
||||||
@content
|
// @content
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@import 'node_modules/bootstrap-sass/assets/stylesheets/bootstrap'
|
@import 'node_modules/bulma/bulma'
|
||||||
|
|
||||||
@import 'base'
|
@import 'base'
|
||||||
@import 'mixins'
|
@import 'mixins'
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
@import 'node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/clearfix'
|
|
||||||
|
|
||||||
.page--blog__list
|
.page--blog__list
|
||||||
ul.posts
|
ul.posts
|
||||||
list-style: none
|
list-style: none
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
@import 'node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/clearfix'
|
|
||||||
@import 'node_modules/bootstrap-sass/assets/stylesheets/bootstrap/variables'
|
|
||||||
@import '../mixins'
|
@import '../mixins'
|
||||||
|
|
||||||
.experience-item
|
.experience-item
|
||||||
margin-bottom: $padding-large-vertical * 3
|
// margin-bottom: $padding-large-vertical * 3
|
||||||
+clearfix
|
+clearfix
|
||||||
|
|
||||||
.experience-item-website
|
.experience-item-website
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
@import 'node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/clearfix'
|
|
||||||
|
|
||||||
.post-pager
|
.post-pager
|
||||||
clear: both
|
clear: both
|
||||||
margin-top: 2em
|
margin-top: 2em
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
@import 'node_modules/bootstrap-sass/assets/stylesheets/bootstrap/variables'
|
|
||||||
@import '../mixins'
|
@import '../mixins'
|
||||||
|
|
||||||
.project-company
|
.project-company
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
@import 'node_modules/bootstrap-sass/assets/stylesheets/bootstrap/variables'
|
|
||||||
@import '../mixins'
|
@import '../mixins'
|
||||||
|
|
||||||
.talk-full h1
|
.talk-full h1
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
@import 'node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/clearfix'
|
|
||||||
@import 'node_modules/bootstrap-sass/assets/stylesheets/bootstrap/variables'
|
|
||||||
@import '../mixins'
|
@import '../mixins'
|
||||||
|
|
||||||
.testimonial
|
.testimonial
|
||||||
|
@ -10,7 +8,3 @@
|
||||||
height: 75px
|
height: 75px
|
||||||
margin: 0 0 10px 10px
|
margin: 0 0 10px 10px
|
||||||
width: 75px
|
width: 75px
|
||||||
|
|
||||||
+until($screen-sm)
|
|
||||||
height: 90px
|
|
||||||
width: 90px
|
|
||||||
|
|
Reference in a new issue