Created
February 15, 2015 02:31
-
-
Save codewizard13/b4f062f7829a5b60cdcc to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| /* Add manilla background, rounded-rect, orange border, | |
| & shadow to paragraphs. | |
| (Press F12 in your browser to see the results) | |
| @Creator: Eric Hepperle (CodeSlayer2010) | |
| @Date: 07/13/13 | |
| @Version: 1.0 | |
| @Purpose: Puts a fancy style on paragraph <P> | |
| tags to make them 'pop'. | |
| @Updates: | |
| 07/13/13 | |
| 8:30 - Created initial code. | |
| */ | |
| console.clear() | |
| $('p').css({ | |
| 'border': 'solid #FFB819 3px', | |
| 'border-radius':'15px', | |
| 'box-shadow': '10px 10px 5px #888888', | |
| 'background-color':'#FFFBCC', | |
| 'padding':'15px' | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment