틀:현관/styles.css: 두 판 사이의 차이

편집 요약 없음
잔글 (Mykim5902님이 틀:연습장/styles.css 문서를 넘겨주기를 만들지 않고 틀:현관/styles.css 문서로 이동했습니다)

2021년 3월 11일 (목) 00:43 판

.lookaroundcontainer {
    column-count: 3;
    column-gap: 20px;
}
  
.lookaround, .lookaround ul {
    margin-left: 0px!important;
    margin-top: 0px !important;
    margin:auto;
}

.lookaround li {
    list-style: none;
    height: 72px;
    border-bottom: 1px #e1e8ed solid;
}
.lookaround li:before {
    content: ""; display: inline-block;
    height: 100%;
    margin-right: 0; vertical-align: middle;
    width: 0.3rem; 
}

.lookaround li img{
    width: auto; height: auto;
    max-width: 60px;
    max-height: 60px;
    margin-right: 0.25rem;
}

@media (min-width: 768px) {
    .lookaroundcontainer {
        max-height: 144px;
    }
    .lookaround ul > li:last-child, li:nth-child(2), li:nth-child(4), li:nth-child(6) {
        border-bottom: 0;
    }
}
@media (min-width: 600px) and (max-width: 768px) {
    .lookaroundcontainer {
        column-count: 2;
        max-height: 216px;
    }
    .lookaround ul > li:last-child, li:nth-child(3), li:nth-child(6) {
        border-bottom: 0;
    }
}
@media (max-width: 600px) {
    .lookaroundcontainer {
        column-count: 1;
        text-align: left;
    }
    .lookaround ul > li:last-child {
        border-bottom: 0;
    }
}