Skip to content

Instantly share code, notes, and snippets.

@mrcave
Last active December 10, 2015 18:49
Show Gist options
  • Save mrcave/4477336 to your computer and use it in GitHub Desktop.
Save mrcave/4477336 to your computer and use it in GitHub Desktop.
Applying custom CSS styles via the WYSIWYG editor http://lightignite.com/applying-custom-css-styles-via-the-wysiwyg-editor
/* <textEditor> */
img.bordered{
background:#fff;
padding:3px;
margin:10px 20px;
-moz-box-shadow: 0px 0px 8px rgba(0,0,0,0.3);
-webkit-box-shadow: 0px 0px 8px rgba(0,0,0,0.3);
box-shadow: 0px 0px 8px rgba(0,0,0,0.3);
}
p.intro{
font-size:150%;
font-weight:bold;
color:#000;
}
/* </textEditor> */
/* <textEditor> */
.importantText{
font-weight:bold;
text-decoration:underline;
color:#880000;
}
/* </textEditor> */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment