Template:Box-shadow/doc: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 13: Line 13:
* <tt>blur radius</tt> - Specifies how much blurring is added to the border in addition to the ofsets. Default is 4px.
* <tt>blur radius</tt> - Specifies how much blurring is added to the border in addition to the ofsets. Default is 4px.
* <tt>color</tt> - Specifies the color of the shadow. Default is <tt>#CCCCCC;</tt>.
* <tt>color</tt> - Specifies the color of the shadow. Default is <tt>#CCCCCC;</tt>.
=== Example ===
* <tt>&lt;div style="background-color: #FFFFDD; border: 1px solid #808000; padding: 5px; '''<nowiki>{{box-shadow|4px|4px|6px|#A0A0A0}}</nowiki>'''">Lorum ipsum...&lt;/div></tt> will produce:
<div style="background-color: #FFFFDD; border: 1px solid #808000; padding: 5px; {{box-shadow|4px|4px|6px|#A0A0A0}}">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</div>


=== See also ===
=== See also ===
Line 18: Line 24:
* {{tl|Border-radius}}
* {{tl|Border-radius}}
* {{tl|Gradient}}
* {{tl|Gradient}}
=== Example ===
* <tt><nowiki><div style="background-color: #FFFFDD; border: 1px solid #808000; padding: 5px; {{box-shadow|4px|4px|6px|#A0A0A0}}">Lorum ipsum...</div></nowiki></tt> will produce:
<div style="background-color: #FFFFDD; border: 1px solid #808000; padding: 5px; {{box-shadow|4px|4px|6px|#A0A0A0}}">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</div>


<includeonly>
<includeonly>

Revision as of 16:41, 29 September 2010


This template is a shortcut for producing shadows. It generates the CSS for various browsers. Supported browsers are the current versions of Opera, Safari, Firefox and Chrome.

Usage

Insert this template within a style tag of any element:

{{box-shadow | X-offset | Y-offset | blur radius | #color }}

  • X-offset and Y-offset - Specify the offset of the shadow to the right and below the element. Use negative values for a shadow to the left and above. Default is 4px.
  • blur radius - Specifies how much blurring is added to the border in addition to the ofsets. Default is 4px.
  • color - Specifies the color of the shadow. Default is #CCCCCC;.

Example

  • <div style="background-color: #FFFFDD; border: 1px solid #808000; padding: 5px; {{box-shadow|4px|4px|6px|#A0A0A0}}">Lorum ipsum...</div> will produce:
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

See also