Initial commit
This commit is contained in:
commit
f7e6810eda
87 changed files with 11411 additions and 0 deletions
64
public/css/app.css
Normal file
64
public/css/app.css
Normal 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;
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue