Skip to content

Commit

Permalink
recieptme hack
Browse files Browse the repository at this point in the history
  • Loading branch information
Phillip Kelley-Dotson committed Dec 6, 2018
1 parent aeb482f commit 003263f
Show file tree
Hide file tree
Showing 6 changed files with 584 additions and 47 deletions.
13 changes: 11 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,17 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.18.0",
"boostrap": "^2.0.0",
"bootstrap": "^4.1.3",
"express": "^4.16.4",
"jsx-to-string": "^1.4.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-scripts": "2.1.1"
"react-scripts": "2.1.1",
"react-select": "^2.1.2",
"reactstrap": "^6.5.0",
"the-noun-project": "^2.1.0"
},
"scripts": {
"start": "react-scripts start",
Expand All @@ -21,5 +29,6 @@
"not dead",
"not ie <= 11",
"not op_mini all"
]
],
"proxy": "http://localhost:8080"
}
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#000000">
<!--
manifest.json provides metadata used when your web app is added to the
Expand Down
97 changes: 76 additions & 21 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,86 @@
text-align: center;
}

.App-logo {
animation: App-logo-spin infinite 20s linear;
height: 40vmin;
.search {
width: 530px;
padding: 10px;
position: absolute;
left: 15px;
top: 60px;
background: #fff;
box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
border-radius: 3px;
z-index: 1000;
}

.App-header {
background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
.mainContainer {
top: 0;
bottom: 0;
left: 55%;
right: 0;
position: fixed;
font-family: Roboto;
background-color: #f5f5f5;
border: 1px solid #e3e3e3;
border-radius: 4px;
}

.App-link {
color: #61dafb;
.recContainer {
background-color: white;
position: relative;
width: 85%;
height: 85%;
margin: auto;
margin-top: 10%;
box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
}

@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
.priceContainer {
margin-top: 295px;
}

.pricer {
padding-left: 50px;
}

.center {
text-align: center;
}
.hide {
display: none;
}

.rinfo {
font-weight: 100;
font-size: 1.5em;
font-family: Aerial;
color: #f5f6f6;
background-color: #02baa9;
border-radius: 8px;
box-shadow: 5px 10px 8px #d3d2d2;
}

.thanks {
margin-top: 100px;
padding-left: 25%;
position: absolute;
}

.searchrow {
margin-top: 25px;
}

.form {
background-color: #9e9e9e0a;
margin-top: 25px;
margin-left: 20px;
top: 0;
bottom: 0;
left: 0;
right: 50%;
position: fixed;
}

.searchbtn {
right: 150px;
}
Loading

0 comments on commit 003263f

Please sign in to comment.