-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
… for launch
- Loading branch information
Showing
12 changed files
with
131 additions
and
34 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
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,7 +1,12 @@ | ||
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:400,700'); | ||
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:100,400,700'); | ||
|
||
// **** Fonts **** // | ||
$font-family: 'Josefin Sans', sans-serif; | ||
|
||
// **** Colours **** // | ||
$white: white; | ||
|
||
$button-fg: #222222; | ||
$button-bg: #fddf50; | ||
$button-fg-hover: #fddf50; | ||
$button-bg-hover: #222222; |
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,26 +1,36 @@ | ||
.dml-button { | ||
background-color: black; | ||
border-color: black; | ||
background-color: $button-bg; | ||
border-color: $button-bg; | ||
border-radius: 2em; | ||
margin: 1.5em; | ||
margin: 3em 0; | ||
padding: 1em; | ||
text-transform: uppercase; | ||
width: 10em; | ||
width: 15em; | ||
font-weight: bold; | ||
font-size: 16px; | ||
|
||
@include breakpoint(small) { | ||
margin: 1.5em 0; | ||
} | ||
|
||
> a { | ||
color: yellow; | ||
color: $button-fg; | ||
background-color: $button-bg; | ||
|
||
&:hover { | ||
color: $button-fg-hover; | ||
background-color: $button-bg-hover; | ||
text-decoration: none; | ||
} | ||
} | ||
|
||
&:hover { | ||
background-color: yellow; | ||
border-color: yellow; | ||
background-color: $button-bg-hover; | ||
border-color: $button-bg-hover; | ||
|
||
> a { | ||
color: black; | ||
color: $button-fg-hover; | ||
background-color: $button-bg-hover; | ||
border-color: $button-bg-hover; | ||
} | ||
} | ||
} |
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
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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,11 +1,13 @@ | ||
export const comingSoon = { | ||
title: 'Coming Soon', | ||
tagline: 'A Perception of Migration Through Anonymised Childrens\' Drawings & Data', | ||
tagline: 'A Perception of Migration Through Anonymised Children\'s Drawings & Data', | ||
callToActionText: 'Contact Us', | ||
callToActionURL: 'mailto:drawmylife@empowerhack.com', | ||
description: {__html: ` | ||
<p>How can the humanitarian community strengthen and understand the voice of child refugees?</p> | ||
<p>Draw My Life is inspired by how childrens' art therapy in the field can become a basis for better data around the needs and experience of refugee children.</p> | ||
<p>Read more about us and other projects at <a href="http://empowerhack.io/#drawmylife">EmpowerHack</a>.</p> | ||
`} | ||
<p>Draw My Life is inspired by how children's art therapy in the field can become a basis for better data around the needs and experience of refugee children.</p> | ||
`}, | ||
moreInfo: {__html: ` | ||
<p>More about Draw My Life and other projects at <a href="http://empowerhack.io/#drawmylife">EmpowerHack</a></p> | ||
`}, | ||
footerLine: 'Photo credit: Rachel Unkovic, International Rescue Committee (via Flickr)' | ||
}; |