Skip to content
Snippets Groups Projects
Select Git revision
  • 1ddcf010b1d6c0afb780d232713b83b92cd42b75
  • master default
  • feat/pull_changes
3 results

cert.pem

Blame
  • 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%;
        }
    }