Skip to content

Commit

Permalink
bootstrap 4.1.3 update and dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtmiller committed Sep 11, 2018
1 parent 115b300 commit 5824880
Show file tree
Hide file tree
Showing 17 changed files with 775 additions and 760 deletions.
10 changes: 10 additions & 0 deletions css/one-page-wonder.css
@@ -1,3 +1,9 @@
/*!
* Start Bootstrap - One Page Wonder v5.0.0 (https://startbootstrap.com/template-overviews/one-page-wonder)
* Copyright 2013-2018 Start Bootstrap
* Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap-one-page-wonder/blob/master/LICENSE)
*/

body {
font-family: 'Lato';
}
Expand Down Expand Up @@ -53,6 +59,7 @@ header.masthead {
overflow: hidden;
padding-top: calc(7rem + 72px);
padding-bottom: 7rem;
background: -webkit-gradient(linear, left bottom, left top, from(#ff6a00), to(#ee0979));
background: linear-gradient(0deg, #ff6a00 0%, #ee0979 100%);
background-repeat: no-repeat;
background-position: center center;
Expand All @@ -77,6 +84,7 @@ header.masthead .bg-circle {
z-index: 0;
position: absolute;
border-radius: 100%;
background: -webkit-gradient(linear, left bottom, left top, from(#ee0979), to(#ff6a00));
background: linear-gradient(0deg, #ee0979 0%, #ff6a00 100%);
}

Expand Down Expand Up @@ -136,6 +144,7 @@ header.masthead .bg-circle-4 {
}

.btn-primary:focus {
-webkit-box-shadow: 0 0 0 0.2rem rgba(238, 9, 121, 0.5);
box-shadow: 0 0 0 0.2rem rgba(238, 9, 121, 0.5);
}

Expand All @@ -150,5 +159,6 @@ header.masthead .bg-circle-4 {
}

.btn-secondary:focus {
-webkit-box-shadow: 0 0 0 0.2rem rgba(255, 106, 0, 0.5);
box-shadow: 0 0 0 0.2rem rgba(255, 106, 0, 0.5);
}
6 changes: 5 additions & 1 deletion css/one-page-wonder.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion gulpfile.js
Expand Up @@ -3,6 +3,7 @@ var sass = require('gulp-sass');
var header = require('gulp-header');
var cleanCSS = require('gulp-clean-css');
var rename = require("gulp-rename");
var autoprefixer = require('gulp-autoprefixer');
var pkg = require('./package.json');
var browserSync = require('browser-sync').create();

Expand All @@ -12,7 +13,7 @@ var banner = ['/*!\n',
' * Copyright 2013-' + (new Date()).getFullYear(), ' <%= pkg.author %>\n',
' * Licensed under <%= pkg.license %> (https://github.com/BlackrockDigital/<%= pkg.name %>/blob/master/LICENSE)\n',
' */\n',
''
'\n'
].join('');

// Copy third party libraries from /node_modules into /vendor
Expand Down Expand Up @@ -41,6 +42,13 @@ gulp.task('css:compile', function() {
.pipe(sass.sync({
outputStyle: 'expanded'
}).on('error', sass.logError))
.pipe(autoprefixer({
browsers: ['last 2 versions'],
cascade: false
}))
.pipe(header(banner, {
pkg: pkg
}))
.pipe(gulp.dest('./css'))
});

Expand Down

0 comments on commit 5824880

Please sign in to comment.