marten-application/src/App.css

50 lines
947 B
CSS
Raw Normal View History

2018-09-19 20:42:56 +00:00
body {
margin: 0;
}
2018-10-25 15:31:38 +00:00
@media (min-width: 600px) {
2018-10-24 17:09:53 +00:00
.sighting-google-map-container > div {
2018-10-25 15:31:38 +00:00
width: calc(100% - 240px) !important;
height: calc(100% - 64px) !important;
2018-10-24 17:09:53 +00:00
}
}
2018-10-24 22:09:23 +00:00
@media (min-width: 960px) {
.report-google-map-container > div {
2018-10-25 15:31:38 +00:00
width: calc(100% - 50% - 120px) !important;
2018-10-24 22:09:23 +00:00
}
2018-10-26 15:04:44 +00:00
}
#disqus_thread {
2018-10-27 21:24:42 +00:00
width: 89% !important;
margin: 0 auto;
2018-10-27 20:08:53 +00:00
}
2018-10-27 20:59:36 +00:00
.sighting-list {
2018-10-27 21:24:42 +00:00
height: calc(50vh - 64px);
2018-10-27 20:59:36 +00:00
overflow-y: scroll;
}
2018-10-27 21:24:42 +00:00
@media (min-width: 960px) {
.sighting-list {
height: calc(100vh - 64px);
overflow-y: scroll;
}
}
2018-10-27 20:59:36 +00:00
.sighting-details-content {
2018-10-27 21:24:42 +00:00
width: 89%;
margin: 330px auto 0 auto;
2018-10-27 20:08:53 +00:00
}
.sighting-detail-google-map-container > div {
2018-10-27 21:14:16 +00:00
width: 100% !important;
2018-10-27 21:24:42 +00:00
height: 300px !important;
2018-10-27 21:14:16 +00:00
}
@media (min-width: 960px) {
.sighting-detail-google-map-container > div {
width: calc(100% - 50% - 120px) !important;
2018-10-27 21:24:42 +00:00
height: 300px !important;
2018-10-27 21:14:16 +00:00
}
2018-09-19 20:42:56 +00:00
}