Add hobbies page and update projects WIP UI
Introduced a new HobbiesComponent with routing and navigation updates. Removed unused ProjectDetailsComponent. Enhanced the projects page with a new 'work in progress' UI and improved .gitattributes for better file handling.
This commit is contained in:
19
src/app/pages/hobbies/hobbies.component.scss
Normal file
19
src/app/pages/hobbies/hobbies.component.scss
Normal file
@@ -0,0 +1,19 @@
|
||||
.terminal-loader {
|
||||
font-family: monospace;
|
||||
font-size: 1.1rem;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.cursor {
|
||||
width: 10px;
|
||||
height: 1.1rem;
|
||||
background: var(--app-fg);
|
||||
margin-left: .25rem;
|
||||
animation: blink .8s infinite;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
0%, 50% { opacity: 1; }
|
||||
51%, 100% { opacity: 0; }
|
||||
}
|
||||
Reference in New Issue
Block a user