34 lines
939 B
CSS
34 lines
939 B
CSS
.scrolled-card {
|
|
background-color: white; /* Pastikan background putih */
|
|
border-radius: 20px; /* Untuk sudut yang membulat */
|
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Efek shadow */
|
|
transition: background-color 0.3s, color 0.3s; /* Transisi yang halus */
|
|
background-color: white !important;
|
|
color: black !important;
|
|
}
|
|
|
|
.scrolled-card .text-light {
|
|
color: black !important;
|
|
}
|
|
.icon-container {
|
|
display: flex;
|
|
align-items: center; /* Vertically centers the icon */
|
|
height: 100%; /* Ensure the container takes full height */
|
|
margin: 10px 0; /* Ganti dengan margin yang diinginkan */
|
|
}
|
|
.navbar {
|
|
transition: top 0.3s;
|
|
}
|
|
|
|
.navbar.hidden {
|
|
top: -100px; /* Atur sesuai tinggi navbar Anda */
|
|
}
|
|
|
|
.animated-link {
|
|
transition: transform 0.1s ease, text-shadow 0.2s ease;
|
|
}
|
|
|
|
.animated-link:active {
|
|
transform: scale(0.96);
|
|
text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
|
|
} |