티스토리 뷰

CSS

CSS 셋팅 - 공통 common 설정

Gayeong's 2022. 4. 17. 16:51

*클리어 픽스

*ir 효과

*컨테이너 설정

*간격 세팅

@charset "UTF-8";

/* 클리어 픽스 */ - flot로 영역 깨짐 방지
.clearfix {
    zoom: 1;
}
.clearfix::before,
.clearfix::after {
    content: '';
    display: block;
}
.clearfix::after {
    clear: both;
}

/* ir 효과 */ - 웹표준 준수를 위한 설정
/* 의미있는 이미지의 대체 텍스트를 제공하는 경우 */
.ir_pm {
    display: block;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    text-indent: -9999px;
}
/* 의미있는 이미지의 대체 텍스트로 이미지가 없어도 대체 텍스트를 보여주고자 할 때 */ 
/* 차이:이미지가 없어도 글자가 보임 */
.ir_wa {
    display: block;
    overflow: hidden;
    position: relative;
    z-index: -1;
    width: 100%;
    height: 100%;
}
/* 대체 텍스트가 아니 접근성을 위한 숨김 텍스트를 제공할 때 (스크린 아웃의 약자)*/
.ir_so {
    overflow: hidden;
    position: absolute;
    width: 0;
    height: 0;
    line-height: 0;
    text-indent: -9999px;
}

/* 컨테이너 */ - 공통 css 설정
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    /* background: rgba(0,0,0,0.3); */
}
@media (max-width: 1220px){
    .container {padding: 0 20px;}
}
#contents {
    min-height: 70vh;
}
.section {
    padding: 120px 0;
}
.section__title {
    font-size: 50px;
    margin-bottom: 20px;
    font-weight: 400;
}
.section__desc {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 300;
    color: #777;
    margin-bottom: 80px;
}
.center {
    text-align: center;
}
@media (max-width: 1220px){
    .section__title {
        font-size: 24px;
    }
    .section__desc {
        font-size: 18px;
    }
}

/* 간격 셋팅 */ - 간격 설정을 class로 바로 줄 수 있게 
.mt0 {margin-top: 0 !important;}
.mt10 {margin-top: 10px !important;}
.mt20 {margin-top: 20px !important;}
.mt30 {margin-top: 30px !important;}
.mt40 {margin-top: 40px !important;}
.mt50 {margin-top: 50px !important;}
.mt100 {margin-top: 100px !important;}

.ml0 {margin-left: 0 !important;}
.ml10 {margin-left: 10px !important;}
.ml20 {margin-left: 20px !important;}
.ml30 {margin-left: 30px !important;}
.ml40 {margin-left: 40px !important;}
.ml50 {margin-left: 50px !important;}
.ml100 {margin-left: 100px !important;}

.mr0 {margin-right: 0 !important;}
.mr10 {margin-right: 10px !important;}
.mr20 {margin-right: 20px !important;}
.mr30 {margin-right: 30px !important;}
.mr40 {margin-right: 40px !important;}
.mr50 {margin-right: 50px !important;}
.mr100 {margin-right: 100px !important;}

.mb0 {margin-bottom: 0 !important;}
.mb10 {margin-bottom: 10px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb100 {margin-bottom: 100px !important;}

/* 스킵 메뉴 */ - 웹표준 준수를 위한 스킵 메뉴 설정
#skip {
    position: relative;
    z-index: 10000;
}
#skip a {
    background: #000;
    color: #fff;
    position: absolute;
    left: -400px; top: 5px;
    padding: 20px 40px;
    display: inline-block;
    transition: left 0.3s ease-in;
}
#skip a:active,
#skip a:focus {
    left: 5px;
}

/* 배경색 */ - 섹션 영역 배경색 설정
.gray {
    background: #f5f5f5;
}
.white {
    background: #fff !important;
}
.purple {
    background: #f7f6ff;
}

기타 필요 설정들을 설정하시면 됩니다
/* input__style */
.input__style {
    border: 2px solid #a69cf7;
    padding: 15px 30px;
    background-color: #d3cef8;
    border-radius: 50px;
    margin: 5px;
}
.input__style.width {
    min-width: 400px;
}
.input__style::-webkit-input-placeholder {
    color: #7469c6;
}
.input__style:-ms-input-placeholder {
    color: #7469c6;
}
.input__style::placeholder {
    color: #7469c6;
}

/* alert */
.alert {
    max-width: 665px;
    border: 1px solid #DEDEDE;
    background: #fff;
    margin: 0 auto;
    padding: 50px;
    position: absolute;
    left: 50%;
    top: 200px;
    transform: translateX(-50%);
}
댓글
© 2018 webstoryboy