From 301b256bf645b3596dae5c11a2dba4417471bc79 Mon Sep 17 00:00:00 2001 From: Zachary Vance Date: Tue, 16 Jun 2015 20:55:39 -0700 Subject: [PATCH] Copy some of cheatsheet styles over to main site --- index.css | 28 ++++++++++++++++++++++++---- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/index.css b/index.css index f6fbe8e..688cb7c 100644 --- a/index.css +++ b/index.css @@ -1,4 +1,7 @@ body { + column-width: 400px; + -webkit-column-width: 400px; + -moz-column-width: 400px; } .quote { @@ -6,10 +9,27 @@ body { text-align: center; } +body > .quote { + column-span: all; + -webkit-column-span: all; + -moz-column-span: all; + margin-bottom: 10px; +} + section { + width: 400px; display: inline-block; - vertical-align: top; - min-width: 30%; - max-width: 700px; - border: 1px; + border: 1px solid; + border-radius: 10px; + margin: 10px; + padding: 10px; +} +section > * { + -webkit-margin-before: 5px; + -webkit-margin-after: 5px; } + +section > h1 { + font-style: small-caps; +} + -- 2.47.3