Skip to content
Snippets Groups Projects
Select Git revision
  • f4dd4ce93b1ceb20ac5956adfe8437a877c17b15
  • master default
2 results

README.md

Blame
  • Home.css 1.24 KiB
    #home-container {
        padding-top: 2%;
        padding-bottom: 10%;
        display: flex;
        flex-direction: column;
        align-content: center;
        height: 100%;
    }
    
    #home-selection-title {
        margin-bottom: 0;
        padding-bottom: 2%;
    }
    
    #home-table {
        width: fit-content;
        align-self: center;
        min-height: 100%;
    }
    
    .home-restaurant-name {
        align-items: center;
        padding-right: 5rem;
    }
    
    .home-arrow-reverse {
        display: flex;
        flex-direction: row-reverse;
        justify-content: left;
    }
    
    .home-link-item {
        color: inherit;
        font-weight: bold;
        text-decoration: none;
        white-space: nowrap;
    }
    
    .home-link-item:hover {
        color: inherit;
    }
    
    .home-link-item:hover + span {
        color: rgb(45, 45, 45);
    }
    
    .home-arrow {
        margin-right: 1rem;
    }
    
    .home-restaurant-status {
        white-space: nowrap;
        padding-right: 5rem;
        text-align: left;
    }
    
    .home-waiting-time {
        white-space: nowrap;
        text-align: left;
    }
    
    @media only screen and (max-width: 600px) {
        #home-selection-title {
            padding-top: 10%;
            margin-bottom: 0;
            padding-bottom: 8%;
        }
    
        #home-table {
            min-height: 70%;
        }
    
        .home-restaurant-status {
            display: none;
        }
    
        .home-restaurant-name {
            padding-right: 2rem;
        }
    }