From 4fde7715e9c5441e7e9c10a46bafad5d1bbd7152 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 17 Jul 2017 21:50:33 +0200 Subject: Updated website to render snippets more intelligently on reasonably sized browser windows. --- website/resources/css/custom.css | 21 +++++++++++++++++++++ website/templates/features/_features.html | 4 ++-- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/website/resources/css/custom.css b/website/resources/css/custom.css index ba4f56e8..ff31de04 100644 --- a/website/resources/css/custom.css +++ b/website/resources/css/custom.css @@ -133,6 +133,27 @@ h1, h2, h3 { margin: 8px 16px 8px 16px; } +.snippet-col { + position: relative; + min-height: 1px; + padding-left: 15px; + padding-right: 15px; +} + +@media (min-width: 769px) { + .snippet-col { + margin-left: -60px; + margin-right: -60px; + } +} + +@media (min-width: 1000px) { + .snippet-col { + margin-left: -120px; + margin-right: -120px; + } +} + a { cursor: pointer; } diff --git a/website/templates/features/_features.html b/website/templates/features/_features.html index c0c63a76..2e338834 100644 --- a/website/templates/features/_features.html +++ b/website/templates/features/_features.html @@ -30,13 +30,13 @@ <#macro snippets name>
-
+

With Lombok

${usages.pre(name)?no_esc}
-
+

Vanilla Java

${usages.post(name)?no_esc}
-- cgit