43 lines
820 B
CSS
43 lines
820 B
CSS
.map-item {
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: fit-content;
|
|
}
|
|
|
|
.map-item img {
|
|
justify-content: center;
|
|
width: 95%;
|
|
height: 400px;
|
|
object-fit: contain;
|
|
border-radius: 10px;
|
|
image-rendering: pixelated;
|
|
}
|
|
|
|
.title {
|
|
display: flex;
|
|
height: 77px;
|
|
width: 100%;
|
|
justify-content: center;
|
|
align-content: center;
|
|
/*border-bottom: 0.5px solid gray;*/
|
|
font-size: 30px;
|
|
flex-wrap: wrap;
|
|
padding-bottom: .5rem;
|
|
}
|
|
|
|
.map-update-item {
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: fit-content;
|
|
}
|
|
|
|
.map-update-item img {
|
|
width: 100%;
|
|
height: 400px;
|
|
object-fit: contain;
|
|
border-radius: 10px;
|
|
image-rendering: pixelated;
|
|
}
|