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

169 lines
2.1 KiB
CSS
Raw Normal View History

2022-09-24 19:36:06 +00:00
/*
* Typography
*/
body {
font-family: Verdana, Arial, sans-serif;
font-size: 16px;
}
.page-title {
font-size: 3em;
2022-08-23 19:11:43 +00:00
text-align: center;
2022-09-24 19:36:06 +00:00
}
details h2 {
display: inline;
2022-08-23 19:11:43 +00:00
}
2022-09-24 19:36:06 +00:00
.positive,
.negative {
2022-08-23 19:11:43 +00:00
font-weight: bold;
}
.positive {
color: darkgreen;
}
.negative {
color: red;
}
.small {
font-variant: italic;
font-size: 0.8em;
}
2022-09-24 19:36:06 +00:00
/*
* Layout
*/
2022-10-19 22:34:34 +00:00
.page-header {
background-color: #a4ecfc;
border-bottom: 5px solid black;
}
2022-09-24 19:36:06 +00:00
.other-links {
display: block;
margin: auto;
2022-10-19 21:14:10 +00:00
overflow: auto;
2022-09-24 19:36:06 +00:00
}
2022-10-07 19:02:57 +00:00
.other-links ul {
list-style: none;
2022-10-19 21:14:10 +00:00
margin: 0 auto;
width: fit-content;
2022-10-07 19:02:57 +00:00
}
.other-links li {
float: left;
margin-right: 1.5em;
}
2022-09-24 19:36:06 +00:00
.trip-meta {
display: block;
width: 100%;
2022-10-19 21:14:10 +00:00
text-align: center;
2022-09-24 19:36:06 +00:00
}
.main--list {
margin: auto;
width: 100%;
max-width: 980px;
}
2022-08-23 19:11:43 +00:00
#routeContainer {
display: grid;
2022-09-24 19:36:06 +00:00
grid-gap: 20px;
2022-08-23 19:11:43 +00:00
}
2022-10-19 21:14:10 +00:00
#mapContainer {
2022-08-23 19:11:43 +00:00
grid-column-start: 1;
grid-column-end: 3;
2022-10-19 21:14:10 +00:00
}
#map {
height: 400px;
2022-08-23 19:11:43 +00:00
}
#checkinList {
grid-column-start: 1;
grid-column-end: 3;
}
2022-10-19 22:34:34 +00:00
.checkin {
2022-08-29 21:34:11 +00:00
border-top: 1px solid black;
padding: 1em 0;
}
2022-10-19 22:34:34 +00:00
.checkin__summary {
cursor: pointer;
}
.checkin[open] .checkin__summary {
margin-bottom: 1em;
border-bottom: 1px solid gray;
}
.checkin__meta {
margin: 0;
}
.checkin[open] .checkin__meta {
2022-08-29 21:34:11 +00:00
margin-bottom: 1em;
}
2022-10-19 22:34:34 +00:00
#checkinList li:first-child .checkin {
2022-08-29 21:34:11 +00:00
border-top: none;
}
.leaflet-popup {
max-width: 85vw;
max-height: 85vh;
min-width: 60vw;
}
.leaflet-popup-content {
width: auto !important;
}
.popup__image {
width: auto;
height: auto;
max-width: 70vw;
2022-10-19 21:18:14 +00:00
}
/*
* Large Display
*/
@media screen and (min-width: 1024px) {
.page-title {
text-align: left;
}
#routeContainer {
grid-template-columns: 3fr 1fr;
}
#mapContainer {
grid-column-end: 2;
}
#map {
height: auto;
min-height: 800px;
}
#checkinList {
grid-column-start: 2;
}
.leaflet-popup {
min-width: 350px;
}
.popup__image {
2022-08-29 21:34:11 +00:00
max-width: 50vw;
}
2022-08-23 19:11:43 +00:00
}