틀:변화의 시대/styles.css: 두 판 사이의 차이

편집 요약 없음
편집 요약 없음
9번째 줄: 9번째 줄:
     width: 100%;
     width: 100%;
     user-select: none;
     user-select: none;
}
.banner img {
user-select: none;
}
}



2023년 9월 10일 (일) 22:34 판

/* 배너 */
 .banner {
    background: #00F1BA;
    font-family: "Pretendard JP Variable", "Pretendard";
    color: #252525;
    padding: 20px;
    font-size: 10pt;
    text-align: center;
    width: 100%;
    user-select: none;
}

.banner img {
	user-select: none;
}

/* 문구 */
 .text {
    text-align: center;
    font-family: "Pretendard JP Variable", "Pretendard";
    background: white;
    color: #252525;
    margin-top: -2px;
    margin-bottom: 7px;
    font-size: 10pt;
    user-select: none;
}

@media screen and (max-width: 768px) {
 .banner {
    background: #00F1BA;
    font-family: "Pretendard JP Variable", "Pretendard";
    color: #252525;
    padding: 20px;
    font-size: 10pt;
    text-align: center;
    width: 100%;
    user-select: none;
}

 .text {
    font-family: "Pretendard JP Variable", "Pretendard";
    text-align: center;
    background: white;
    color: #252525;
    margin-top: -3px;
    margin-bottom: 5px;
    font-size: 8.5pt;
    letter-spacing: -0.3px;
    user-select: none;
}
}