24 lines
515 B
CSS
24 lines
515 B
CSS
.construction-icon-wrapper {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 80px;
|
|
height: 80px;
|
|
background: rgba(59, 130, 246, 0.1); /* Nutzt die var(--accent) Transparenz */
|
|
border: 1px solid rgba(59, 130, 246, 0.2);
|
|
border-radius: 50%;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.gear-icon {
|
|
animation: gearRotate 8s linear infinite;
|
|
}
|
|
|
|
@keyframes gearRotate {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
} |