48 lines
888 B
Plaintext
48 lines
888 B
Plaintext
/*
|
|
* UTKMultiSelectDropdownSample 스타일
|
|
*/
|
|
|
|
/* 샘플 섹션 */
|
|
.sample-section {
|
|
margin-bottom: 30px;
|
|
padding: 15px;
|
|
background-color: rgb(38, 38, 38);
|
|
border-top-left-radius: 8px;
|
|
border-top-right-radius: 8px;
|
|
border-bottom-left-radius: 8px;
|
|
border-bottom-right-radius: 8px;
|
|
}
|
|
|
|
/* 섹션 타이틀 */
|
|
.section-title {
|
|
font-size: 16px;
|
|
margin-bottom: 15px;
|
|
color: rgb(77, 179, 255);
|
|
-unity-font-style: bold;
|
|
}
|
|
|
|
/* 결과 라벨 (기본) */
|
|
.result-label {
|
|
margin-top: 10px;
|
|
color: rgb(204, 204, 204);
|
|
}
|
|
|
|
/* 결과 라벨 (정보) */
|
|
.result-label-info {
|
|
margin-top: 10px;
|
|
color: rgb(128, 204, 255);
|
|
}
|
|
|
|
/* 결과 라벨 (경고) */
|
|
.result-label-warning {
|
|
margin-top: 10px;
|
|
color: rgb(255, 204, 128);
|
|
}
|
|
|
|
/* 참고 라벨 */
|
|
.note-label {
|
|
margin-top: 10px;
|
|
font-size: 12px;
|
|
color: rgb(153, 153, 153);
|
|
}
|