Skip to content

Commit 5e9b201

Browse files
committed
Initial commit
0 parents  commit 5e9b201

File tree

8 files changed

+39
-0
lines changed

8 files changed

+39
-0
lines changed

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
# https://help.github.com/articles/dealing-with-line-endings/
3+
* text=auto

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.DS_Store
2+
.eslintrc.json
3+
.htmlhintrc
4+
.stylelintrc
5+
.editorconfig

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Travel Destinations
2+
3+
A simple app to keep track of destinations I'd like to visit.

css/.gitkeep

Whitespace-only changes.

css/app.css

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
html {
2+
box-sizing: border-box;
3+
height: 100%;
4+
}
5+
6+
*,
7+
*::before,
8+
*::after {
9+
box-sizing: inherit;
10+
}
11+
12+
body {
13+
display: flex;
14+
margin: 0;
15+
height: 100%;
16+
}

img/.gitkeep

Whitespace-only changes.

index.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Travels</title>
6+
<meta name="description" content="">
7+
<link rel="stylesheet" href="css/app.css">
8+
</head>
9+
<body>
10+
11+
</body>
12+
</html>

js/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)