본문 바로가기
  • purple-whale
반응형 웹사이트/Shilla Hotel

1280px < width ≤ 1599px

by purple-whale 2021. 1. 26.

@media screen and (max-width:1599px){
    .wrap {
        padding-left:0px;
    }
    header {
        position: static; top: 0; left:0; right: 0;
        width: 100%; height: 100px;
    }
    .container {
        height: calc(100vh - 150px);
    }
    h1 {
        height: 70px;
        a { 
            display: block;
            width: 100%;
            padding: 10px 0 0px;
            text-align: center;
            img {
                height: 40px;
            }
        }
    }  
    .nav-depth1 {
        display: flex;
        justify-content: space-between;
        width: 70%;
        margin: 0 auto;
        a{
            padding: 0px;
        }
    }
}

//1023px<width≤1280px
@media screen and (max-width:1280px){
    .container {
        height: auto;
        
        // 변수 재설정
        $w : 25%;
        $h : 280px;
        article {
            overflow: hidden;
            width: $w; 
            height: $h;
            &:nth-child(1) { 
                width: $w*3; height: $h*2;
            }
            &:nth-child(2) { 
                width: $w; 
                height: $h;
            }
            &:nth-child(6) { 
                width: $w*2; 
                height: $h;
            }        
            &:nth-child(7) { 
                width: $w*2; 
                height: $h;
            }
            &:nth-child(9) { 
                width: $w; 
                height: $h;
            }
            &:nth-child(10) { 
                width: $w*2; 
                height: $h;
            }
        }
    }
}

가로 4칸설정을 위해 가로변수 $w의 값을 25%로 변경 한 후

높이값은 고정값으로 원하는 크기를 입력합니다.

PC에서와 같이 원하는 칸수를 변수에 곱하여 아티클의 크기를 설정합니다.

 

댓글