Template:MP box: Difference between revisions

From Portals of Phereon Wiki
Content added Content deleted
No edit summary
(Clearfix stuff)
 
(14 intermediate revisions by the same user not shown)
Line 1: Line 1:
<div class="fp-box" {{#if:{{{id|}}}|id="{{{id}}}"}}>
<includeonly><div class="mp-box" {{#if:{{{id|}}}|id="{{{id}}}"}} {{#if:{{{style|}}}|style="{{{style}}}"}}>
{{#if:{{{heading|test}}}|<div class="fp-heading"><h2>{{{heading|test}}}</h2></div>}}
{{#if:{{{heading|}}}|<div class="mp-heading">{{{heading}}}</div>}}
<div class="fp-content"><span>{{{content|{{lorem ipsum}}}}}</span></div>
<div class="mp-content clearfix cf-fix">{{{content|}}}</div>
{{#if:{{{footer|test}}}|<div class="fp-footer"><span>{{{footer|test}}}</span></div>}}
<!--{{#if:{{{footer|}}}|<div class="mp-footer">{{{footer}}}</div>}}-->
</div>
</div></includeonly><!--
--><noinclude>
<!--
{{doc}}
.fp-box {
</noinclude>
--fp-border: var(--tertiary-lightish);
display: flex;
flex-flow: row wrap;
border: 1px solid var(--fp-border);
background: var(--secondary-lighter);
box-shadow: 0 0.25rem 0.35rem -0.25rem var(--fp-border);
max-width: 60%;
}

.fp-box > * {
width: 100%;
padding: 0.5em 2em;
}

.fp-box > *:first-child {
padding-top: 1.5rem;
}

.fp-box > *:last-child {
padding-bottom: 1rem;
}

.fp-box h2 {
font-size: 1.4em;
font-weight: bold;
border: none;
margin: 0 0 0em;
}

.fp-footer.fp-footer {
background: var(--secondary-desaturatedish);
transition: 0.3s ease-out;
align-self: flex-end;
padding: 0;
border-top: 1px solid var(--fp-border);
width: 100%;
}

.fp-footer:hover {
background: rgba(0, 0, 0, 0.1);
}

.fp-footer > * {
color: var(--gray-darker);
font-weight: bold;
text-align: right;
display: block;
padding: 0.75em 1.5em 0.8em;
text-decoration: none;
transition: 0.3s ease-out;
}

#mw-site-navigation .sidebar-inner h3,
#mw-related-navigation .sidebar-inner h3,
#mw-site-navigation .dropdown h3,
#mw-related-navigation .dropdown h3 {
border-color: var(--gray-lightish);
}-->

Latest revision as of 01:42, 12 September 2020

[view | edit | purge]Documentation

Usage[]

Using this:

{{MP box
|id         = mybox1
|heading    = Title
|content    = Content stuff here
}}

Gets you this:

Title
Content stuff here

Template data[]

A box designed for the main page

Template parameters[Edit template data]

This template prefers block formatting of parameters.

ParameterDescriptionTypeStatus
idid

A unique ID for this box, to be referenced in CSS or JS

Example
custom-box-1
Stringoptional
Headingheading

What shows up in the heading section

Example
Title
Stringsuggested
Contentcontent

Content goes here

Contentsuggested
Stylestyle

Set wrapper css style

Unknownoptional
[view | edit | purge]The above documentation is transcluded fromTemplate:MP box/doc.