-
Notifications
You must be signed in to change notification settings - Fork 4
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
4d99552
commit 04c9c3d
Showing
69 changed files
with
370 additions
and
120 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
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
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
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,8 +1,8 @@ | ||
--- | ||
title: Fonts | ||
title: Police | ||
--- | ||
|
||
La police de caractère utilisé est [Open Sans](https://fonts.google.com/specimen/Open+Sans?selection.family=Open+Sans) | ||
La police de caractère utilisé est [Montreal] | ||
(Cette police est appelé dans le css) | ||
|
||
Nous utilisons **uniquement** les styles regular(400) et bold(700) | ||
Nous utilisons **uniquement** les styles regular(400) et bold(700) |
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,10 +1,10 @@ | ||
<table class="table table-condensed"> | ||
<tr> | ||
<td style="width:50%"><p class="regular">Open sans - Regular (400)</p></td> | ||
<td style="width:50%"><p class="regular">Montreal - Regulier (400)</p></td> | ||
<td style="width:50%"><p class="regular">a b c d e f g h i j k l m n o p q r s t u v w x y z<br/>A B C D E F G H I J K L M N O P Q R S T U V W X Y Z</p><br/></td> | ||
</tr> | ||
<tr> | ||
<td><p class="bold">Open sans - Bold (700)</p></td> | ||
<td><p class="bold">Montreal - Gras (700)</p></td> | ||
<td><p class="bold">a b c d e f g h i j k l m n o p q r s t u v w x y z<br/>A B C D E F G H I J K L M N O P Q R S T U V W X Y Z</p><br/></td> | ||
</tr> | ||
</table> |
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 @@ | ||
--- | ||
title: Headings | ||
title: Entete | ||
--- | ||
|
||
Les classes <code>.h1</code> à <code>.h6</code> sont disponibles pour utiliser le style des titre sans le balisage. | ||
Les titres et les classes de titres sont responsives. | ||
Les titres et les classes de titres sont responsives. |
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,3 +1,3 @@ | ||
{ | ||
"version": "5.5.0" | ||
"version": "5.6.0" | ||
} |
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,39 @@ | ||
// Montreal regulier | ||
@font-face { | ||
font-family: "Montreal"; | ||
src: url('../fonts/montreal/woff2/Montreal-Web-Regulier.woff2') format('woff2'), | ||
url('../fonts/montreal/woff/Montreal-Web-Regulier.woff') format('woff'), | ||
url('../fonts/montreal/ttf/Montreal-Web-Regulier.ttf') format('truetype'); | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
|
||
// Montreal italique | ||
@font-face { | ||
font-family: "Montreal"; | ||
src: url('../fonts/montreal/woff2/Montreal-Web-Italique.woff2') format('woff2'), | ||
url('../fonts/montreal/woff/Montreal-Web-Italique.woff') format('woff'), | ||
url('../fonts/montreal/ttf/Montreal-Web-Italique.ttf') format('truetype'); | ||
font-weight: normal; | ||
font-style: italic; | ||
} | ||
|
||
// Montreal gras | ||
@font-face { | ||
font-family: "Montreal"; | ||
src: url('../fonts/montreal/woff2/Montreal-Web-Gras.woff2') format('woff2'), | ||
url('../fonts/montreal/woff/Montreal-Web-Gras.woff') format('woff'), | ||
url('../fonts/montreal/ttf/Montreal-Web-Gras.ttf') format('truetype'); | ||
font-weight: 700; | ||
font-style: normal; | ||
} | ||
|
||
// Montreal gras italique | ||
@font-face { | ||
font-family: "Montreal"; | ||
src: url('../fonts/montreal/woff2/Montreal-Web-GrasItalique.woff2') format('woff2'), | ||
url('../fonts/montreal/woff/Montreal-Web-GrasItalique.woff') format('woff'), | ||
url('../fonts/montreal/ttf/Montreal-Web-GrasItalique.ttf') format('truetype'); | ||
font-weight: 700; | ||
font-style: italic; | ||
} |
Oops, something went wrong.