From 5e9b2018d2e30bf8d278489f08e62339b0d04f91 Mon Sep 17 00:00:00 2001 From: Lam Anai Date: Mon, 10 Apr 2017 16:44:23 -0700 Subject: [PATCH] Initial commit --- .gitattributes | 3 +++ .gitignore | 5 +++++ README.md | 3 +++ css/.gitkeep | 0 css/app.css | 16 ++++++++++++++++ img/.gitkeep | 0 index.html | 12 ++++++++++++ js/.gitkeep | 0 8 files changed, 39 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 README.md create mode 100644 css/.gitkeep create mode 100644 css/app.css create mode 100644 img/.gitkeep create mode 100644 index.html create mode 100644 js/.gitkeep diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000..ebf1b6ef35 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +# Set the default behavior, in case people don't have core.autocrlf set. +# https://help.github.com/articles/dealing-with-line-endings/ +* text=auto diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000..a7ed5dbca2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.DS_Store +.eslintrc.json +.htmlhintrc +.stylelintrc +.editorconfig diff --git a/README.md b/README.md new file mode 100644 index 0000000000..b28aed9f67 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Travel Destinations + +A simple app to keep track of destinations I'd like to visit. diff --git a/css/.gitkeep b/css/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/css/app.css b/css/app.css new file mode 100644 index 0000000000..c40f08a7b0 --- /dev/null +++ b/css/app.css @@ -0,0 +1,16 @@ +html { + box-sizing: border-box; + height: 100%; +} + +*, +*::before, +*::after { + box-sizing: inherit; +} + +body { + display: flex; + margin: 0; + height: 100%; +} diff --git a/img/.gitkeep b/img/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/index.html b/index.html new file mode 100644 index 0000000000..c39f7ff657 --- /dev/null +++ b/index.html @@ -0,0 +1,12 @@ + + + + + Travels + + + + + + + diff --git a/js/.gitkeep b/js/.gitkeep new file mode 100644 index 0000000000..e69de29bb2