From 494a5b24da1c13e301b64c974e62eafa9ee3afcb Mon Sep 17 00:00:00 2001 From: Dennis Hotson Date: Fri, 26 Oct 2012 14:50:48 +1100 Subject: [PATCH] Shaded style on examples --- index.html | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 1e4e086..5cae33e 100644 --- a/index.html +++ b/index.html @@ -45,12 +45,19 @@ .example { box-sizing: border-box; background: #EEEEEE; - box-shadow: 0 0 50px 0 rgba(0,0,0,0.2) inset; + box-shadow: 0 0 50px 0 rgba(0,0,0,0.1) inset; + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + border-radius: 10px; } pre { font-family: monospace; background: #EEEEEE; + box-shadow: 0 0 50px 0 rgba(0,0,0,0.1) inset; + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + border-radius: 10px; padding: 15px; } .Function { font-weight: bold; }