28 lines
506 B
CSS
28 lines
506 B
CSS
.ulasan-hover-effect {
|
|
transition: all 0.2s ease-in-out;
|
|
}
|
|
|
|
.ulasan-hover-effect:hover {
|
|
transform: translateY(-3px);
|
|
background-color: #fdfdfd !important;
|
|
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
|
|
}
|
|
|
|
@media print {
|
|
.d-print-none {
|
|
display: none !important;
|
|
}
|
|
|
|
.col-6 {
|
|
width: 100% !important;
|
|
}
|
|
|
|
.card {
|
|
break-inside: avoid;
|
|
border: 1px solid #eee !important;
|
|
}
|
|
|
|
body {
|
|
background: white !important;
|
|
}
|
|
} |