BeSok-app / assets /css /style.css
IndahPurn's picture
Upload 29 files
5b8ef5f verified
Raw
History Blame Contribute Delete
923 Bytes
/* Gunakan CSS standar, bukan syntax Tailwind @apply */
.section-container {
min-height: 600px;
display: flex;
align-items: center;
justify-content: center;
padding: 4rem 1.5rem;
}
/* Pastikan bagian ini juga menggunakan CSS standar */
.illustration-circle {
position: relative;
width: 20rem; /* Sama dengan size-80 */
height: 20rem;
border-radius: 9999px;
background-color: white;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
border: 12px solid rgba(0, 0, 0, 0.05); /* Border transparan default */
}
.step-label {
position: absolute;
top: -1rem;
left: -1rem;
color: white;
padding: 0.5rem 1.5rem;
border-radius: 1rem;
font-weight: 900;
font-size: 1.25rem;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
z-index: 10;
}