64 lines
1.2 KiB
CSS
64 lines
1.2 KiB
CSS
.border-table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
font-size: 16px;
|
|
}
|
|
.border-table td,
|
|
.border-table th {
|
|
border-bottom: 1px solid #ddd;
|
|
padding: 8px;
|
|
font-weight: bold;
|
|
}
|
|
.border-table th {
|
|
text-align: left;
|
|
}
|
|
.title {
|
|
margin-bottom: 20px;
|
|
margin-top: 20px;
|
|
}
|
|
.table-container {
|
|
border: 1px solid #000;
|
|
padding: 10px;
|
|
margin-top: 20px;
|
|
}
|
|
.description{
|
|
font-size: 16px;
|
|
}
|
|
.btn-round {
|
|
border-radius: 15px;
|
|
}
|
|
.cover-image {
|
|
position: relative;
|
|
display: block;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
height: 0;
|
|
padding-top: calc(400 / 630 * 100%);
|
|
background-image: var(--car-unit-image);
|
|
background-size: cover;
|
|
background-position: center center;
|
|
transition: filter 0.3s ease, transform 0.3s ease;
|
|
transform-origin: center center;
|
|
border-radius: 10px;
|
|
}
|
|
.cover-image::before {
|
|
content: 'Lihat Foto Lengkap';
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
color: white;
|
|
padding: 10px 20px;
|
|
border-radius: 5px;
|
|
opacity: 1;
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
.cover-image:hover::before {
|
|
opacity: 0;
|
|
}
|
|
.cover-image:hover {
|
|
filter: brightness(80%);
|
|
transform: scale(1.1);
|
|
}
|