13 lines
331 B
CSS
13 lines
331 B
CSS
/* 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); }
|
|
}
|