-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
62813b5
commit b544bd9
Showing
12 changed files
with
54 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
# v0.2.5 | ||
## 06/18/2017 | ||
|
||
1. [](#improved) | ||
* Improve sass structure | ||
|
||
# v0.2.4 | ||
## 06/07/2017 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
name: Haywire | ||
version: 0.2.4 | ||
description: Starter theme/boilerplate for developers to get up and running quickly on new projects using modern frameworks and tools such as laravel-mix, vuejs & bootstrap-sass. | ||
version: 0.2.5 | ||
description: Starter theme/boilerplate for developers to get up and running quickly on new Grav projects using modern frameworks and tools such as laravel-mix, vuejs & bootstrap-sass. | ||
icon: empire | ||
author: | ||
name: Robbin Johansson | ||
email: [email protected] | ||
url: https://haywire.me | ||
homepage: https://github.com/robbinfellow/haywire-grav | ||
demo: https://grav.haywire.me/ | ||
keywords: haywire, boilerplate, starter-theme, vuejs, vue, laravel-mix, bootstrap-sass | ||
keywords: haywire, boilerplate, starter-theme, vuejs, laravel-mix, bootstrap-sass | ||
bugs: https://github.com/robbinfellow/haywire-grav/issues | ||
docs: https://github.com/robbinfellow/haywire-grav/blob/master/README.md | ||
license: MIT | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "haywire", | ||
"version": "0.2.4", | ||
"version": "0.2.5", | ||
"repository": "https://github.com/robbinfellow/haywire-grav.git", | ||
"author": "Robbin Johansson <[email protected]>", | ||
"scripts": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/** | ||
* Use this file to override bootstrap variables | ||
*/ | ||
|
||
// Base | ||
$body-bg: #fff; | ||
|
||
// Typography | ||
$font-size-base: 16px; | ||
$line-height-base: 1.8; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,13 @@ | ||
// BOOTSTRAP COMPONENTS | ||
@import "variables"; | ||
|
||
// Import npm dependencies | ||
@import "../node_modules/bootstrap-sass/assets/stylesheets/bootstrap"; | ||
|
||
//------------------------------------------- | ||
|
||
// TEMPLATE COMPONENTS | ||
|
||
// Global helper classes | ||
@import "template/global"; | ||
@import "common/global"; | ||
@import "common/utilities"; | ||
|
||
// Header | ||
@import "template/header"; | ||
|
||
// Footer | ||
@import "template/footer"; | ||
|
||
// Custom style | ||
@import "template/custom"; | ||
@import "partials/header"; | ||
@import "partials/footer"; | ||
@import "partials/posts"; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
.posts { | ||
margin-top: 20px; | ||
|
||
.post { | ||
margin-bottom: 40px; | ||
padding-bottom: 40px; | ||
border-bottom: solid 1px #eeeeee; | ||
h3 { | ||
a { | ||
color: #000; | ||
|
||
&:hover { | ||
color: #23527c; | ||
} | ||
} | ||
} | ||
|
||
.summary { | ||
color: #76787d; | ||
} | ||
|
||
.post-content { | ||
padding-right: 40px; | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.