fixed typos, added other html files to gulp, better scrollbar
This commit is contained in:
parent
2382175d91
commit
e1e017f8b3
|
@ -29703,3 +29703,13 @@ body:not(.lg-from-hash)
|
|||
-o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
|
||||
transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 15px;
|
||||
background-color: #192031;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
border-radius: 10px;
|
||||
background-color: #4285F4;
|
||||
}
|
15
gulpfile.js
15
gulpfile.js
|
@ -61,7 +61,7 @@ gulp.task("other", function () {
|
|||
|
||||
gulp.task("html", function () {
|
||||
return gulp
|
||||
.src("./index.html")
|
||||
.src("./*.html")
|
||||
.pipe(
|
||||
htmlmin({
|
||||
collapseWhitespace: true,
|
||||
|
@ -82,13 +82,10 @@ gulp.task("html", function () {
|
|||
// Clean
|
||||
gulp.task("clean", function () {
|
||||
return gulp
|
||||
.src(
|
||||
["dist/css", "dist/js", "dist/images", "dist/index.html", "dist/fonts"],
|
||||
{
|
||||
read: false,
|
||||
allowEmpty: true,
|
||||
}
|
||||
)
|
||||
.src(["dist/css", "dist/js", "dist/images", "dist/*.html", "dist/fonts"], {
|
||||
read: false,
|
||||
allowEmpty: true,
|
||||
})
|
||||
.pipe(clean());
|
||||
});
|
||||
|
||||
|
@ -115,7 +112,7 @@ gulp.task("watch", function () {
|
|||
gulp.watch("./css/*.css", gulp.series("styles"));
|
||||
gulp.watch("./js/*.js", gulp.series("scripts"));
|
||||
gulp.watch("./images/**/*", gulp.series("images"));
|
||||
gulp.watch("./index.html", gulp.series("html"));
|
||||
gulp.watch("./*.html", gulp.series("html"));
|
||||
gulp.watch("./fonts/**/*", gulp.series("fonts"));
|
||||
});
|
||||
|
||||
|
|
|
@ -911,7 +911,7 @@
|
|||
fill="#293043"
|
||||
></path>
|
||||
</svg>
|
||||
<p class="big">Machne Learning</p>
|
||||
<p class="big">Machine Learning</p>
|
||||
</div>
|
||||
<div class="col-xl-3 col-md-3 col-sm-4 col-6">
|
||||
<svg width="70" height="70" viewBox="0 0 70 70" fill="none">
|
||||
|
@ -1107,7 +1107,7 @@
|
|||
<div class="row row-fix justify-content-center wow fadeInUp">
|
||||
<div class="col-xl-8 col-lg-10">
|
||||
<h6>Why Choose Us</h6>
|
||||
<h2>We believe firmly in nurturing curiosity</h2>
|
||||
<h2>We firmly believe in nurturing curiosity</h2>
|
||||
<p class="big">We use your child's ideas and build the skills needed for their project. This approach has proven to be the most effective in teaching otherwise bland content that will equip them fot the future.</p>
|
||||
<a
|
||||
class="button button-secondary button-nuka"
|
||||
|
|
Loading…
Reference in New Issue