🕐 커밋 시간: 2025. 11. 12. 10:53:05 📊 변경 통계: • 총 파일: 6개 • 추가: +42줄 • 삭제: -2줄 📁 추가된 파일: + com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/TabContents/ThemeContents.figma.jsx + com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/TabContents/ThemeContents.jsx + com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/TabContents/ThemeContents.module.less 📝 수정된 파일: ~ com.twin.app.shoptime/src/style/CommonStyle.module.less ~ com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/TabContents/ShopNowContents.jsx ~ com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/TabContents/ShopNowContents.v2.module.less 🔧 주요 변경 내용: • 소규모 기능 개선 • 모듈 구조 개선
87 lines
2.0 KiB
Plaintext
87 lines
2.0 KiB
Plaintext
/* global */
|
|
/* font */
|
|
|
|
@font-face {
|
|
font-family: "LG Smart";
|
|
font-weight: 300;
|
|
src: local("LG_Smart_UI-Light"),
|
|
url("../../assets/fonts/lgfont/LG_Smart_UI-Light.woff") format("woff");
|
|
}
|
|
@font-face {
|
|
font-family: "LG Smart";
|
|
font-weight: 400;
|
|
src: local("LG_Smart_UI-Regular"),
|
|
url("../../assets/fonts/lgfont/LG_Smart_UI-Regular.woff") format("woff");
|
|
}
|
|
@font-face {
|
|
font-family: "LG Smart";
|
|
font-weight: 600;
|
|
src: local("LG_Smart_UI-SemiBold"),
|
|
url("../../assets/fonts/lgfont/LG_Smart_UI-SemiBold.woff") format("woff");
|
|
}
|
|
@font-face {
|
|
font-family: "LG Smart";
|
|
font-weight: 700;
|
|
src: local("LG_Smart_UI-Bold"),
|
|
url("../../assets/fonts/lgfont/LG_Smart_UI-Bold.woff") format("woff");
|
|
}
|
|
@font-face {
|
|
font-family: "Arial";
|
|
src: url("../../assets/fonts/arial/Arial.woff") format("woff");
|
|
}
|
|
@font-face {
|
|
font-family: "ArialBold";
|
|
src: url("../../assets/fonts/arial/Arial-Bold.woff") format("woff");
|
|
}
|
|
@font-face {
|
|
font-family: "ArialBlack";
|
|
src: url("../../assets/fonts/arial/Arial-Black.woff") format("woff");
|
|
}
|
|
@baseFont: "LG Smart";
|
|
@arialFont: "Arial";
|
|
@arialFontBold: "ArialBold";
|
|
@arialBlack: "ArialBlack";
|
|
@globalHeight: 1080px;
|
|
@globalWidth: 1920px;
|
|
@globalMainWidth: 1800px;
|
|
|
|
/* BG COLOR */
|
|
@BG_COLOR_01: #f8f8f8;
|
|
@BG_COLOR_02: #f2f2f2;
|
|
@BG_COLOR_03: #f2f6fb;
|
|
@BG_COLOR_04: #f5f5f5;
|
|
@BG_COLOR_05: #fcfcfc;
|
|
|
|
/* MAIN COLOR */
|
|
@PRIMARY_COLOR_RED: #c70850;
|
|
@SECONDARY_COLOR_RED: rgba(229, 9, 20, 0.2);
|
|
@SELECTED_COLOR_RED: #4f172c;
|
|
|
|
/* SUB COLOR */
|
|
@COLOR_WHITE: #ffffff;
|
|
@COLOR_GRAY01: #e3e7ee;
|
|
@COLOR_GRAY02: #dadada; // border line
|
|
@COLOR_GRAY03: #808080;
|
|
@COLOR_GRAY04: #767676;
|
|
@COLOR_GRAY05: #555555;
|
|
@COLOR_GRAY06: #333333;
|
|
@COLOR_GRAY07: #222222;
|
|
@COLOR_GRAY08: #1a1a1a;
|
|
@COLOR_GRAY09: #999999;
|
|
@COLOR_GRAY10: #a3a3a3;
|
|
|
|
@COLOR_BLACK: #000000;
|
|
@COLOR_NAVY: #2c343f;
|
|
@COLOR_SKYBLUE: #e7ebef;
|
|
@COLOR_LIGHT_SKYBLUE: #edeff3;
|
|
|
|
@COLOR_DARK_RED: #4f172c;
|
|
|
|
/* For LiveShow 251112 */
|
|
@COLOR_DAR_GRAY: #2c2c2c;
|
|
@COLOR_LIGHT_GRAY: #7D848C;
|
|
|
|
.focusDropShadow() {
|
|
box-shadow: 0 0 22px rgba(0, 0, 0, 0.5);
|
|
}
|