Spaces:
Running
Running
File size: 418 Bytes
31fd3eb 75d3001 093b595 57060db 31fd3eb 57060db 75d3001 31fd3eb 75d3001 31fd3eb 75d3001 31fd3eb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | .container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #222;
}
.circle {
width: 300px;
height: 300px;
border-radius: 50%;
border: 10px solid #00ffff;
position: relative;
}
.hexagon {
width: 50px;
height: 28.87px;
background-color: #333;
position: absolute;
}
/* ... outros estilos para os hexágonos ... */
|