Skip to content

Commit

Permalink
"Hello, App App!"
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason L Perry committed Aug 7, 2017
0 parents commit 6aad53f
Show file tree
Hide file tree
Showing 8 changed files with 2,804 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# dependencies
node_modules


# misc
.DS_Store
npm-debug.log


3 changes: 3 additions & 0 deletions .stylelintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "stylelint-config-standard"
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Adventure Time
13 changes: 13 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"private": true,
"scripts": {
"deploy": "surge ./public --domain qa-87-fe.ambethia.surge.sh",
"start": "browser-sync start --server 'public' --files 'public'"
},
"dependencies": {
"browser-sync": "^2.18.13",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0",
"surge": "^0.19.0"
}
}
Binary file added public/favicon.ico
Binary file not shown.
12 changes: 12 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Adventure Time</title>
<link rel="stylesheet" href="/screen.css">
</head>
<body>
<h1>Hello, World!</h1>
</body>
</html>
9 changes: 9 additions & 0 deletions public/screen.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
html {
height: 100%;
}

body {
margin: 0;
min-height: 100%;
font: 16px / 1 sans-serif;
}
Loading

0 comments on commit 6aad53f

Please sign in to comment.