2020-06-01 20:39:23 +02:00
|
|
|
#mapContainer {
|
|
|
|
display: grid;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mapItem {
|
|
|
|
width: 350px;
|
|
|
|
margin: 10px auto;
|
|
|
|
}
|
|
|
|
|
2020-06-10 23:17:13 +02:00
|
|
|
div.mapItem.new {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2020-06-01 20:39:23 +02:00
|
|
|
div.mapItem>div.title {
|
|
|
|
background-color: #28a745;
|
|
|
|
color: white;
|
|
|
|
border-top-left-radius: 3px;
|
|
|
|
border-top-right-radius: 3px;
|
|
|
|
padding: 4px 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mapItem>div.title>p.title {
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
2020-06-14 11:11:37 +02:00
|
|
|
div.mapItem>div.imgContainer {
|
2020-06-01 20:39:23 +02:00
|
|
|
width: 100%;
|
2020-06-14 11:11:37 +02:00
|
|
|
padding-top: 50%;
|
|
|
|
background: #cccccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mapItem>div.imgContainer>img {
|
|
|
|
width: 100%;
|
|
|
|
margin-top: -50%
|
2020-06-01 20:39:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
div.mapItem>div.inner {
|
2020-06-10 23:17:13 +02:00
|
|
|
background-color: #eeeeee;
|
2020-06-10 00:30:29 +02:00
|
|
|
padding: 10px 8px;
|
2020-06-01 20:39:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
div.mapItem>div.inner>div.info {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mapItem>div.inner>div.info>p:nth-child(1) {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mapItem>div.inner>div.info>p:nth-child(2) {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2020-06-10 23:17:13 +02:00
|
|
|
div.mapItem>div.buttonContainer {
|
|
|
|
display: grid;
|
|
|
|
grid-auto-columns: 1fr;
|
|
|
|
grid-auto-flow: column;
|
|
|
|
}
|
|
|
|
|
2020-06-01 20:39:23 +02:00
|
|
|
@media screen and (min-width: 1504px) {
|
|
|
|
#mapContainer {
|
|
|
|
grid-template-columns: auto auto auto auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 1134px) and (max-width: 1503px) {
|
|
|
|
#mapContainer {
|
|
|
|
grid-template-columns: auto auto auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 764px) and (max-width: 1133px) {
|
|
|
|
#mapContainer {
|
|
|
|
grid-template-columns: auto auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 763px) {
|
|
|
|
#mapContainer {
|
|
|
|
grid-template-columns: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 374px) {
|
|
|
|
div.mapItem {
|
2020-06-10 23:17:13 +02:00
|
|
|
width: 100%;
|
2020-06-01 20:39:23 +02:00
|
|
|
}
|
|
|
|
}
|