-
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.
- Loading branch information
Thimy Kieu
committed
Sep 6, 2018
1 parent
271bf35
commit 9e19026
Showing
30 changed files
with
1,789 additions
and
3 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
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 |
---|---|---|
|
@@ -11,3 +11,5 @@ authors: Open Data Team | |
summary: Just a sample article | ||
# status: draft | ||
--- | ||
|
||
test |
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,15 @@ | ||
--- | ||
title: Frequently asked questions | ||
date: 2018-08-28 18:00 | ||
image: https://placehold.it/1920x1080 | ||
tags: | ||
- faq | ||
slug: faq | ||
lang: en | ||
authors: Open Data Team | ||
summary: Frequently asked questions | ||
--- | ||
|
||
|
||
## Questions | ||
Knock knock. |
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
@font-face { | ||
font-family: "Source Sans Pro"; | ||
src: url("../fonts/Source Sans Pro/SourceSansPro-Regular.otf"); | ||
font-weight: 400; | ||
} | ||
|
||
@font-face { | ||
font-family: "Source Sans Pro"; | ||
src: url("../fonts/Source Sans Pro/SourceSansPro-Bold.otf"); | ||
font-weight: 800; | ||
} | ||
|
||
@font-face { | ||
font-family: "Source Sans Pro"; | ||
src: url("../fonts/Source Sans Pro/SourceSansPro-It.otf"); | ||
font-style: italic; | ||
} | ||
|
||
@font-face { | ||
font-family: "Montserrat"; | ||
src: url("../fonts/Montserrat/Montserrat-Regular.ttf"); | ||
font-weight: 400; | ||
} | ||
|
||
@font-face { | ||
font-family: "Montserrat"; | ||
src: url("../fonts/Montserrat/Montserrat-Bold.ttf"); | ||
font-weight: 800; | ||
} |
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,12 @@ | ||
.hero { | ||
background: linear-gradient(to top, #002E82, #005BA3,#76AADB); | ||
} | ||
|
||
.hero img { | ||
height: 200px; | ||
} | ||
|
||
ul { | ||
line-height: 1.5em; | ||
padding-left: 1em; | ||
} |
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,99 @@ | ||
.navbar { | ||
border-bottom: 1px solid var(--theme-box-shadow); | ||
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); | ||
width: 100%; | ||
background: #fff; | ||
z-index: 100; | ||
} | ||
|
||
.nav-fixed { | ||
position: fixed; | ||
top: 0; | ||
} | ||
|
||
.navbar__container { | ||
display: flex; | ||
justify-content: space-between; | ||
flex-wrap: wrap; | ||
align-items: center; | ||
padding: 1em; | ||
} | ||
|
||
.navbar__home { | ||
height: 40px; | ||
} | ||
|
||
.navbar__logo { | ||
height: 100%; | ||
} | ||
|
||
.nav__links { | ||
display: inline-block; | ||
margin: 0; | ||
padding: 0; | ||
list-style-type: none; | ||
} | ||
|
||
.nav__item { | ||
padding: 0; | ||
display: inline-block; | ||
} | ||
|
||
.nav__item a, | ||
.nav__item .dropdown { | ||
text-decoration: none; | ||
color: var(--black); | ||
padding: 0.4em 0.8em; | ||
border-radius: 3px; | ||
} | ||
|
||
.nav__links a::after { | ||
content: none; | ||
} | ||
|
||
.nav__item a:hover, | ||
.nav__item .dropdown:hover { | ||
background: var(--lighter-grey); | ||
} | ||
|
||
.nav__item a.active { | ||
background: var(--theme-primary); | ||
color: var(--white); | ||
} | ||
|
||
a.navbar__home { | ||
font-family: 'Evolventa'; | ||
display: flex; | ||
align-items: center; | ||
color: var(--almost-black); | ||
letter-spacing: 0.05em; | ||
text-decoration: none; | ||
} | ||
|
||
.navbar__home img { | ||
vertical-align: middle; | ||
} | ||
|
||
.navbar__logo { | ||
margin-right: 0.8em; | ||
} | ||
|
||
.navbar__gouvfr { | ||
height: 18.4px; | ||
} | ||
|
||
span.navbar__domain { | ||
font-weight: 400; | ||
color: var(--theme-dark-text); | ||
} | ||
|
||
@media (--smaller-than-tablet) { | ||
.navbar__container { | ||
flex-direction: column; | ||
align-items: flex-start; | ||
} | ||
|
||
.nav__links { | ||
padding-top: 1em; | ||
} | ||
} |
Oops, something went wrong.