Files
satshkd-vercel/public/static/mobile.css

194 lines
3.4 KiB
CSS

/* Mobile-Responsive Styles for SatsEUR */
/* Base responsive improvements */
* {
box-sizing: border-box;
}
body {
padding: 0 10px;
}
/* Container adjustments for mobile */
.container {
padding-left: 15px;
padding-right: 15px;
max-width: 100%;
}
/* Responsive typography */
h3 {
font-size: clamp(1.2rem, 5vw, 2rem);
line-height: 1.3;
word-wrap: break-word;
padding: 0 10px;
}
#current {
display: inline-block;
word-break: break-word;
}
/* Table responsive design */
table.u-full-width {
width: 100%;
margin-top: 20px;
font-size: 1rem;
}
table.u-full-width thead th {
font-size: 1.2rem;
padding: 10px 5px;
white-space: nowrap;
}
table.u-full-width tbody td {
padding: 12px 5px;
font-size: 1rem;
}
/* Mobile-specific styles */
@media screen and (max-width: 768px) {
body {
margin-top: 40px;
padding: 0 5px;
}
.container {
margin-top: 10px !important;
padding-left: 10px;
padding-right: 10px;
}
/* Responsive heading */
h3 {
font-size: clamp(1rem, 4.5vw, 1.5rem);
margin-bottom: 15px;
padding: 0 5px;
}
/* Table optimization for mobile */
table.u-full-width {
font-size: 0.9rem;
}
table.u-full-width thead th {
font-size: 1rem;
padding: 8px 3px;
}
table.u-full-width tbody td {
padding: 10px 3px;
font-size: 0.9rem;
}
/* Chart container */
#historical {
margin: 15px 0;
padding: 0;
}
/* Dark mode toggle - better positioning for mobile */
.floating-button {
bottom: 15px;
left: 15px;
z-index: 1000;
}
.dark-toggle-icon {
width: 18px;
height: 18px;
padding: 8px;
}
}
/* Small mobile devices */
@media screen and (max-width: 480px) {
body {
margin-top: 20px;
}
.container {
margin-top: 5px !important;
padding-left: 5px;
padding-right: 5px;
}
h3 {
font-size: clamp(0.9rem, 4vw, 1.3rem);
margin-bottom: 10px;
}
/* Make table more compact on very small screens */
table.u-full-width {
font-size: 0.85rem;
}
table.u-full-width thead th {
font-size: 0.95rem;
padding: 6px 2px;
}
table.u-full-width tbody td {
padding: 8px 2px;
font-size: 1.2rem;
}
/* Smaller dark toggle for small screens */
.floating-button {
bottom: 10px;
left: 10px;
}
.dark-toggle-icon {
width: 16px;
height: 16px;
padding: 7px;
}
}
/* Landscape orientation on mobile */
@media screen and (max-width: 896px) and (orientation: landscape) {
body {
margin-top: 20px;
}
.container {
margin-top: 5px !important;
}
h3 {
font-size: 1.2rem;
margin-bottom: 10px;
}
#historical {
margin: 10px 0;
}
}
/* Ensure chart is responsive */
#historical canvas {
max-width: 100%;
height: auto !important;
}
/* Fix text alignment for better cross-browser support */
th[style*="-webkit-left"],
td[style*="-webkit-left"] {
text-align: left !important;
}
th[style*="text-align:end"],
td[style*="text-align:end"] {
text-align: right !important;
}
/* Improve touch targets for mobile */
@media (hover: none) and (pointer: coarse) {
a, button, .floating-button {
min-height: 44px;
min-width: 44px;
}
}