Select Git revision
restaurant.css 649 B
.restaurant-container {
display: flex;
height: 100%;
justify-content: center;
}
#restaurant-main-page {
width: 50%;
flex-direction: column;
align-content: center;
align-items: center;
overflow: hidden;
}
.restaurant-button {
background-color: rgb(33, 37, 41);
color: white;
width: 7rem;
border: none;
border-radius: 5px;
padding: 0.2rem;
padding-left: 0.3rem;
padding-right: 0.3rem;
margin-top: 2rem;
}
.restaurant-button:hover {
box-shadow: 0px 0px 5px rgb(33, 37, 41);
}
@media only screen and (max-width: 600px) {
#restaurant-main-page {
width: 100%;
}
}