Commit bc915d9f53b53a26bfb09539835468d844fb47d8

Lea Verou 2012-07-14T17:35:00

Stylistic changes

diff --git a/prism.css b/prism.css
index 347f957..5a138b2 100644
--- a/prism.css
+++ b/prism.css
@@ -5,7 +5,9 @@
  */
 
 .prism {
+	background: #f5f2f0;
 	color: black;
+	text-shadow: 0 1px white;
 	direction: ltr;
 	text-align: left;
 	white-space: pre;
@@ -15,6 +17,7 @@
 	-moz-tab-size: 4;
 	-o-tab-size: 4;
 	tab-size: 4;
+	
 	-webkit-hyphens: none;
 	-moz-hyphens: none;
 	-ms-hyphens: none;
@@ -23,9 +26,13 @@
 
 pre.prism {
 	padding: 1em;
-	overflow: auto;
-	background: #f5f2f0;
-	text-shadow: 0 1px white;
+	margin: .5em 0;
+	overflow: auto;	
+}
+
+code.prism {
+	padding: .1em;
+	border-radius: .3em;
 }
 
 .comment,