Skip to content
Snippets Groups Projects
Select Git revision
  • 4abc00191b7af565204f85a0f0468fb42c23b2ac
  • main default
2 results

restaurant.css

Blame
  • user avatar
    Antoine Gaudron-desjardins authored
    4abc0019
    History
    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%;
        }
    }