25 lines
2.0 KiB
Plaintext
25 lines
2.0 KiB
Plaintext
.loading { text-align: center; padding: 40px; color: #86868B; }
|
|
.card { background: white; border-radius: 12px; margin: 8px 16px; padding: 16px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
|
|
.action-btn { position: absolute; right: 16px; top: 12px; font-size: 20px; padding: 4px 8px; z-index: 10; }
|
|
.action-menu { position: absolute; right: 16px; top: 44px; background: white; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); z-index: 10; min-width: 120px; }
|
|
.action-item { padding: 12px 16px; font-size: 14px; border-bottom: 0.5px solid #E5E5EA; }
|
|
.action-item:last-child { border-bottom: none; }
|
|
.item-header { display: flex; align-items: center; gap: 12px; }
|
|
.item-icon { width: 52px; height: 52px; border-radius: 14px; background: #FFF0EB; display: flex; align-items: center; justify-content: center; font-size: 26px; }
|
|
.item-name { font-size: 18px; font-weight: 700; display: block; }
|
|
.item-meta { font-size: 13px; color: #86868B; display: block; margin-top: 2px; }
|
|
.item-goal { font-size: 13px; color: #86868B; display: block; margin-top: 2px; }
|
|
.stats-row { display: flex; justify-content: space-around; background: white; border-radius: 12px; margin: 8px 16px; padding: 16px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
|
|
.stat { text-align: center; }
|
|
.stat-num { font-size: 28px; font-weight: 700; color: #FF6B35; display: block; }
|
|
.stat-lbl { font-size: 13px; color: #86868B; }
|
|
.calendar { padding: 16px; }
|
|
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 16px; font-weight: 600; }
|
|
.cal-nav { font-size: 18px; padding: 4px 8px; }
|
|
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; text-align: center; }
|
|
.cal-weekday { font-size: 12px; color: #86868B; padding: 6px 0; }
|
|
.cal-day { padding: 8px 0; font-size: 14px; border-radius: 8px; position: relative; }
|
|
.cal-day.checked { font-weight: 600; }
|
|
.cal-day.today { background: #FFF0EB; }
|
|
.cal-dot { width: 6px; height: 6px; border-radius: 3px; background: #34C759; margin: 2px auto 0; }
|