편집 요약 없음 |
편집 요약 없음 |
||
| 59번째 줄: | 59번째 줄: | ||
.clbi-rc-card { | .clbi-rc-card { | ||
display: block; | display: block; | ||
padding: 7px 10px; | padding: 7px 10px 6px; | ||
margin-bottom: | margin-bottom: 3px; | ||
background: | background: #111111; | ||
border: 1px solid # | border: 1px solid #222222; | ||
border-radius: 3px; | border-radius: 3px; | ||
text-decoration: none !important; | text-decoration: none !important; | ||
transition: border-color 0. | transition: background 0.15s, border-color 0.15s; | ||
} | } | ||
| 74번째 줄: | 73번째 줄: | ||
.clbi-rc-card:hover { | .clbi-rc-card:hover { | ||
background: | background: #1a1a1a; | ||
border-color: # | border-color: #3a3a3a; | ||
} | } | ||
| 84번째 줄: | 82번째 줄: | ||
font-size: 12px; | font-size: 12px; | ||
font-weight: 700; | font-weight: 700; | ||
line-height: 1. | line-height: 1.3; | ||
white-space: nowrap; | white-space: nowrap; | ||
overflow: hidden; | overflow: hidden; | ||
text-overflow: ellipsis; | text-overflow: ellipsis; | ||
margin-bottom: | margin-bottom: 5px; | ||
transition: color 0.15s; | |||
} | } | ||
| 106번째 줄: | 105번째 줄: | ||
font-size: 9px; | font-size: 9px; | ||
font-weight: 700; | font-weight: 700; | ||
letter-spacing: 0. | letter-spacing: 0.2px; | ||
white-space: nowrap; | white-space: nowrap; | ||
overflow: hidden; | overflow: hidden; | ||
| 112번째 줄: | 111번째 줄: | ||
flex: 1; | flex: 1; | ||
min-width: 0; | min-width: 0; | ||
transition: color 0.15s; | |||
} | } | ||
| 119번째 줄: | 119번째 줄: | ||
.clbi-rc-card-time { | .clbi-rc-card-time { | ||
color: # | color: #888888; | ||
font-size: 9px; | font-size: 9px; | ||
white-space: nowrap; | white-space: nowrap; | ||
flex-shrink: 0; | flex-shrink: 0; | ||
letter-spacing: 0.2px; | letter-spacing: 0.2px; | ||
transition: color 0. | transition: color 0.15s; | ||
} | } | ||
.clbi-rc-card:hover .clbi-rc-card-time { | .clbi-rc-card:hover .clbi-rc-card-time { | ||
color: # | color: #bbbbbb; | ||
} | } | ||
/* 기존 clbi-recent- | /* 기존 clbi-recent-item (다른 곳 호환용) */ | ||
.clbi-recent-item { | .clbi-recent-item { | ||
display: flex; | display: flex; | ||
| 145번째 줄: | 139번째 줄: | ||
gap: 6px; | gap: 6px; | ||
position: relative; | position: relative; | ||
} | } | ||
.clbi-recent-title-wrap { | .clbi-recent-title-wrap { | ||
flex: 1; | flex: 1; | ||
overflow: hidden; | overflow: hidden; | ||
position: relative; | position: relative; | ||
mask-image: linear-gradient(to right, black | mask-image: linear-gradient(to right, black 90%, transparent 100%); | ||
-webkit-mask-image: linear-gradient(to right, black | -webkit-mask-image: linear-gradient(to right, black 90%, transparent 100%); | ||
} | } | ||
.clbi-recent-title { | .clbi-recent-title { | ||
display: inline-block; | display: inline-block; | ||
white-space: nowrap; | white-space: nowrap; | ||
color: # | color: #E2E2E2 !important; | ||
font-size: 12px; | font-size: 12px; | ||
text-decoration: none; | text-decoration: none; | ||
} | } | ||
.clbi-recent-title:hover { color: #d45aa2 !important; } | |||
.clbi-recent-time { | .clbi-recent-time { | ||
color: # | color: #854369; | ||
font-size: | font-size: 10px; | ||
white-space: nowrap; | white-space: nowrap; | ||
flex-shrink: 0; | flex-shrink: 0; | ||
} | } | ||
@keyframes clbi-scroll { | @keyframes clbi-scroll { | ||
2026년 5월 13일 (수) 05:43 판
/* =========================================
COASTLINE: BLACK ICE - Components
========================================= */
/* 가짜 문단 */
.fake-h1 {
display: block;
font-family: 'BoldRound', sans-serif !important;
font-size: 2em;
font-weight: 700;
line-height: 1.3;
color: #ffffff;
}
.fake-h2 {
display: block;
font-family: 'BoldRound', sans-serif !important;
font-size: 1.5em;
font-weight: 700;
line-height: 1.3;
color: #ffffff;
}
/* 툴팁 */
.tooltip-template-trigger {
cursor: pointer;
color: #722f37;
user-select: none;
}
.tooltip-template {
display: none;
margin: 5px 0;
border: 1px solid #854369;
background: #1a1a1a;
color: #000;
padding: 12px;
border-radius: 3px;
text-align: left;
user-select: text;
position: absolute;
z-index: 5;
}
.tooltip-template-trigger:hover { text-decoration: underline; }
.tooltip-template-trigger:hover + .tooltip-template { display: block; user-select: none; }
.tooltip-template-trigger:active + .tooltip-template { display: block; user-select: none; }
.tooltip-template:hover { display: block; }
/* 펼접 */
[id^="collapsible"] {
overflow: hidden;
max-height: 0;
transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
[id^="collapsible"].folding-open {
transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
/* ── 최근 변경 / 체인지로그 카드 ── */
.clbi-rc-card {
display: block;
padding: 7px 10px 6px;
margin-bottom: 3px;
background: #111111;
border: 1px solid #222222;
border-radius: 3px;
text-decoration: none !important;
transition: background 0.15s, border-color 0.15s;
}
.clbi-rc-card:last-child {
margin-bottom: 0;
}
.clbi-rc-card:hover {
background: #1a1a1a;
border-color: #3a3a3a;
}
.clbi-rc-card-title {
display: block;
color: #e2e2e2 !important;
font-size: 12px;
font-weight: 700;
line-height: 1.3;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin-bottom: 5px;
transition: color 0.15s;
}
.clbi-rc-card:hover .clbi-rc-card-title {
color: #ffffff !important;
}
.clbi-rc-card-meta {
display: flex;
align-items: center;
justify-content: space-between;
gap: 6px;
}
.clbi-rc-card-user {
color: #854369;
font-size: 9px;
font-weight: 700;
letter-spacing: 0.2px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
flex: 1;
min-width: 0;
transition: color 0.15s;
}
.clbi-rc-card:hover .clbi-rc-card-user {
color: #d45aa2;
}
.clbi-rc-card-time {
color: #888888;
font-size: 9px;
white-space: nowrap;
flex-shrink: 0;
letter-spacing: 0.2px;
transition: color 0.15s;
}
.clbi-rc-card:hover .clbi-rc-card-time {
color: #bbbbbb;
}
/* 기존 clbi-recent-item (다른 곳 호환용) */
.clbi-recent-item {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 6px;
gap: 6px;
position: relative;
}
.clbi-recent-title-wrap {
flex: 1;
overflow: hidden;
position: relative;
mask-image: linear-gradient(to right, black 90%, transparent 100%);
-webkit-mask-image: linear-gradient(to right, black 90%, transparent 100%);
}
.clbi-recent-title {
display: inline-block;
white-space: nowrap;
color: #E2E2E2 !important;
font-size: 12px;
text-decoration: none;
}
.clbi-recent-title:hover { color: #d45aa2 !important; }
.clbi-recent-time {
color: #854369;
font-size: 10px;
white-space: nowrap;
flex-shrink: 0;
}
@keyframes clbi-scroll {
0% { transform: translateX(0); }
80% { transform: translateX(var(--scroll-dist)); }
81% { transform: translateX(0); }
100% { transform: translateX(0); }
}
/* 왼쪽 목차: 끝 지점에서 잠깐 머문 뒤 눈을 감고 뜨듯이 원위치로 복귀 */
@keyframes toc-scroll-blink-reset {
0% {
transform: translateX(0);
opacity: 1;
clip-path: inset(0 0 0 0);
}
68% {
transform: translateX(var(--scroll-dist));
opacity: 1;
clip-path: inset(0 0 0 0);
}
80% {
transform: translateX(var(--scroll-dist));
opacity: 1;
clip-path: inset(0 0 0 0);
}
84% {
transform: translateX(var(--scroll-dist));
opacity: 0;
clip-path: inset(48% 0 48% 0);
}
85% {
transform: translateX(0);
opacity: 0;
clip-path: inset(48% 0 48% 0);
}
89% {
transform: translateX(0);
opacity: 1;
clip-path: inset(0 0 0 0);
}
100% {
transform: translateX(0);
opacity: 1;
clip-path: inset(0 0 0 0);
}
}
/* 호버 애니메이션 */
.hover-gif-btn .gif-static,
.hover-gif-btn .gif-animated { transition: opacity 0.3s ease; }
.hover-gif-btn:not(:hover) .gif-animated { opacity: 0 !important; }
.hover-gif-btn:hover .gif-static { opacity: 0 !important; }
.hover-gif-btn:hover .gif-animated { opacity: 0.25 !important; }
.hover-gif-btn:hover .hover-flash-effect { animation: fast-flash 0.4s ease-out forwards; }
@keyframes fast-flash { 0% { opacity: 0.8; } 100% { opacity: 0; } }
.hover-new-img-layer { transform: translateX(-100%); transition: transform 0.3s cubic-bezier(0.1, 0.7, 0.1, 1); opacity: 0; }
.hover-gif-btn:hover .hover-new-img-layer { transform: translateX(0); opacity: 0.25; }
/* drift 애니메이션 */
.drift-btn .drift-img-1 { opacity: 0.3; }
.drift-btn .drift-img-2 { opacity: 0; }
.drift-btn:hover .drift-img-1 { animation: driftLeftFade 12s linear infinite; }
.drift-btn:hover .drift-img-2 { animation: driftRightFade 12s linear infinite; }
@keyframes driftLeftFade {
0% { opacity: 0.3; transform: scale(1.15) translateX(15px); }
40% { opacity: 0.3; transform: scale(1.15) translateX(-15px); }
50% { opacity: 0; transform: scale(1.15) translateX(-20px); }
90% { opacity: 0; transform: scale(1.15) translateX(20px); }
100% { opacity: 0.3; transform: scale(1.15) translateX(15px); }
}
@keyframes driftRightFade {
0% { opacity: 0; transform: scale(1.15) translateX(-20px); }
40% { opacity: 0; transform: scale(1.15) translateX(-20px); }
50% { opacity: 0.3; transform: scale(1.15) translateX(-15px); }
90% { opacity: 0.3; transform: scale(1.15) translateX(15px); }
100% { opacity: 0; transform: scale(1.15) translateX(20px); }
}
/* ========== 프로필 시스템 ========== */
.profile-card {
background: #1e1e1e;
border: 1px solid #2e2e2e;
border-radius: 12px;
padding: 32px;
margin-bottom: 24px;
}
.profile-header {
display: flex;
gap: 24px;
align-items: flex-start;
position: relative;
}
.profile-avatar img {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
border: 3px solid #854369;
}
.profile-info { flex: 1; }
.profile-username {
font-size: 1.6em;
font-weight: bold;
color: #e2e2e2;
margin: 0 0 4px 0;
border: none;
padding: 0;
}
.profile-name { font-size: 1em; color: #aaa; margin-bottom: 6px; }
.profile-role {
display: inline-block;
background: #854369;
color: #fff;
font-size: 0.8em;
padding: 2px 10px;
border-radius: 20px;
margin-bottom: 8px;
}
.profile-discord { font-size: 0.85em; color: #7289da; margin-bottom: 6px; }
.profile-bio { font-size: 0.9em; color: #ccc; margin-top: 8px; line-height: 1.5; }
.profile-badges { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 6px; }
.clbi-badge {
background: #2e2e2e;
border: 1px solid #854369;
color: #d45aa2;
font-size: 0.78em;
padding: 2px 10px;
border-radius: 20px;
}
.profile-edit-btn {
position: absolute;
top: 0;
right: 0;
background: transparent;
border: 1px solid #854369;
color: #d45aa2;
padding: 6px 14px;
border-radius: 6px;
font-size: 0.85em;
text-decoration: none;
}
.profile-edit-btn:hover { background: #854369; color: #fff; }
.profile-stats {
margin-top: 20px;
padding-top: 16px;
border-top: 1px solid #2e2e2e;
display: flex;
gap: 32px;
}
.profile-stat { display: flex; flex-direction: column; align-items: center; }
.clbi-stat-value { font-size: 1.4em; font-weight: bold; color: #e2e2e2; }
.clbi-stat-label { font-size: 0.8em; color: #888; }
/* 사용자정보 페이지 */
.clbi-pref-static {
color: #e2e2e2;
padding: 8px 12px;
background: #111;
border: 1px solid #2e2e2e;
border-radius: 6px;
font-size: 0.9em;
}
.clbi-pref-link {
display: inline-block;
color: #d45aa2 !important;
font-size: 0.9em;
padding: 4px 0;
}
.clbi-pref-link:hover { color: #ff85c0 !important; }
.clbi-prefs-profile { max-width: 500px; padding: 20px 0; }
.clbi-pref-row { margin-bottom: 16px; }
.clbi-pref-row label { display: block; font-size: 0.9em; color: #aaa; margin-bottom: 6px; }
.clbi-pref-row input,
.clbi-pref-row textarea {
width: 100%;
background: #1e1e1e;
border: 1px solid #2e2e2e;
color: #e2e2e2;
padding: 8px 12px;
border-radius: 6px;
font-size: 0.9em;
}
.clbi-pref-row textarea { height: 80px; resize: vertical; }
.clbi-pref-row input:focus,
.clbi-pref-row textarea:focus { outline: none; border-color: #854369; }
#clbi-pref-save {
background: #854369;
color: #fff;
border: none;
padding: 8px 20px;
border-radius: 6px;
cursor: pointer;
font-size: 0.9em;
}
#clbi-pref-save:hover { background: #a0527e; }
#clbi-pref-status { margin-left: 12px; color: #33b733; font-size: 0.9em; }