Last active
December 10, 2015 18:49
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* <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> */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* <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