46 lines
828 B
CSS
46 lines
828 B
CSS
* {
|
|
padding: none;
|
|
margin: none;
|
|
}
|
|
|
|
.icon-circle {
|
|
position: relative;
|
|
width: 300px;
|
|
height: 300px;
|
|
margin: 2rem auto;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.central-icon {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
font-size: 2rem;
|
|
background: white;
|
|
padding: 1rem;
|
|
border-radius: 50%;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
z-index: 1;
|
|
}
|
|
|
|
.floating-icon {
|
|
position: absolute;
|
|
width: 40px;
|
|
height: 40px;
|
|
background: white;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: rotate(calc(45deg * var(--i))) translate(130px) rotate(calc(-45deg * var(--i)));
|
|
box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.floating-icon i {
|
|
font-size: 1.25rem;
|
|
color: #7c3aed; /* Morado como el diseño */
|
|
}
|