Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
lamanai committed Apr 11, 2017
0 parents commit 5e9b201
Show file tree
Hide file tree
Showing 8 changed files with 39 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -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
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.DS_Store
.eslintrc.json
.htmlhintrc
.stylelintrc
.editorconfig
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Travel Destinations

A simple app to keep track of destinations I'd like to visit.
Empty file added css/.gitkeep
Empty file.
16 changes: 16 additions & 0 deletions css/app.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
html {
box-sizing: border-box;
height: 100%;
}

*,
*::before,
*::after {
box-sizing: inherit;
}

body {
display: flex;
margin: 0;
height: 100%;
}

This comment has been minimized.

Copy link
@abirmoneim

abirmoneim Jul 10, 2018

padding:20px;
Empty file added img/.gitkeep
Empty file.
12 changes: 12 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Travels</title>
<meta name="description" content="">
<link rel="stylesheet" href="css/app.css">
</head>
<body>

</body>
</html>
Empty file added js/.gitkeep
Empty file.

3 comments on commit 5e9b201

@MeOly
Copy link

@MeOly MeOly commented on 5e9b201 May 29, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i just add

hello guys

@Kauthars
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good luck

@kasem777
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

best of luck :)

Please sign in to comment.