Skip to content

Commit

Permalink
Changing header
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveBathnes committed May 7, 2020
1 parent 1c67012 commit 93eea09
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion catalogue.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

<body>
<div class="container">
<ul class="nav nav-pills">
<ul class="nav nav-tabs">
<li class="nav-item">
<a class="nav-link" href="/">Usage</a>
</li>
Expand Down
13 changes: 7 additions & 6 deletions css/custom.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
body {
background-color: #F5F5F5;
padding-top: 40px;
background-color: #FAFAFA
}

#main {
padding-top: 10px
}

.nav {
margin-top: 10px
padding-top: 20px
}

/* Text */
Expand All @@ -17,6 +14,10 @@
font-size: 2.1em;
}

h4 {
padding-top: 30px
}

/* Custom colours */


Expand Down
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ var paths = {
srcCNAME: 'CNAME',
srcCSS: 'css/*.css',
srcNodeCSS: [
'node_modules/bootswatch/dist/sandstone/bootstrap.min.css',
'node_modules/bootswatch/dist/materia/bootstrap.min.css',
'node_modules/font-awesome/css/font-awesome.min.css',
'node_modules/dc/dc.min.css',
'node_modules/mapbox-gl/dist/mapbox-gl.css',
Expand Down Expand Up @@ -149,7 +149,7 @@ gulp.task('copy:dist', gulp.series('data:dist', 'cname:dist', 'html:dist', 'maps

gulp.task('inject', function () {
var target = gulp.src('tmp/*.html');
var sourcejs = gulp.src(['tmp/js/jquery.min.js', 'tmp/js/crossfilter.min.js', 'tmp/js/d3.min.js', 'tmp/js/dc.min.js', 'tmp/js/leaflet.js', 'tmp/js/mapbox-gl.js', 'tmp/js/*.js'], { read: false });
var sourcejs = gulp.src(['tmp/js/jquery.js', 'tmp/js/crossfilter.js', 'tmp/js/d3.js', 'tmp/js/dc.js', 'tmp/js/leaflet.js', 'tmp/js/mapbox-gl.js', 'tmp/js/*.js'], { read: false });
var sourcecss = gulp.src('tmp/css/*.css', { read: false });
return target
.pipe(inject(sourcecss, { relative: true }))
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<body>
<div class="container">
<ul class="nav nav-pills">
<ul class="nav nav-tabs">
<li class="nav-item">
<a class="nav-link active" href="/">Usage</a>
</li>
Expand Down
2 changes: 1 addition & 1 deletion members.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

<body>
<div class="container">
<ul class="nav nav-pills">
<ul class="nav nav-tabs">
<li class="nav-item">
<a class="nav-link" href="/">Usage</a>
</li>
Expand Down

0 comments on commit 93eea09

Please sign in to comment.