Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <h1 class="heading">12 - CSS3 Blockquote Effects Demo</h1>
<blockquote class="default">
  <h1><span class="Cdefault">DEFAULT</span> - Blockquote Color Palette</h1>  
  <p>Use this class for blockquote layout.</p>
<code>
  &lt;blockquote class="<span class="Cdefault">default</span>"&gt;
       Some Text...
   &lt;/blockquote&gt;
</code>
</blockquote>

<blockquote class="grapefruit">
  <h1><span class="Cgrapefruit">GRAPEFRUIT</span> - Blockquote Color Palette</h1>  
  <p>Use this class for blockquote layout.</p>
<code>
  &lt;blockquote class="<span class="Cgrapefruit">grapefruit</span>"&gt;
       Some Text...
   &lt;/blockquote&gt;
</code>
</blockquote>


<blockquote class="bittersweet">
  <h1><span class="Cbittersweet">BITTERSWEET</span> - Blockquote Color Palette</h1>  
  <p>Use this class for blockquote layout.</p>
<code>
  &lt;blockquote class="<span class="Cbittersweet">bittersweet</span>"&gt;
       Some Text...
   &lt;/blockquote&gt;
</code>
</blockquote>

<blockquote class="sunflower">
  <h1><span class="Csunflower">SUNFLOWER</span> - Blockquote Color Palette</h1>  
  <p>Use this class for blockquote layout.</p>
<code>
  &lt;blockquote class="<span class="Csunflower">sunflower</span>"&gt;
       Some Text...
   &lt;/blockquote&gt;
</code>
</blockquote>

<blockquote class="grass">
  <h1><span class="Cgrass">GRASS</span> - Blockquote Color Palette</h1>  
  <p>Use this class for blockquote layout.</p>
<code>
  &lt;blockquote class="<span class="Cgrass">grass</span>"&gt;
       Some Text...
   &lt;/blockquote&gt;
</code>
</blockquote>

<blockquote class="mint">
  <h1><span class="Cmint">MINT</span> - Blockquote Color Palette</h1>  
  <p>Use this class for blockquote layout.</p>
<code>
  &lt;blockquote class="<span class="Cmint">mint</span>"&gt;
       Some Text...
   &lt;/blockquote&gt;
</code>
</blockquote>

<blockquote class="aqua">
  <h1><span class="Caqua">AQUA</span> - Blockquote Color Palette</h1>  
  <p>Use this class for blockquote layout.</p>
<code>
  &lt;blockquote class="<span class="Caqua">aqua</span>"&gt;
       Some Text...
   &lt;/blockquote&gt;
</code>
</blockquote>

<blockquote class="bluejeans">
  <h1><span class="Cbluejeans">BLUEJEANS</span> - Blockquote Color Palette</h1>  
  <p>Use this class for blockquote layout.</p>
<code>
  &lt;blockquote class="<span class="Cbluejeans">bluejeans</span>"&gt;
       Some Text...
   &lt;/blockquote&gt;
</code>
</blockquote>

<blockquote class="lavander">
  <h1><span class="Clavander">LAVANDER</span> - Blockquote Color Palette</h1>  
  <p>Use this class for blockquote layout.</p>
<code>
  &lt;blockquote class="<span class="Clavander">lavander</span>"&gt;
       Some Text...
   &lt;/blockquote&gt;
</code>
</blockquote>

<blockquote class="pinkrose">
  <h1><span class="Cpinkrose">PINKROSE</span> - Blockquote Color Palette</h1>  
  <p>Use this class for blockquote layout.</p>
<code>
  &lt;blockquote class="<span class="Cpinkrose">pinkrose</span>"&gt;
       Some Text...
   &lt;/blockquote&gt;
</code>
</blockquote>

<blockquote class="light">
  <h1><span class="Clight">LIGHT</span> - Blockquote Color Palette</h1>  
  <p>Use this class for blockquote layout.</p>
<code>
  &lt;blockquote class="<span class="Clight">light</span>"&gt;
       Some Text...
   &lt;/blockquote&gt;
</code>
</blockquote>

<blockquote class="gray">
  <h1><span class="Cgray">GRAY</span> - Blockquote Color Palette</h1>  
  <p>Use this class for blockquote layout.</p>
<code>
  &lt;blockquote class="<span class="Cgray">gray</span>"&gt;
       Some Text...
   &lt;/blockquote&gt;
</code>
</blockquote>

 
              
            
!

