diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2017-09-25 23:09:32 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2017-10-26 00:09:15 +0200 |
commit | d4740cb18ce6d844f0c03fa5df06feac42cdfa41 (patch) | |
tree | 1289c781ebdd0e5c7945270296d7ccbcb3827696 /website/resources | |
parent | ac8c72bcdbef1d139f60fc4297da6ec83153b3ba (diff) | |
download | lombok-d4740cb18ce6d844f0c03fa5df06feac42cdfa41.tar.gz lombok-d4740cb18ce6d844f0c03fa5df06feac42cdfa41.tar.bz2 lombok-d4740cb18ce6d844f0c03fa5df06feac42cdfa41.zip |
Added an individual ‘setup’ page; hamburger menu now goes to it.
Diffstat (limited to 'website/resources')
-rw-r--r-- | website/resources/css/custom.css | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/website/resources/css/custom.css b/website/resources/css/custom.css index 3c8e0399..795b155c 100644 --- a/website/resources/css/custom.css +++ b/website/resources/css/custom.css @@ -209,7 +209,7 @@ a { text-align: left; } -@media (max-width: 768px) { +@media (max-width: 767px) { .fork-me { display: none; } @@ -235,9 +235,31 @@ a { width: 100%; height: auto; } + + .smallOnly { + display: block !important; + } + + .wideOnly { + display: none !important; + } +} + +@media (min-width: 768px) { + .smallOnly { + display: none !important; + } + + .wideOnly { + display: block !important; + } } img { max-width: 100%; height: auto; } + +h3.listHeader { + text-align: left; +} |