feat: 首页添加时间和todo模块
This commit is contained in:
342
assets/style.css
342
assets/style.css
@@ -11,7 +11,6 @@
|
||||
--text-color: #e4e6eb;
|
||||
--text-muted: #8b8c8f;
|
||||
--text-bright: #ffffff;
|
||||
--secondary-bg: #3a3b3f;
|
||||
--border-color: rgba(255, 255, 255, 0.05);
|
||||
--shadow-color: rgba(0, 0, 0, 0.15);
|
||||
--highlight-bg: rgba(118, 148, 185, 0.3);
|
||||
@@ -72,7 +71,6 @@ body.light-theme {
|
||||
--text-color: #333333;
|
||||
--text-muted: #666666;
|
||||
--text-bright: #000000;
|
||||
--secondary-bg: #d9d9d4;
|
||||
--border-color: rgba(0, 0, 0, 0.08);
|
||||
--shadow-color: rgba(0, 0, 0, 0.1);
|
||||
--highlight-bg: rgba(118, 148, 185, 0.15);
|
||||
@@ -672,7 +670,8 @@ body.loaded .layout {
|
||||
.submenu-item:hover {
|
||||
background-color: var(--secondary-bg);
|
||||
color: var(--text-bright);
|
||||
padding-left: 1.2rem; /* 悬浮时轻微右移增加动感 */
|
||||
padding-left: 1.2rem;
|
||||
/* 悬浮时轻微右移增加动感 */
|
||||
}
|
||||
|
||||
.submenu-item:hover i {
|
||||
@@ -3717,12 +3716,15 @@ body.light-theme .page-template-projects .gh-heatmap-category {
|
||||
.content-page h3 {
|
||||
font-size: 1.25em;
|
||||
}
|
||||
|
||||
.content-page h4 {
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
.content-page h5 {
|
||||
font-size: 0.875em;
|
||||
}
|
||||
|
||||
.content-page h6 {
|
||||
font-size: 0.85em;
|
||||
color: var(--text-muted);
|
||||
@@ -3863,3 +3865,337 @@ body.light-theme .page-template-projects .gh-heatmap-category {
|
||||
/* GitHub Calendar Fixes (HTML Table Version)
|
||||
* 注:此处样式已合并到上方「projects:GitHub 热力图(github-calendar.js)」区域,避免重复维护。
|
||||
*/
|
||||
|
||||
/* =========================================
|
||||
Home Dashboard Styles
|
||||
========================================= */
|
||||
|
||||
.dashboard-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
/* Mobile first: stack vertically */
|
||||
gap: var(--spacing-xl);
|
||||
margin-bottom: var(--spacing-xl);
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.dashboard-grid {
|
||||
grid-template-columns: 5fr 7fr;
|
||||
/* Desktop: 5/12 - 7/12 ratio like 1.html */
|
||||
align-items: stretch;
|
||||
/* Stretch to align bottoms */
|
||||
gap: var(--spacing-lg);
|
||||
/* Reduced gap */
|
||||
margin-bottom: var(--spacing-lg);
|
||||
/* Reduced margin */
|
||||
}
|
||||
}
|
||||
|
||||
/* --- Left Column: Welcome & Clock --- */
|
||||
.dashboard-intro {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
/* Match grid row height */
|
||||
gap: var(--spacing-md);
|
||||
/* Reduced gap */
|
||||
justify-content: space-between;
|
||||
/* Spread welcome and clock */
|
||||
}
|
||||
|
||||
.dashboard-welcome {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--spacing-md);
|
||||
}
|
||||
|
||||
.welcome-title {
|
||||
font-size: 3rem;
|
||||
font-family: var(--font-heading, serif);
|
||||
font-style: italic;
|
||||
color: var(--accent-color);
|
||||
line-height: 1;
|
||||
margin: 0;
|
||||
padding-left: var(--spacing-xl);
|
||||
/* Shift right */
|
||||
}
|
||||
|
||||
.welcome-subtitle {
|
||||
font-size: 1rem;
|
||||
letter-spacing: 0.2em;
|
||||
text-transform: uppercase;
|
||||
color: var(--text-muted);
|
||||
font-weight: 500;
|
||||
margin-top: 0.5rem;
|
||||
padding-left: var(--spacing-xl);
|
||||
/* Shift right */
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.welcome-title {
|
||||
font-size: 3.5rem;
|
||||
padding-left: 2rem;
|
||||
/* Reduced from 5rem */
|
||||
}
|
||||
|
||||
.welcome-subtitle {
|
||||
font-size: 1.125rem;
|
||||
padding-left: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* Clock Card - Optimized Layout */
|
||||
.dashboard-clock-card {
|
||||
position: relative;
|
||||
background-color: var(--card-bg-gradient-1);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: var(--radius-xl);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
flex: 1;
|
||||
box-shadow: 4px 4px 0px 0px rgba(255, 255, 255, 0.15);
|
||||
transition:
|
||||
transform 0.2s ease,
|
||||
box-shadow 0.2s ease;
|
||||
overflow: hidden;
|
||||
padding: var(--spacing-md);
|
||||
}
|
||||
|
||||
body.light-theme .dashboard-clock-card {
|
||||
box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.clock-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.clock-meta {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.clock-main {
|
||||
align-self: flex-end;
|
||||
/* Time at bottom right */
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.clock-time {
|
||||
font-size: 3.5rem;
|
||||
/* Reduced from 4.5rem to prevent overflow */
|
||||
font-weight: 700;
|
||||
color: var(--text-bright);
|
||||
line-height: 1;
|
||||
font-family: var(--font-body);
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
.clock-greeting {
|
||||
font-size: 0.85rem;
|
||||
color: var(--accent-color);
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.1em;
|
||||
margin-bottom: 0.2rem;
|
||||
}
|
||||
|
||||
.clock-week {
|
||||
font-size: 0.75rem;
|
||||
color: var(--text-muted);
|
||||
border: 1px solid var(--border-color);
|
||||
padding: 2px 8px;
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
.clock-date {
|
||||
font-size: 1.25rem;
|
||||
/* Reduced from 1.5rem */
|
||||
color: var(--text-muted);
|
||||
font-family: var(--font-body);
|
||||
}
|
||||
|
||||
/* --- Right Column: Stats / Todo --- */
|
||||
.dashboard-stats {
|
||||
height: 100%;
|
||||
min-height: 300px;
|
||||
}
|
||||
|
||||
.dashboard-panel {
|
||||
background-color: var(--card-bg-gradient-1);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: var(--radius-xl);
|
||||
display: flex;
|
||||
height: 310px;
|
||||
/* Increased from 280px to align with clock card better */
|
||||
overflow: hidden;
|
||||
box-shadow: 4px 4px 0px 0px rgba(255, 255, 255, 0.15);
|
||||
transition: box-shadow 0.2s ease;
|
||||
}
|
||||
|
||||
body.light-theme .dashboard-panel {
|
||||
box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.panel-sidebar {
|
||||
width: 4rem;
|
||||
background-color: var(--sidebar-bg);
|
||||
border-right: 4px solid var(--border-color);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
/* Icon at top, button at bottom */
|
||||
align-items: center;
|
||||
padding: var(--spacing-md) 0;
|
||||
}
|
||||
|
||||
.panel-static-icon {
|
||||
color: var(--text-muted);
|
||||
font-size: 1.5rem;
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
||||
.panel-icon-btn {
|
||||
background: none;
|
||||
border: none;
|
||||
color: var(--text-muted);
|
||||
font-size: 1.5rem;
|
||||
cursor: pointer;
|
||||
padding: 0.5rem;
|
||||
border-radius: var(--radius-md);
|
||||
transition: color 0.2s;
|
||||
}
|
||||
|
||||
.panel-icon-btn:hover {
|
||||
color: var(--accent-color);
|
||||
}
|
||||
|
||||
.panel-content-wrapper {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.panel-content {
|
||||
flex: 1;
|
||||
padding: var(--spacing-lg);
|
||||
overflow-y: auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--spacing-md);
|
||||
}
|
||||
|
||||
/* Todo Items */
|
||||
.todo-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--spacing-md);
|
||||
padding: 4px 0;
|
||||
/* Tighter spacing */
|
||||
cursor: pointer;
|
||||
transition: opacity 0.2s;
|
||||
opacity: 1;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.todo-item:hover .todo-delete-btn {
|
||||
opacity: 1;
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
.todo-checkbox {
|
||||
width: 1.25rem;
|
||||
height: 1.25rem;
|
||||
border: 2px solid var(--text-muted);
|
||||
border-radius: var(--radius-sm);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-shrink: 0;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.todo-checkbox.checked {
|
||||
background-color: var(--accent-color);
|
||||
border-color: var(--accent-color);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.todo-checkbox.checked span {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.todo-text {
|
||||
font-size: 1.1rem;
|
||||
color: var(--text-bright);
|
||||
flex: 1;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.todo-item.done .todo-text {
|
||||
text-decoration: line-through;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
/* Delete Button */
|
||||
.todo-delete-btn {
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
background: none;
|
||||
border: none;
|
||||
color: var(--error-color);
|
||||
padding: 0 0.5rem;
|
||||
cursor: pointer;
|
||||
transition: opacity 0.2s;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
/* Todo Input Area */
|
||||
.todo-input-container {
|
||||
padding-top: var(--spacing-sm);
|
||||
border-top: 1px solid var(--border-color);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
width: 100%;
|
||||
/* Ensure full width */
|
||||
margin-top: auto;
|
||||
/* Push to bottom if flex child */
|
||||
}
|
||||
|
||||
.todo-input {
|
||||
flex: 1;
|
||||
background: transparent;
|
||||
border: none;
|
||||
border-bottom: 2px solid var(--border-color);
|
||||
color: var(--text-bright);
|
||||
padding: 0.4rem 0;
|
||||
font-size: 1rem;
|
||||
font-family: var(--font-body);
|
||||
}
|
||||
|
||||
.todo-input:focus {
|
||||
outline: none;
|
||||
border-bottom-color: var(--accent-color);
|
||||
}
|
||||
|
||||
.todo-add-btn-small {
|
||||
background: none;
|
||||
border: none;
|
||||
color: var(--accent-color);
|
||||
cursor: pointer;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
/* Light Mode Overrides for Specific Dashboard Colors if needed */
|
||||
body.light-theme .welcome-title {
|
||||
/* Ensure visibility if default accent is too light on light bg,
|
||||
but var(--accent-color) usually handles this. */
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user