commit 538e2d6358428de6b0ce86ff847dd706c82acd02 parent 15ada1ae6937bb22f8d59813c0cac2ec4785b63f Author: Antoine Amarilli <a3nm@a3nm.net> Date: Wed, 9 May 2018 21:10:44 +0200 compress tables on small displays Diffstat:
style.css | | | 7 | +++++++ |
1 file changed, 7 insertions(+), 0 deletions(-)
diff --git a/style.css b/style.css @@ -100,3 +100,10 @@ pre a.i:hover, pre a.d:hover { text-decoration: none; } + +@media screen and (max-width: 600px) { + table th.nth-child(n+3), table td.nth-child(n+3) { + display: none; + } +} +