Skip to content

Commit

Permalink
add files app
Browse files Browse the repository at this point in the history
  • Loading branch information
tokovenko committed Mar 19, 2015
1 parent ce664c2 commit ea2b3ce
Show file tree
Hide file tree
Showing 12 changed files with 356 additions and 0 deletions.
23 changes: 23 additions & 0 deletions app.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en" ng-app="restaurantsApp">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Angular App</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div>
<div class="container" ng-view></div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.0-beta.5/angular.min.js"></script>
<script src="js/angular-route.min.js"></script>
<script src="js/angular-animate.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>
51 changes: 51 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
#list-restaurants {
}
#list-restaurants h1 {
font-size: 29px;
text-align: center;
}
#list-restaurants .search {
margin: 0 0 10px 0;
}
#list-restaurants .sort,
#list-restaurants .type {
margin-left: 15px;
width: 250px;
}
#list-restaurants .restaurant {
}
#list-restaurants .restaurant .distance,
#list-restaurants .restaurant .rating{
font-size: 12px;
color: #737373;
}
#list-restaurants .restaurant .title{
font-size: 15px;
text-align: center;
}
#list-restaurants .restaurant .title a{
font-weight: bold;
color: #367FA0;
text-decoration: underline;
}
#list-restaurants .restaurant .title a:hover{
text-decoration: none;
}

#map, #map-rest {
width: 100%;
height: 350px;
margin-bottom: 50px;
}
#restaurant {
margin-top: 10px;
}
#restaurant h1{
font-size: 29px;
text-align: center;
}
#restaurant .back {
text-align: center;
margin-top: 10px;
}

Binary file added images/green-icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/red-icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 33 additions & 0 deletions js/angular-animate.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions js/angular-animate.min.js.map

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions js/angular-route.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ea2b3ce

Please sign in to comment.