Skip to content
This repository was archived by the owner on Jun 23, 2023. It is now read-only.

Commit 184ae41

Browse files
committed
add styles and automation
1 parent cd990ba commit 184ae41

10 files changed

+6196
-0
lines changed

css/base/baseline.css

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
body {
2+
font-family: sans-serif;
3+
}
4+
5+
.main-container {
6+
padding: 10px 40px 30px 40px;
7+
}

css/base/variables.css

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
$mainBlue: #3999C9;
2+
$darkBlue: #21536C;

css/modules/footer.css

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.site-footer {
2+
background-color: $darkBlue;
3+
display: flex;
4+
align-items: center;
5+
justify-content: space-evenly;
6+
padding: 10px;
7+
color: white;
8+
9+
.logo {
10+
width: 150px;
11+
}
12+
}

css/modules/header.css

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
.site-header {
2+
background-color: $mainBlue;
3+
display: flex;
4+
align-items: center;
5+
justify-content: space-between;
6+
padding: 10px 20px;
7+
color: white;
8+
9+
.logo {
10+
width: 150px;
11+
}
12+
13+
.main-navigation {
14+
ul {
15+
margin: 0;
16+
padding: 0;
17+
list-style-type: none;
18+
19+
li {
20+
display: inline-block;
21+
margin: 0 5px;
22+
23+
a {
24+
color: white;
25+
text-decoration: none;
26+
}
27+
}
28+
29+
li.current-menu-item a {
30+
color: #ddd;
31+
}
32+
}
33+
}
34+
}

css/modules/project.css

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.project {
2+
.section.project-status {
3+
h2, .project-status-text {
4+
display: inline;
5+
}
6+
}
7+
8+
.project-image-container img {
9+
height: 300px;
10+
max-width: 100%;
11+
}
12+
}

css/style.css

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*
2+
Theme Name: Code for Durham Theme
3+
Author: Code for Durham
4+
Version: 1.0
5+
*/
6+
7+
@import "normalize.css";
8+
9+
@import "base/variables";
10+
11+
@import "base/baseline";
12+
13+
@import "modules/header";
14+
@import "modules/footer";
15+
@import "modules/project";

gulpfile.js

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
var gulp = require('gulp'),
2+
settings = require('./settings'),
3+
browserSync = require('browser-sync').create(),
4+
postcss = require('gulp-postcss'),
5+
autoprefixer = require('autoprefixer'),
6+
cssvars = require('postcss-simple-vars'),
7+
nested = require('postcss-nested'),
8+
cssImport = require('postcss-import'),
9+
mixins = require('postcss-mixins')
10+
11+
gulp.task('styles', function() {
12+
return gulp.src(settings.themeLocation + 'css/style.css')
13+
.pipe(postcss([cssImport, mixins, cssvars, nested, autoprefixer]))
14+
.on('error', (error) => console.log(error.toString()))
15+
.pipe(gulp.dest(settings.themeLocation));
16+
});
17+
18+
gulp.task('watch', function() {
19+
browserSync.init({
20+
notify: false,
21+
proxy: settings.urlToPreview,
22+
ghostMode: false
23+
});
24+
25+
gulp.watch('./**/*.php', function() {
26+
browserSync.reload();
27+
});
28+
gulp.watch(settings.themeLocation + 'css/**/*.css', gulp.series('waitForStyles'));
29+
});
30+
31+
gulp.task('waitForStyles', gulp.series('styles', function() {
32+
return gulp.src(settings.themeLocation + 'style.css')
33+
.pipe(browserSync.stream());
34+
}));

0 commit comments

Comments
 (0)