diff options
-rw-r--r-- | Pages/contact.html | 3 | ||||
-rw-r--r-- | Pages/contact.md | 1 | ||||
-rw-r--r-- | pacifico.ttf | bin | 0 -> 75568 bytes | |||
-rw-r--r-- | script.js | 3 | ||||
-rw-r--r-- | style.css | 13 |
5 files changed, 14 insertions, 6 deletions
diff --git a/Pages/contact.html b/Pages/contact.html new file mode 100644 index 0000000..ab7fb04 --- /dev/null +++ b/Pages/contact.html @@ -0,0 +1,3 @@ +<div class="contact"> + Contact : Auriane Besnard +</div> diff --git a/Pages/contact.md b/Pages/contact.md deleted file mode 100644 index 3d7a78f..0000000 --- a/Pages/contact.md +++ /dev/null @@ -1 +0,0 @@ -Contact : Auriane Besnard diff --git a/pacifico.ttf b/pacifico.ttf Binary files differnew file mode 100644 index 0000000..6d47cdc --- /dev/null +++ b/pacifico.ttf @@ -26,9 +26,8 @@ var url = location.hash.slice(2) || 'presentation'; var contentElement = document.getElementById('content'); fetchFile('Pages/' + url + '.md', function(contentMd) { - fetchFile('Pages/contact.md', function(contactMd) { + fetchFile('Pages/contact.html', function(contactHtml) { var contentHtml = markdown.toHTML(contentMd); - var contactHtml = '<div class=contact>' + markdown.toHTML(contactMd) + '</div>'; contentElement.innerHTML = contentHtml + contactHtml; }); }); @@ -1,3 +1,8 @@ +@font-face { + font-family: pacifico; + src: url(pacifico.ttf); +} + body { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; background-color: #FBDEE3; @@ -6,18 +11,20 @@ body { } .header { - padding: 30px; + padding-top: 40px; + padding-bottom: 50px; text-align: center; - font-size: 40px; + font-size: 72px; color: #222222; text-shadow: 2px 2px #ADADAD; + font-family: pacifico; } #content { margin-top: 65px; background-color: white; border-radius: 5px; - padding: 30px 50px 30px 50px; + padding: 40px 50px 30px 50px; } h1 { |