Skip to content
Snippets Groups Projects
Select Git revision
  • 7c76762431934fa79fe06cd716f1c2bd944143b2
  • main default
  • tp3
  • tp2
  • tp1
  • tp3-correction
  • tp2-correction
  • tp1-correction
  • admins
9 results

README.md

Blame
  • Forked from an inaccessible project.
    Home.css 1.41 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%;
        padding-left: 5%;
        padding-right: 5%;
    }
    
    #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;
        transition: 0.3s;
    }
    
    .home-link-item + span {
        transition: 0.3s;
    }
    
    .home-link-item:hover {
        color: #C2D1F9;
    }
    
    .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;
            font-size: 1.5rem;
        }
    
        .home-restaurant-name {
            padding-right: 2rem;
            font-size: 1.5rem;
        }
    }