Index: wp-content/themes/twentythirteen/style.css
===================================================================
--- wp-content/themes/twentythirteen/style.css	(revision 24171)
+++ wp-content/themes/twentythirteen/style.css	(working copy)
@@ -1659,25 +1659,28 @@
 }
 
 .format-quote .entry-content {
-	color: #f7f5e7;
+	position: relative;
 	font-size: 28px;
 	font-style: italic;
 	font-weight: 300;
 	margin: 0 auto;
 }
 
+.format-quote .entry-content,
+.format-quote .entry-meta {
+	color: #f7f5e7;
+}
+
 .format-quote .entry-content blockquote {
 	margin: 0;
 }
 
-.format-quote .entry-content p {
-	line-height: 1.3;
-}
-
 .format-quote .entry-content a,
-.format-quote .entry-meta a {
+.format-quote .entry-meta a,
+.format-quote .linked {
 	color: #e63f2a;
 }
+
 .format-quote .entry-content cite a {
 	border-bottom: 1px dotted #fff;
 	color: #fff;
@@ -1694,6 +1697,21 @@
 	font-size: 16px;
 }
 
+.format-quote .quote {
+	padding-left: 75px;
+}
+
+.format-quote .quote:before {
+	content: '\201C';
+	font-size: 140px;
+	font-weight: 400;
+	line-height: .8;
+	padding-right: 25px;
+	position: absolute;
+	top: -3px;
+	left: -15px;
+}
+
 .format-quote .entry-meta .author {
 	display: none;
 }
Index: wp-content/themes/twentythirteen/js/functions.js
===================================================================
--- wp-content/themes/twentythirteen/js/functions.js	(revision 24171)
+++ wp-content/themes/twentythirteen/js/functions.js	(working copy)
@@ -8,6 +8,7 @@
 	var html               = $( 'html' ),
 	    body               = $( 'body' ),
 	    _window            = $( window ),
+	    captions           = $( '.quote-caption' ),
 	    adjustFooter,
 
 	/**
@@ -70,6 +71,12 @@
 		}
 	} );
 
+	/** Better styles for Quote post formats with a linked source.
+	 *
+	 */
+	if ( captions )
+		captions.has( 'a' ).addClass( 'linked' );
+
 	/**
 	 * Arranges footer widgets vertically.
 	 */
Index: wp-content/themes/twentythirteen/rtl.css
===================================================================
--- wp-content/themes/twentythirteen/rtl.css	(revision 24171)
+++ wp-content/themes/twentythirteen/rtl.css	(working copy)
@@ -435,7 +435,20 @@
 	content: "\f105";
 }
 
+.format-quote .quote {
+	padding-left: 0;
+	padding-right: 75px;
+}
 
+.format-quote .quote:before {
+	content: '\201D';
+	padding-right: 0;
+	padding-left: 25px;
+	left: auto;
+	right: -15px;
+}
+
+
 /**
  * 5.6 Attachments
  * ----------------------------------------------------------------------------
