forked from DevMountain/react-3-mini
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request DevMountain#3 from DevMountain/rework
updated mini
- Loading branch information
Showing
15 changed files
with
388 additions
and
1,997 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
|
Oops, something went wrong.