Browse Source

Better comments for media queries

pm2
Luke Childs 8 years ago
parent
commit
2bdb4944ed
  1. 8
      assets/style.css

8
assets/style.css

@ -223,17 +223,17 @@ footer {
background: #fff;
}
/* Responsive */
/* Hide country column on smaller screens */
/* Small desktop */
@media (min-width: 800px) and (max-width: 1000px) {
/* Hide country column */
th:nth-of-type(5),
td:nth-of-type(5) {
display: none;
}
}
/* Completely overwrite table layout for mobile */
/* Mobile */
@media (max-width: 800px) {
/* Get rid of browser table layout */

Loading…
Cancel
Save