편집 요약 없음 |
편집 요약 없음 |
||
| 61번째 줄: | 61번째 줄: | ||
padding: 9px 12px 8px; | padding: 9px 12px 8px; | ||
margin-bottom: 4px; | margin-bottom: 4px; | ||
background: linear-gradient(135deg, | background: | ||
linear-gradient(135deg, rgba(30,30,30,0.94) 0%, rgba(18,18,18,0.97) 55%, rgba(10,10,10,0.99) 100%), | |||
url('/index.php?title=특수:Redirect/file/gfx-halftone-001.png') repeat; | |||
background-blend-mode: multiply; | |||
border: 1px solid #252525; | border: 1px solid #252525; | ||
border-radius: 3px; | border-radius: 3px; | ||
| 67번째 줄: | 70번째 줄: | ||
position: relative; | position: relative; | ||
overflow: hidden; | overflow: hidden; | ||
transition: | transition: border-color 0.15s; | ||
} | } | ||
| 73번째 줄: | 76번째 줄: | ||
content: ''; | content: ''; | ||
position: absolute; | position: absolute; | ||
top: 0; | top: 0; left: 0; right: 0; | ||
height: 1px; | height: 1px; | ||
background: linear-gradient(to right, transparent, rgba(255,255,255,0. | background: linear-gradient(to right, transparent, rgba(255,255,255,0.07) 40%, transparent); | ||
pointer-events: none; | pointer-events: none; | ||
z-index: 1; | |||
} | } | ||
.clbi-rc-card: | .clbi-rc-card::after { | ||
content: ''; | |||
position: absolute; | |||
bottom: 0; right: 0; | |||
width: 60%; height: 65%; | |||
background: radial-gradient(ellipse at 100% 100%, rgba(133,67,105,0.08) 0%, transparent 70%); | |||
pointer-events: none; | |||
} | } | ||
.clbi-rc-card:last-child { margin-bottom: 0; } | |||
.clbi-rc-card:hover { | .clbi-rc-card:hover { | ||
background: linear-gradient(135deg, | background: | ||
border-color: # | linear-gradient(135deg, rgba(40,33,37,0.95) 0%, rgba(26,20,24,0.98) 55%, rgba(15,11,13,1) 100%), | ||
url('/index.php?title=특수:Redirect/file/gfx-halftone-001.png') repeat; | |||
background-blend-mode: multiply; | |||
border-color: #3a3a3a; | |||
} | |||
.clbi-rc-card:hover::after { | |||
background: radial-gradient(ellipse at 100% 100%, rgba(133,67,105,0.16) 0%, transparent 70%); | |||
} | } | ||
| 100번째 줄: | 116번째 줄: | ||
text-overflow: ellipsis; | text-overflow: ellipsis; | ||
margin-bottom: 5px; | margin-bottom: 5px; | ||
position: relative; | |||
z-index: 1; | |||
transition: color 0.15s; | transition: color 0.15s; | ||
} | } | ||
.clbi-rc-card:hover .clbi-rc-card-title { | .clbi-rc-card:hover .clbi-rc-card-title { color: #ffffff !important; } | ||
} | |||
.clbi-rc-card-meta { | .clbi-rc-card-meta { | ||
| 112번째 줄: | 128번째 줄: | ||
justify-content: space-between; | justify-content: space-between; | ||
gap: 6px; | gap: 6px; | ||
position: relative; | |||
z-index: 1; | |||
} | } | ||
| 127번째 줄: | 145번째 줄: | ||
} | } | ||
.clbi-rc-card:hover .clbi-rc-card-user { | .clbi-rc-card:hover .clbi-rc-card-user { color: #b54d8a; } | ||
} | |||
.clbi-rc-card-time { | .clbi-rc-card-time { | ||
| 140번째 줄: | 156번째 줄: | ||
} | } | ||
.clbi-rc-card:hover .clbi-rc-card-time { | .clbi-rc-card:hover .clbi-rc-card-time { color: #999999; } | ||
} | |||
/* | /* 최근 변경 */ | ||
.clbi-recent-item { | .clbi-recent-item { | ||
display: flex; | display: flex; | ||
2026년 5월 13일 (수) 09:16 판
/* =========================================
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: 9px 12px 8px;
margin-bottom: 4px;
background:
linear-gradient(135deg, rgba(30,30,30,0.94) 0%, rgba(18,18,18,0.97) 55%, rgba(10,10,10,0.99) 100%),
url('/index.php?title=특수:Redirect/file/gfx-halftone-001.png') repeat;
background-blend-mode: multiply;
border: 1px solid #252525;
border-radius: 3px;
text-decoration: none !important;
position: relative;
overflow: hidden;
transition: border-color 0.15s;
}
.clbi-rc-card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 1px;
background: linear-gradient(to right, transparent, rgba(255,255,255,0.07) 40%, transparent);
pointer-events: none;
z-index: 1;
}
.clbi-rc-card::after {
content: '';
position: absolute;
bottom: 0; right: 0;
width: 60%; height: 65%;
background: radial-gradient(ellipse at 100% 100%, rgba(133,67,105,0.08) 0%, transparent 70%);
pointer-events: none;
}
.clbi-rc-card:last-child { margin-bottom: 0; }
.clbi-rc-card:hover {
background:
linear-gradient(135deg, rgba(40,33,37,0.95) 0%, rgba(26,20,24,0.98) 55%, rgba(15,11,13,1) 100%),
url('/index.php?title=특수:Redirect/file/gfx-halftone-001.png') repeat;
background-blend-mode: multiply;
border-color: #3a3a3a;
}
.clbi-rc-card:hover::after {
background: radial-gradient(ellipse at 100% 100%, rgba(133,67,105,0.16) 0%, transparent 70%);
}
.clbi-rc-card-title {
display: block;
color: #d8d8d8 !important;
font-size: 12px;
font-weight: 700;
line-height: 1.3;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin-bottom: 5px;
position: relative;
z-index: 1;
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;
position: relative;
z-index: 1;
}
.clbi-rc-card-user {
color: #6a3055;
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: #b54d8a; }
.clbi-rc-card-time {
color: #555555;
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: #999999; }
/* 최근 변경 */
.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; }