Files
gitlab-instance-0a899031_no…/app/components/content/EbookViewer.module.css
2026-03-12 00:34:50 -05:00

295 lines
6.4 KiB
CSS

/* 电子书阅读器 - 支持深色主题,可复用到 digital/nomadvip/nomadlms */
.readingProgress {
position: fixed;
top: 0;
left: 0;
height: 4px;
background: linear-gradient(90deg, var(--accent) 0%, #00f2fe 100%);
z-index: 201;
transition: width 0.15s linear;
border-radius: 0 4px 4px 0;
}
.readingTime {
font-size: 12px;
font-weight: 400;
color: var(--muted-foreground);
margin-left: 4px;
}
.headerSpacer {
width: 100%;
height: 88px;
}
.header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
height: 88px;
background: var(--card);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.headerLeft {
width: 100px;
display: flex;
align-items: center;
justify-content: center;
color: var(--foreground);
cursor: pointer;
}
.headerLeft:hover {
color: var(--accent);
}
.headerMiddle {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
font-weight: 600;
color: var(--foreground);
letter-spacing: 2px;
}
.headerRight {
width: 40px;
height: 40px;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
color: var(--accent);
cursor: pointer;
margin-right: 8px;
background: var(--accent-muted, rgba(245, 158, 11, 0.15));
border-radius: 50%;
transition: all 0.2s ease;
}
.headerRight:hover {
background: var(--accent-muted, rgba(245, 158, 11, 0.25));
}
.headerRightActive {
background: var(--accent) !important;
color: var(--accent-foreground) !important;
}
.headerRightText {
display: none;
margin-left: 4px;
}
.chunkEnter {
animation: chunkAppear 0.5s ease-out both;
}
@keyframes chunkAppear {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.chunkPlaceholder {
background: var(--muted);
background-size: 200% 100%;
animation: shimmer 1.8s ease infinite;
border-radius: 12px;
margin: 24px 0;
}
@keyframes shimmer {
0% { background-position: 200% 0; }
100% { background-position: -200% 0; }
}
.backToTop {
position: fixed;
bottom: 120px;
right: 30px;
width: 56px;
height: 56px;
background: var(--card);
backdrop-filter: blur(10px);
border: 1px solid var(--border);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
cursor: pointer;
z-index: 50;
color: var(--accent);
transition: transform 0.2s, box-shadow 0.2s;
}
.backToTop:hover {
transform: translateY(-2px);
box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}
.book {
padding: 30px;
max-width: 100%;
}
.markdownBody {
font-size: 16px !important;
line-height: 1.85 !important;
color: var(--foreground) !important;
word-wrap: break-word;
}
.markdownBody h1 {
font-size: 24px !important;
font-weight: 800;
color: var(--foreground);
margin: 28px 0 10px;
}
.markdownBody h1::after {
content: "";
display: block;
width: 40px;
height: 3px;
background: linear-gradient(90deg, var(--accent), #00f2fe);
border-radius: 3px;
margin-top: 8px;
}
.markdownBody h2 {
font-size: 21px !important;
font-weight: 700;
color: var(--foreground);
margin: 22px 0 9px;
padding-bottom: 12px;
border-bottom: 1px solid var(--border);
}
.markdownBody h3 { font-size: 18px !important; font-weight: 600; margin: 18px 0 7px; }
.markdownBody h4, .markdownBody h5, .markdownBody h6 { font-size: 16px !important; margin: 14px 0 6px; }
.markdownBody p { font-size: 16px !important; margin-bottom: 10px; line-height: 1.9; }
.markdownBody blockquote {
margin: 28px 0;
padding: 20px 24px 20px 30px;
background: var(--muted);
border-radius: 0 12px 12px 0;
color: var(--muted-foreground);
border-left: 4px solid var(--accent);
}
.markdownBody pre {
margin: 28px 0;
padding: 28px 24px;
background: var(--background);
border: 1px solid var(--border);
border-radius: 12px;
overflow-x: auto;
}
.markdownBody pre code {
font-family: var(--font-geist-mono), monospace;
font-size: 13px !important;
color: var(--foreground);
background: none !important;
}
.markdownBody code {
font-family: var(--font-geist-mono), monospace;
font-size: 14px !important;
padding: 2px 6px;
background: var(--muted);
color: var(--accent);
border-radius: 6px;
}
.markdownBody a { color: var(--accent); }
.markdownBody a:hover { text-decoration: underline; }
.markdownBody img { display: block; margin: 28px auto; max-width: 100%; border-radius: 8px; }
.markdownBody ul, .markdownBody ol { margin: 16px 0; padding-left: 40px; }
.markdownBody table { width: 100%; margin: 28px 0; border-collapse: collapse; border-radius: 8px; }
.markdownBody th { background: var(--muted); font-weight: 600; padding: 16px 20px; border: 1px solid var(--border); }
.markdownBody td { padding: 14px 20px; border: 1px solid var(--border); }
.drawer {
position: fixed;
top: 0;
right: 0;
bottom: 0;
width: 280px;
max-width: 85vw;
background: var(--card);
border-left: 1px solid var(--border);
box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
z-index: 150;
padding-top: 88px;
overflow-y: auto;
transform: translateX(100%);
transition: transform 0.3s ease;
}
.drawerOpen { transform: translateX(0); }
.drawerMask {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.4);
z-index: 140;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s ease;
}
.drawerMaskOpen {
opacity: 1;
pointer-events: auto;
}
.drawerItem {
padding: 16px 20px;
border-bottom: 1px solid var(--border);
color: var(--foreground);
cursor: pointer;
font-size: 15px;
transition: background 0.15s;
}
.drawerItem:hover {
background: var(--muted);
}
@media (min-width: 768px) {
.headerSpacer { height: 56px; }
.header { height: 56px; }
.progressBar { top: 56px; }
.headerMiddle { font-size: 18px; }
.headerRight {
width: auto;
height: 34px;
padding: 0 14px;
margin-right: 16px;
border-radius: 17px;
font-size: 13px;
}
.headerRightText { display: inline; }
.book { padding: 30px 60px; }
.markdownBody { max-width: 800px; margin: 0 auto; }
.markdownBody h1 { font-size: 28px !important; }
.markdownBody h2 { font-size: 23px !important; }
.drawer { padding-top: 56px; width: 300px; }
.backToTop { width: 44px; height: 44px; bottom: 40px; right: 40px; }
}