From 89fed4e8a4f5e0d5fabef3ab61fc7839e40c92e1 Mon Sep 17 00:00:00 2001 From: Mateja Date: Sat, 19 Sep 2020 15:24:13 +0200 Subject: add media queries --- cgit.css | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/cgit.css b/cgit.css index d4aadbf..b02c516 100644 --- a/cgit.css +++ b/cgit.css @@ -893,3 +893,52 @@ div#cgit table.ssdiff td.space { div#cgit table.ssdiff td.space div { min-height: 3em; } + +@media only screen and (max-width: 800px) { + /* HEADER */ + /* remove logo (save space) */ + div#cgit table#header td.logo { + display: none; + } + /* wrap title text */ + div#cgit table#header td.main { + white-space: normal; + } + /* td as block */ + div#cgit table#header td { + display: block; + } + /* move branch switcher to left */ + div#cgit table#header td.form { + text-align: left; + } + /* Don't display author (save space) */ + div#cgit table#header td.sub.right { + display: none; + } + + /* TABS */ + /* both tabs and form are blocks */ + div#cgit table.tabs td { + display: block; + } + /* every tab is block */ + div#cgit table.tabs td a { + display: block; + text-align: right; + } + + /* CONTENT */ + div#cgit div.content { + overflow-x: auto; + padding: 0.5em; + } + td.ls-mode { + white-space: nowrap; + } + + /* PANEL ALIGNMENT */ + div#cgit div.cgit-panel { + float: left; + } +} -- cgit v1.2.3