Added individual pages with descriptions for each project.

This commit is contained in:
Rapturate
2026-03-23 10:39:30 -04:00
parent 346f868784
commit d744abba86
15 changed files with 993 additions and 118 deletions

View File

@@ -0,0 +1,12 @@
/* project5Style.css — Coming Soon / Under Construction */
@import "projectDetailStyle.css";
/* Spin the dashed circle on the under-construction SVG */
.coming-soon-icon svg circle {
animation: spin-ring 12s linear infinite;
transform-origin: 40px 40px;
}
@keyframes spin-ring {
to { transform: rotate(360deg); }
}