Skip to content

Commit b9ab657

Browse files
committed
Actually update to gulp4@
1 parent 70485a6 commit b9ab657

7 files changed

+2571
-1872
lines changed

css/new-age.css

+19-19
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* Start Bootstrap - New Age Theme
3-
* Copyright 2013-2018 Blackrock Digital
3+
* Copyright 2013-2019 Blackrock Digital
44
* Licensed under MIT License (https://github.com/BlackrockDigital/startbootstrap-new-age/blob/master/LICENSE)
55
*/
66
.heading-font {
@@ -30,11 +30,11 @@ a {
3030
-webkit-transition: all 0.35s;
3131
-moz-transition: all 0.35s;
3232
transition: all 0.35s;
33-
color: #EF6C00;
33+
color: #3E9FA9;
3434
}
3535
a:hover,
3636
a:focus {
37-
color: #bc5500;
37+
color: #307c84;
3838
}
3939
hr {
4040
max-width: 100px;
@@ -79,7 +79,7 @@ p {
7979
}
8080
.navbar-default .navbar-header .navbar-brand:hover,
8181
.navbar-default .navbar-header .navbar-brand:focus {
82-
color: #bc5500;
82+
color: #307c84;
8383
}
8484
.navbar-default .navbar-header .navbar-toggle {
8585
font-size: 12px;
@@ -98,11 +98,11 @@ p {
9898
}
9999
.navbar-default .nav > li > a:hover,
100100
.navbar-default .nav > li > a:focus:hover {
101-
color: #EF6C00;
101+
color: #3E9FA9;
102102
}
103103
.navbar-default .nav > li.active > a,
104104
.navbar-default .nav > li.active > a:focus {
105-
color: #EF6C00 !important;
105+
color: #3E9FA9 !important;
106106
background-color: transparent;
107107
}
108108
.navbar-default .nav > li.active > a:hover,
@@ -141,7 +141,7 @@ p {
141141
}
142142
.navbar-default.affix .navbar-header .navbar-brand:hover,
143143
.navbar-default.affix .navbar-header .navbar-brand:focus {
144-
color: #EF6C00;
144+
color: #3E9FA9;
145145
}
146146
.navbar-default.affix .nav > li > a,
147147
.navbar-default.affix .nav > li > a:focus {
@@ -150,19 +150,19 @@ p {
150150
}
151151
.navbar-default.affix .nav > li > a:hover,
152152
.navbar-default.affix .nav > li > a:focus:hover {
153-
color: #EF6C00;
153+
color: #3E9FA9;
154154
}
155155
}
156156
header {
157157
position: relative;
158158
width: 100%;
159159
min-height: auto;
160160
overflow-y: hidden;
161-
background: url("../img/bg-pattern.png"), #79F1A4;
161+
background: url("../img/bg-pattern.png"), #79f17f;
162162
/* fallback for old browsers */
163-
background: url("../img/bg-pattern.png"), -webkit-linear-gradient(to left, #79F1A4, #0E5CAD);
163+
background: url("../img/bg-pattern.png"), -webkit-linear-gradient(to left, #79f17f, #0E5CAD);
164164
/* Chrome 10-25, Safari 5.1-6 */
165-
background: url("../img/bg-pattern.png"), linear-gradient(to left, #79F1A4, #0E5CAD);
165+
background: url("../img/bg-pattern.png"), linear-gradient(to left, #79f17f, #0E5CAD);
166166
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
167167
color: white;
168168
}
@@ -302,8 +302,8 @@ section.features .feature-item h3 {
302302
}
303303
section.features .feature-item i {
304304
font-size: 80px;
305-
background: -webkit-linear-gradient(to left, #79F1A4, #0E5CAD);
306-
background: linear-gradient(to left, #79F1A4, #0E5CAD);
305+
background: -webkit-linear-gradient(to left, #79f17f, #0E5CAD);
306+
background: linear-gradient(to left, #79f17f, #0E5CAD);
307307
-webkit-background-clip: text;
308308
-webkit-text-fill-color: transparent;
309309
}
@@ -421,12 +421,12 @@ footer ul li a.active {
421421
border-radius: 1em;
422422
}
423423
.bg-primary {
424-
background: #EF6C00;
425-
background: -webkit-linear-gradient(#EF6C00, #d66000);
426-
background: linear-gradient(#EF6C00, #d66000);
424+
background: #3E9FA9;
425+
background: -webkit-linear-gradient(#3E9FA9, #378d96);
426+
background: linear-gradient(#3E9FA9, #378d96);
427427
}
428428
.text-primary {
429-
color: #EF6C00;
429+
color: #3E9FA9;
430430
}
431431
.no-gutter > [class*='col-'] {
432432
padding-right: 0;
@@ -448,8 +448,8 @@ footer ul li a.active {
448448
.btn-outline:active,
449449
.btn-outline.active {
450450
color: white;
451-
border-color: #EF6C00;
452-
background: #EF6C00;
451+
border-color: #3E9FA9;
452+
background: #3E9FA9;
453453
bottom: 5px;
454454
box-shadow: 1px 2px 3px #555555, 1px 4px 3px #3c3c3c, 1px 5px 3px #090909;
455455
}

css/new-age.min.css

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gulpfile.js

+24-30
Original file line numberDiff line numberDiff line change
@@ -17,24 +17,18 @@ var themeCopyright = ['/*!\n',
1717
''
1818
].join('');
1919

20-
gulp.task("build", ["less", "minify-css", "minify-js", "copy-vendor", "jekyll-build"]);
21-
22-
gulp.task("serve", ["build", "browser-sync", "watch"]);
23-
24-
gulp.task("default", ["build"]);
25-
2620
// Compile LESS files from /less into /css
27-
gulp.task("less", function() {
28-
return gulp.src("less/new-age.less")
21+
function lessCSS() {
22+
return gulp.src(["less/new-age.less"])
2923
.pipe(less())
3024
.pipe(header(themeCopyright, { pkg: pkg }))
3125
.pipe(gulp.dest("css"))
3226
.pipe(browserSync.reload({
3327
stream: true
34-
}))
35-
});
28+
}))
29+
};
3630

37-
gulp.task("minify-css", ["less"], function() {
31+
function minifyCSS() {
3832
return gulp.src("css/new-age.css")
3933
.pipe(cleanCSS({ compatibility: "ie8" }))
4034
.pipe(header(themeCopyright, { pkg: pkg }))
@@ -43,9 +37,9 @@ gulp.task("minify-css", ["less"], function() {
4337
.pipe(browserSync.reload({
4438
stream: true
4539
}))
46-
});
40+
};
4741

48-
gulp.task("minify-js", function() {
42+
function minifyJS() {
4943
return gulp.src("js/new-age.js")
5044
.pipe(uglify())
5145
.pipe(header(themeCopyright, { pkg: pkg }))
@@ -54,10 +48,10 @@ gulp.task("minify-js", function() {
5448
.pipe(browserSync.reload({
5549
stream: true
5650
}))
57-
});
51+
};
5852

5953
// Copy vendor libraries from /node_modules into /vendor
60-
gulp.task("copy-vendor", function() {
54+
function copyVendor(done) {
6155
gulp.src(["node_modules/bootstrap/dist/**/*", "!**/npm.js", "!**/bootstrap-theme.*", "!**/*.map"])
6256
.pipe(gulp.dest("vendor/bootstrap"));
6357

@@ -76,30 +70,30 @@ gulp.task("copy-vendor", function() {
7670
"!node_modules/font-awesome/*.json"
7771
])
7872
.pipe(gulp.dest("vendor/font-awesome"))
79-
});
73+
done()
74+
};
8075

81-
gulp.task("jekyll-build", function (done) {
76+
function jekyllBuild(done) {
8277
browserSync.notify("Building Jekyll");
8378
return childProc.spawn("jekyll", ["build"], {stdio: "inherit"})
8479
.on("close", done);
85-
});
86-
87-
gulp.task("jekyll-rebuild", ["jekyll-build"], function () {
88-
browserSync.reload();
89-
});
80+
};
9081

91-
gulp.task("browser-sync", ["jekyll-build"], function() {
82+
function browserSync() {
9283
browserSync.init({
9384
server: {
9485
baseDir: "_site"
9586
}
9687
})
97-
});
88+
};
9889

99-
gulp.task("watch", function() {
100-
gulp.watch("less/*.less", ["less"]);
101-
gulp.watch("css/*.css", ["minify-css"]);
102-
gulp.watch("js/*.js", ["minify-js"]);
90+
function watch() {
91+
gulp.watch("less/*.less", lessCSS);
92+
gulp.watch("css/*.css", minifyCSS);
93+
gulp.watch("js/*.js", minifyJS);
10394
gulp.watch("js/**/*.js", browserSync.reload);
104-
gulp.watch(["*.html", "_includes/*.html", "_layouts/*.html", "_posts/*"], ["jekyll-rebuild"]);
105-
});
95+
gulp.watch(["*.html", "_includes/*.html", "_layouts/*.html", "_posts/*"], browserSync.reload);
96+
};
97+
98+
exports.build = gulp.series(lessCSS, minifyCSS, minifyJS, copyVendor, jekyllBuild);
99+
exports.serve = gulp.series(lessCSS, minifyCSS, minifyJS, copyVendor, jekyllBuild, browserSync.reload, watch);

js/new-age.min.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* Start Bootstrap - New Age Theme
3-
* Copyright 2013-2018 Blackrock Digital
3+
* Copyright 2013-2019 Blackrock Digital
44
* Licensed under MIT License (https://github.com/BlackrockDigital/startbootstrap-new-age/blob/master/LICENSE)
55
*/
66
!function(t){"use strict";t("a.page-scroll").bind("click",function(a){var o=t(this);t("html, body").stop().animate({scrollTop:t(o.attr("href")).offset().top-50},1250,"easeInOutExpo"),a.preventDefault()}),t("body").scrollspy({target:".navbar-fixed-top",offset:100}),t(".navbar-collapse ul li a").click(function(){t(".navbar-toggle:visible").click()}),t("#mainNav").affix({offset:{top:50}})}(jQuery);

less/variables.less

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
// Gray and Brand Colors for use across theme
44

5-
@theme-primary: #EF6C00;
6-
@theme-secondary: #79F1A4;
5+
@theme-primary: #3E9FA9;
6+
@theme-secondary: rgb(121, 241, 127);
77
@theme-tertiary: #0E5CAD;
88

99

0 commit comments

Comments
 (0)