body { line-height: 1.5; } .log-container { max-width: 800px; margin: 0 auto; padding: 40px 20px; } .page-header { margin-bottom: 50px; border-bottom: 1px solid var(--border); padding-bottom: 20px; display: flex; flex-direction: column; align-items: center; } .page-header h1 { color: var(--theme-color); margin: 0 0 10px 0; display: flex; align-items: center; gap: 10px; } .page-header p { color: var(--muted-foreground); margin: 0; } .live-tag { font-size: 0.8rem; background: rgba(16, 185, 129, 0.2); color: var(--success); padding: 4px 10px; border: 1px solid rgba(16, 185, 129, 0.3); vertical-align: middle; } .timeline { position: relative; padding-left: 30px; } .timeline::before { content: ''; position: absolute; left: 0; top: 5px; bottom: 0; width: 2px; background: var(--border); } .timeline-item { position: relative; margin-bottom: 50px; } .timeline-marker { position: absolute; left: -35px; top: 5px; width: 12px; height: 12px; border-radius: 50%; background: var(--background); border: 2px solid var(--muted-foreground); z-index: 1; } .timeline-item:first-child .timeline-marker { border-color: var(--theme-color); background: var(--theme-color); width: 14px; height: 14px; } .timeline-item:first-child .card-header { border-bottom: 1px solid var(--theme-color); } .date-label { display: inline-block; font-size: 0.85rem; color: var(--muted-foreground); margin-bottom: 8px; font-family: monospace; } .timeline-item:first-child .date-label { color: var(--theme-color); font-weight: bold; } .update-card { background: var(--card); border: 1px solid var(--border); overflow: hidden; transition: all 0.3s ease; } .timeline-item:first-child .update-card { border: 1px solid var(--theme-color); } .card-header { background: var(--card-header); padding: 12px 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-direction: row; } .version-title { margin: 0; font-size: 1.1rem; font-weight: 600; display: flex; align-items: center; gap: 10px; } .version-badge { background: var(--muted); padding: 2px 10px; font-size: 0.8rem; font-family: monospace; border: 1px solid var(--border); } .timeline-item:first-child .version-badge { background: var(--theme-color); color: #fff; font-weight: bold; border: none; } .card-body { padding: 20px; } .update-desc { margin-bottom: 15px; color: var(--muted-foreground); font-size: 0.95rem; } .change-list { list-style: none; padding: 0; margin: 0; } .change-item { display: flex; gap: 12px; margin-bottom: 10px; font-size: 0.9rem; align-items: flex-start; } .type-badge { font-size: 0.7rem; font-weight: 700; padding: 2px 6px; text-transform: uppercase; min-width: 55px; text-align: center; margin-top: 2px; } .tb-new { color: var(--success); background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2); } .tb-imp { color: var(--info); background: rgba(3, 255, 245, 0.1); border: 1px solid rgba(3, 255, 245, 0.2); } .tb-fix { color: #ef4444; background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.2); } .tb-core { color: var(--theme-color); background: rgba(243, 112, 33, 0.1); border: 1px solid rgba(243, 112, 33, 0.2); } @media(max-width: 600px) { .log-container { padding: 20px; } .timeline { padding-left: 20px; } .timeline-marker { left: -25px; } .timeline::before { left: 0; } }