Where-in-the-World-is-Ben/public/css/app.css

65 lines
787 B
CSS

#pageHeader {
text-align: center;
}
.positive, .negative {
font-weight: bold;
}
.positive {
color: darkgreen;
}
.negative {
color: red;
}
.small {
font-variant: italic;
font-size: 0.8em;
}
#routeContainer {
display: grid;
}
#map {
min-height: 800px;
grid-column-start: 1;
grid-column-end: 3;
}
#checkinList {
grid-column-start: 1;
grid-column-end: 3;
}
details h2 {
display: inline-block;
}
@media screen and (min-width: 1024px) {
#routeContainer {
grid-template-columns: 3fr 1fr;
}
#map {
grid-column-end: 2;
}
#checkinList {
grid-column-start: 2;
}
}
.leaflet-popup-content {
width: auto !important;
}
.popup__image {
max-width: 500px;
max-height: 400px;
}