Events


button#evtBtn {
line-height: 0em !important;
height: 100%;
width: 100%;
padding: 0 40% 0 40%;
border-radius: 5%;
}

button#evtBtn a:hover {
color: red;
}

COMING SOON

var app = angular.module('pyrex', [])
app.controller('EventsCtrl',['$scope','$window','$timeout','$http', function($scope, $window, $timeout, $http) {
$scope.events ="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js" [];
$http.get('https://pyrexbabyevents.firebaseio.com/events.json').then(function(data){
for(var ev in data.data){
console.log(data.data[ev])
$scope.events.push(data.data[ev]);
}
})

}])