Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Finish the project! Yayy.. #67

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions 05-UI-ReactJS/spoti/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# See https://help.github.com/ignore-files/ for more about ignoring files.

# dependencies
/node_modules

# testing
/coverage

# production
/build

# misc
.DS_Store
.env
npm-debug.log*
yarn-debug.log*
yarn-error.log*

1,623 changes: 1,623 additions & 0 deletions 05-UI-ReactJS/spoti/README.md

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions 05-UI-ReactJS/spoti/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "spoti",
"version": "0.1.0",
"private": true,
"dependencies": {
"bootstrap": "^3.3.7",
"react": "^15.5.4",
"react-bootstrap": "^0.31.0",
"react-dom": "^15.5.4",
"spotify-web-api-node": "^2.4.0"
},
"devDependencies": {
"react-scripts": "0.9.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}
44 changes: 44 additions & 0 deletions 05-UI-ReactJS/spoti/public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css">
<link rel="stylesheet" href="../src/index.css">
<title>Spotify App</title>
</head>
<body>
<header class='container-fluid spoti' background-color="black">
<div class='row'>
<div class='col-md-12'>
<img src="spotilogo2.jpg" class="img-rounded center-block" alt="Logo Spotify" width="100" height="50">
</div>
</div>
</header>


<div id="root"></div>


<footer class= "navbar-fixed-bottom spoti">
<div class="container ">
<div class="row">
<div class="col-sm-6">
<ul>
<li>
<a href='#'>&copy; 2017 Bootcamp GLOBANT. All Rights Reserved.</a>
</li>
</ul>
</div>
<div class="col-sm-6">
<ul class="pull-right">
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>
</div>
</div>
</footer>
</body>
</html>
Binary file added 05-UI-ReactJS/spoti/public/spotilogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 05-UI-ReactJS/spoti/public/spotilogo2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
53 changes: 53 additions & 0 deletions 05-UI-ReactJS/spoti/src/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
body {
margin: 0;
padding: 0;
font-family: sans-serif;
}

.spoti {
background-color: black;
color: #fff;

}

ul li {
display: inline-block;

}

ul li a {
color: #fff;
width: 25px;
height: 45px;
line-height: 40px;
text-align: center;
border-radius: 2px;
margin-left: 25px;
}

ul li a:hover {
background: #9ACD32;
color: #fff;
text-decoration: none;
}

a:hover, a:focus {
color: #fff;
text-decoration: none;
}

a:hover,
a:focus {
color: #fff;
text-decoration: none;
outline: none;
}

.imagen {
max-height: 130px;
max-width: 150px;
}

.link:hover {
text-decoration: none;
}
Loading