Skip to content

Instantly share code, notes, and snippets.

@codewizard13
Created February 15, 2015 02:31
Show Gist options
  • Select an option

  • Save codewizard13/b4f062f7829a5b60cdcc to your computer and use it in GitHub Desktop.

Select an option

Save codewizard13/b4f062f7829a5b60cdcc to your computer and use it in GitHub Desktop.
/* 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