From 29ca72b6f5c6aaa8c5a9dd230f6bf9b9985da67a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Tessier?= Date: Fri, 16 Mar 2018 15:24:05 +0100 Subject: [PATCH] first commit --- index.html | 26 ++++++++++++++++++++++++++ scripts/script.js | 7 +++++++ styles/media_quieries.css | 6 ++++++ styles/reset.css | 13 +++++++++++++ styles/style.css | 0 styles/typo.css | 0 6 files changed, 52 insertions(+) create mode 100644 index.html create mode 100644 scripts/script.js create mode 100644 styles/media_quieries.css create mode 100644 styles/reset.css create mode 100644 styles/style.css create mode 100644 styles/typo.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..a6865b4 --- /dev/null +++ b/index.html @@ -0,0 +1,26 @@ + + + + + Title of the document + + + + + + + + + + + + + + + + + + + + + diff --git a/scripts/script.js b/scripts/script.js new file mode 100644 index 0000000..dce099d --- /dev/null +++ b/scripts/script.js @@ -0,0 +1,7 @@ +function functionName() { + // Our function +} + +$(document).ready(function(){ + //functionName +}); diff --git a/styles/media_quieries.css b/styles/media_quieries.css new file mode 100644 index 0000000..069ea7d --- /dev/null +++ b/styles/media_quieries.css @@ -0,0 +1,6 @@ +@media only screen and (max-width: 768px) { + /* For mobile phones: */ + /* [class*="col-"] { + width: 100%; + } */ +} diff --git a/styles/reset.css b/styles/reset.css new file mode 100644 index 0000000..d25fb50 --- /dev/null +++ b/styles/reset.css @@ -0,0 +1,13 @@ +* { + box-sizing: border-box; +} + +img { + max-width: 100%; + height: auto; +} + +video { + width: 100%; + height: auto; +} diff --git a/styles/style.css b/styles/style.css new file mode 100644 index 0000000..e69de29 diff --git a/styles/typo.css b/styles/typo.css new file mode 100644 index 0000000..e69de29