-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
20 changed files
with
325 additions
and
51 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 |
---|---|---|
|
@@ -39,6 +39,7 @@ | |
|
||
'modelcluster', | ||
'taggit', | ||
'wagtailmenus', | ||
|
||
'django.contrib.admin', | ||
'django.contrib.auth', | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Empty file.
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 |
---|---|---|
@@ -1,4 +1,2 @@ | ||
import 'bootstrap'; | ||
import './scss/main.scss'; | ||
|
||
console.log('Hello, World!'); |
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,4 @@ | ||
$dark-brown: #37332e; | ||
$light-brown: #d1c6b0; | ||
|
||
|
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,4 @@ | ||
.footer { | ||
background-color: $dark-brown; | ||
color: $light-brown; | ||
} |
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,17 @@ | ||
.logo { | ||
fill: #FFFFFF; | ||
max-width: 816px; | ||
} | ||
|
||
.site-title--home-page { | ||
display: flex; | ||
flex-flow: column nowrap; | ||
align-items: center; | ||
} | ||
|
||
.site-subtitle { | ||
font-family: $font-family-serif; | ||
text-transform: uppercase; | ||
padding-top: 1em; | ||
border-top: solid 1px $dark-brown; | ||
} |
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,25 @@ | ||
.nav-container--home-page { | ||
display: flex; | ||
flex-flow: row nowrap; | ||
justify-content: center; | ||
margin-bottom: 50px; | ||
} | ||
|
||
.nav > ul { | ||
list-style-type: none; | ||
display: flex; | ||
flex-flow: row nowrap; | ||
} | ||
|
||
.nav > ul > li { | ||
margin-right: 1em; | ||
padding-right: 1em; | ||
border-right: solid 1px #FFFFFF; | ||
text-transform: uppercase; | ||
|
||
&:last-of-type { | ||
margin-right: 0em; | ||
padding-right: 0em; | ||
border-right: none; | ||
} | ||
} |
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,25 @@ | ||
// Load fonts before setting variables | ||
@import url('https://fonts.googleapis.com/css?family=Abhaya+Libre:700|Lato:400,400i,700,700i,900,900i&display=swap'); | ||
|
||
@import "./variables"; | ||
|
||
// Bootstrap: Required | ||
@import "~bootstrap/scss/functions"; | ||
@import "~bootstrap/scss/variables"; | ||
@import "~bootstrap/scss/mixins"; | ||
|
||
// Bootstrap: Optional | ||
@import "~bootstrap/scss/reboot"; | ||
@import "~bootstrap/scss/type"; | ||
@import "~bootstrap/scss/images"; | ||
@import "~bootstrap/scss/code"; | ||
@import "~bootstrap/scss/grid"; | ||
|
||
// Decruck | ||
body { | ||
padding-top: 2em; | ||
} | ||
@import "./type"; | ||
@import "./elements/nav"; | ||
@import "./elements/logo"; | ||
@import "./elements/footer"; |
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,22 @@ | ||
html { | ||
letter-spacing: 0.02em; | ||
} | ||
|
||
h1, .h1 { | ||
font-family: $font-family-serif; | ||
text-transform: uppercase; | ||
letter-spacing: 0.1em; | ||
} | ||
|
||
h2, .h2 { | ||
font-family: $font-family-sans-serif; | ||
font-weight: 900; | ||
text-transform: uppercase; | ||
letter-spacing: 0.1em; | ||
} | ||
|
||
h3, .h3 { | ||
font-family: $font-family-sans-serif; | ||
font-weight: 700; | ||
letter-spacing: 0.02em; | ||
} |
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,18 @@ | ||
// Redeclare Bootstrap variables | ||
|
||
$font-family-sans-serif: "Lato", "sans-serif"; | ||
$font-family-serif: "Abhaye Libre", "serif"; | ||
|
||
// Redeclare the base size | ||
$font-size-base: 1rem; | ||
|
||
$h2-font-size: $font-size-base * 1.25; | ||
$h3-font-size: $font-size-base * 1.125; | ||
|
||
// Color | ||
// Note: These colors don't appear in Bootstrap's color scheme | ||
$dark-brown: #37332e; | ||
$light-brown: #d1c6b0; | ||
|
||
$body-bg: $light-brown; | ||
$body-color: $dark-brown; |
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
Oops, something went wrong.