Skip to content

Commit

Permalink
Merge pull request DevMountain#3 from DevMountain/rework
Browse files Browse the repository at this point in the history
updated mini
  • Loading branch information
joeblank authored Aug 15, 2017
2 parents caa92a7 + 8540bbc commit 55e747e
Show file tree
Hide file tree
Showing 15 changed files with 388 additions and 1,997 deletions.
18 changes: 0 additions & 18 deletions .gitignore

This file was deleted.

1,507 changes: 40 additions & 1,467 deletions README.md

Large diffs are not rendered by default.

190 changes: 0 additions & 190 deletions db.json

This file was deleted.

37 changes: 13 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,21 @@
{
"name": "http-mini",
"version": "1.0.0",
"description": "<img src=\"https://devmounta.in/img/logowhiteblue.png\" width=\"250\" align=\"right\">",
"main": "index.js",
"name": "http-mini-rework",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.16.2",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-toasts": "^1.0.6"
},
"devDependencies": {
"react-scripts": "1.0.10"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"api": "json-server --watch db.json --port 3005 --routes routes.json --delay 500"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DevMountain/http-mini.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DevMountain/http-mini/issues"
},
"dependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"devDependencies": {
"json-server": "^0.10.1",
"react-scripts": "1.0.7"
},
"homepage": "https://github.com/DevMountain/http-mini#readme"
}
}

6 changes: 0 additions & 6 deletions routes.json

This file was deleted.

66 changes: 66 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
@import url('https://fonts.googleapis.com/css?family=Lato');
* {
font-family: 'Lato', sans-serif;
color: #323231;
}
.header {
display: flex;
justify-content: center;
margin: 25px 0px;
}
.main-wrapper {
width: 100%;
display: flex;
justify-content: space-around;
}
.btn-container {
display: flex;
justify-content: center;
}
.info-box {
width: 45%;
text-align: center;
}
.hr {
width: 200px;
}

.btn-sp {
margin: 0px 5px;
}
.form-wrap {
display: flex;
justify-content: center;
}
.header-btn1 {
position: absolute;
top: 10px;
right: 120px;
}
.header-btn2 {
position: absolute;
top: 10px;
right: 20px;
}
.btn {
height: 25px;
padding: 0px 10px;
border-radius: 5px;
border: none;
background: #E0E1E2;
color: #323231;
transition: .2s;
}
.btn:hover {
cursor: pointer;
background: #CACBCD;
}
input {
border-radius: 5px;
border: 1px solid #323231;
padding-left: 5px;
}
h3 {
color: #323231;
}

Loading

0 comments on commit 55e747e

Please sign in to comment.