CSS

              
                /* 
// 12 - CSS3 Blockquote Effects Demo
// Made with ❤ by @Pawan_Mall
// http://www.pawanmall.net 
*/

@import url('https://fonts.googleapis.com/css?family=Montez');
@import url(https://fonts.googleapis.com/css?family=Francois+One);

body{
  background: #f5f7fa;
  margin:10px;
  padding:10px;  
}

blockquote{
  display:block;
  background: #fff;
  padding: 15px 20px 15px 45px;
  margin: 0 0 20px;
  position: relative;
  
  /*Font*/
  font-family: Georgia, serif;
  font-size: 14px;
  line-height: 1.2;
  color: #666;

  /*Box Shadow - (Optional)*/
  -moz-box-shadow: 2px 2px 15px #ccc;
  -webkit-box-shadow: 2px 2px 15px #ccc;
  box-shadow: 2px 2px 15px #ccc;

  /*Borders - (Optional)*/
  border-left-style: solid;
  border-left-width: 15px;
  border-right-style: solid;
  border-right-width: 2px;    
}

blockquote::before{
  content: "\201C"; /*Unicode for Left Double Quote*/
  
  /*Font*/
  font-family: Georgia, serif;
  font-size: 60px;
  font-weight: bold;
  color: #999;
  
  /*Positioning*/
  position: absolute;
  left: 10px;
  top:5px;
  
}

blockquote::after{
  /*Reset to make sure*/
  content: "";
}

blockquote a{
  text-decoration: none;
  background: #eee;
  cursor: pointer;
  padding: 0 3px;
  color: #c76c0c;
}

blockquote a:hover{
 color: #666;
}

blockquote em{
  font-style: italic;
}

  /*Default Color Palette*/
blockquote.default{ 
  border-left-color: #656d77;
  border-right-color: #434a53;  
}

/*Grapefruit Color Palette*/
blockquote.grapefruit{
  border-left-color: #ed5565;
  border-right-color: #da4453;
}

/*Bittersweet Color Palette*/
blockquote.bittersweet{
  border-left-color: #fc6d58;
  border-right-color: #e95546;
}

/*Sunflower Color Palette*/
blockquote.sunflower{
  border-left-color: #ffcd69;
  border-right-color: #f6ba59;
}

/*Grass Color Palette*/
blockquote.grass{
  border-left-color: #9fd477;
  border-right-color: #8bc163;
}

/*Mint Color Palette*/
blockquote.mint{
  border-left-color: #46cfb0;
  border-right-color: #34bc9d;
}

/*Aqua Color Palette*/
blockquote.aqua{
  border-left-color: #4fc2e5;
  border-right-color: #3bb0d6;
}

/*Blue Jeans Color Palette*/
blockquote.bluejeans{
  border-left-color: #5e9de6;
  border-right-color: #4b8ad6;
}

/*Lavander Color Palette*/
blockquote.lavander{
  border-left-color: #ad93e6;
  border-right-color: #977bd5;
}

/*Pinkrose Color Palette*/
blockquote.pinkrose{
  border-left-color: #ed87bd;
  border-right-color: #d870a9;
}

/*Light Color Palette*/
blockquote.light{
  border-left-color: #f5f7fa;
  border-right-color: #e6e9ed;
}

/*Gray Color Palette*/
blockquote.gray{
  border-left-color: #ccd1d8;
  border-right-color: #aab2bc;
}


/* These CSS classes used just for Demo purpose */
.heading{
   font-family:Montez;
   text-align:center;
   font-size:30px;
}
code{
  color:#da4453;
}
span{
  font-weight:bolder;
  
}
h1{
  text-align:left;
  font-size:16px;
  font-family: 'Francois One', sans-serif;
}

span.Cdefault{
  color:#434a53;
}
span.Cgrapefruit{
  color:#da4453;
}
span.Cbittersweet{
  color:#e95546;
}
span.Csunflower{
  color:#f6ba59;
}
span.Cgrass{
  color:#8bc163;
}
span.Cmint{
  color:#34bc9d;
}
span.Caqua{
  color:#3bb0d6;
}
span.Cbluejeans{
  color:#4b8ad6;
}
span.Clavander{
  color:#977bd5;
}
span.Cpinkrose{
  color:#d870a9;
}
span.Clight{
  color:#e6e9ed;
}
span.Cgray{
  color:#aab2bc;
}



              
            
!

JS

              
                
              
            
!
999px

Console