diff --git a/_config.yml b/_config.yml deleted file mode 100644 index fc24e7a..0000000 --- a/_config.yml +++ /dev/null @@ -1 +0,0 @@ -theme: jekyll-theme-hacker \ No newline at end of file diff --git a/assets/css/style.css b/assets/css/style.css index f9ff1a7..17f216c 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -8,4 +8,38 @@ body { } .secondaryColor{ color: #FF0000; +} + +.movie { + background-color: skyblue; + text-align: center; + font-family: Bangers; + padding: 20px; + font-size: 20px; + border-radius: 12px; +} + +.movieButton { + background-color: skyblue; + border-radius: 25px; + border-color: #f00000; + border-width: 5px; + color: #f00000; +} + +.titleButton { + background-color: #f0f0f0; + border-radius: 25px; + border-color: goldenrod; + font-family: Aldrich; + font-weight: 800; + border-width: 5px; + color: #f00000; + font-size: 20px; + padding: 20px; + margin: 20px; +} + +#map { + height: 100%; } \ No newline at end of file diff --git a/assets/js/dessert.js b/assets/js/dessert.js deleted file mode 100644 index f692287..0000000 --- a/assets/js/dessert.js +++ /dev/null @@ -1,41 +0,0 @@ -// https://developers.google.com/places/javascript/ -// google places API key -// AIzaSyBOvLvUWU-_rQ1MpLYVQCcZ1byL-Prp1po - -function initialize() { - var pyrmont = new google.maps.LatLng(-33.8665, 151.1956); - - var map = new google.maps.Map(document.getElementById('map'), { - center: pyrmont, - zoom: 15, - scrollwheel: false - }); - - // Specify location, radius and place types for your Places API search. - var request = { - location: pyrmont, - radius: '500', - types: ['store'] - }; - - // Create the PlaceService and send the request. - // Handle the callback with an anonymous function. - var service = new google.maps.places.PlacesService(map); - service.nearbySearch(request, function(results, status) { - if (status == google.maps.places.PlacesServiceStatus.OK) { - for (var i = 0; i < results.length; i++) { - var place = results[i]; - // If the request succeeds, draw the place location on - // the map as a marker, and register an event to handle a - // click on the marker. - var marker = new google.maps.Marker({ - map: map, - position: place.geometry.location - }); - } - } - }); -} - -// Run the initialize function when the window has finished loading. -google.maps.event.addDomListener(window, 'load', initialize); \ No newline at end of file diff --git a/assets/js/dinner.js b/assets/js/dinner.js index c094b88..a4778b5 100644 --- a/assets/js/dinner.js +++ b/assets/js/dinner.js @@ -1,72 +1,53 @@ - - -
-