Template:Resize: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
m (rephrasing)
(moved documentation to /doc)
Line 1: Line 1:
{{#if:{{{2|}}}
{{#if:{{{2|}}}
| <span style="font-size:{{{1|}}};">{{{2|}}}</span>
|<!--then:--><span style="font-size:{{{1|}}};">{{{2|}}}</span>
| <span style="font-size:90%;">{{{1|}}}</span>
|<!--else:--><span style="font-size:90%;">{{{1|}}}</span>
}}<noinclude>
}}<noinclude>
Template to aid switching the font-size used for a text string.
; Syntax
<code><nowiki>{{resize</nowiki>|''N''|''text''}}</code>&nbsp; or &nbsp;<code><nowiki>{{resize</nowiki>|''text''}}</code><br>
''N'' specifies a size, such as "90%", "1.2em", etc. For the default case (the second above), ''N'' is set to "90%".
; Examples
{| style="background:transparent;"
| <code><nowiki>{{resize|1.2em|This text is 0.2em larger than normal}}</nowiki></code>&nbsp;&nbsp;&nbsp;
| {{resize|1.2em|This text is 0.2em larger than normal}}
|-
| <code><nowiki>{{resize|80%|This text is 80% normal size}}</nowiki></code>
| {{resize|80%|This text is 80% normal size}}
|-
| <code><nowiki>{{resize|This text defaults to 90% normal size}}</nowiki></code>
| {{resize|This text defaults to 90% normal size}}
|}


{{{{FULLPAGENAME}}/doc}}
<!--NB Add metadata to the /doc page linked above, not here; thanks!-->
</noinclude>
</noinclude>

Revision as of 13:15, 31 December 2006


Template to aid switching the font-size used for a text string.

Syntax

{{resize|N|text}}  or  {{resize|text}}
N specifies a size, such as "90%", "1.2em", etc. For the default case (the second above), N is set to "90%".
If the text happens to contain an equality sign "=", specify {{resize|N|2=text}} or {{resize|1=text}}.

Examples

{{resize|1.2em|This text is 0.2em larger than normal}}    This text is 0.2em larger than normal
{{resize|80%|This text is 80% normal size}} This text is 80% normal size
{{resize|This text defaults to 90% normal size}} This text defaults to 90% normal size

Shortcuts

  • {{smaller|...}} instead of {{resize|50%|...}}.
  • {{small|...}} instead of {{resize|75%|...}}.
  • {{big|...}} instead of {{resize|120%|...}}.
  • {{large|...}}, equivalent to <span style="font-size:large;">...</span>.
  • {{larger|...}} or {{bigger|...}} instead of {{resize|150%|...}}.
  • {{huge|...}}, for really big text; instead of {{resize|180%|...}}. and also compensates for vertical alignment.