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