- React 18 + Vite + React Router v6 - Glass morphism cards with rounded corners - Dark/light theme toggle - Article CRUD with localStorage persistence - Search, admin panel (PIN: 2501), sakura petal canvas animation Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
11 lines
260 B
CSS
11 lines
260 B
CSS
.bar {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
height: 2px;
|
|
background: linear-gradient(90deg, var(--color-accent-strong), var(--color-accent));
|
|
z-index: 200;
|
|
transition: width 0.1s linear;
|
|
border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
|
|
}
|