Other responsive changes. Outfitting screen now works pretty well on phone-sized displays. Summary is currently just a horizontal-scrolling thing (because it's a table atm) but everything else scales down and collapses pretty nicely.

This commit is contained in:
Maverick
2015-06-04 20:40:43 +10:00
parent 6e9990831d
commit cc1018c62c
2 changed files with 30 additions and 10 deletions

View File

@@ -11,6 +11,14 @@
//font-size: 0.8em;
});
&>.list {
@media screen and (max-width: 1000px) {
width: 49%;
}
@media screen and (max-width: 600px) {
width: 100%;
}
}
}
#overview {
@@ -74,4 +82,16 @@
@media screen and (max-width: 640px) {
display: none;
}
}
#jumpRange {
width: 50%;
padding: 0 0.5em;
@media screen and (max-width: 1000px) {
float: right;
clear: both;
display: block;
width: 100% !important;
}
}