Initial commit

This commit is contained in:
Ben Goldsworthy 2022-08-23 19:11:43 +00:00
commit f7e6810eda
87 changed files with 11411 additions and 0 deletions

64
public/css/app.css Normal file
View file

@ -0,0 +1,64 @@
#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;
}