35 lines
822 B
CSS
35 lines
822 B
CSS
.section-banner{
|
|
background: aqua;
|
|
border-radius: 10px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.section-banner::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(211, 25, 0, 0.596); /* Ubah warna latar belakang sesuai keinginan Anda */
|
|
z-index: 1; /* Pastikan z-index lebih tinggi daripada teks */
|
|
}
|
|
|
|
.section-banner-2{
|
|
background: aqua;
|
|
border-radius: 10px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.section-banner-2::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(15, 5, 0, 0.596); /* Ubah warna latar belakang sesuai keinginan Anda */
|
|
z-index: 1; /* Pastikan z-index lebih tinggi daripada teks */
|
|
} |