<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.funkystation.org/index.php?action=history&amp;feed=atom&amp;title=Template%3ACallout%2Fstyles.css</id>
	<title>Template:Callout/styles.css - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.funkystation.org/index.php?action=history&amp;feed=atom&amp;title=Template%3ACallout%2Fstyles.css"/>
	<link rel="alternate" type="text/html" href="https://wiki.funkystation.org/index.php?title=Template:Callout/styles.css&amp;action=history"/>
	<updated>2026-06-05T01:17:29Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.42.3</generator>
	<entry>
		<id>https://wiki.funkystation.org/index.php?title=Template:Callout/styles.css&amp;diff=200&amp;oldid=prev</id>
		<title>imported&gt;Aliser: moved colors here</title>
		<link rel="alternate" type="text/html" href="https://wiki.funkystation.org/index.php?title=Template:Callout/styles.css&amp;diff=200&amp;oldid=prev"/>
		<updated>2024-09-01T11:25:45Z</updated>

		<summary type="html">&lt;p&gt;moved colors here&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;/* wrapper around the callout that manages its alignment. */&lt;br /&gt;
.callout-wrapper {&lt;br /&gt;
	display: flex;&lt;br /&gt;
	/* set by template */&lt;br /&gt;
    /*justify-content: XXX;*/&lt;br /&gt;
    margin-top: .5em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* actual callout */&lt;br /&gt;
.callout {&lt;br /&gt;
	box-sizing: border-box;&lt;br /&gt;
&lt;br /&gt;
	display: flex;&lt;br /&gt;
	flex-direction: row;&lt;br /&gt;
	gap: .5rem;&lt;br /&gt;
	&lt;br /&gt;
	min-width: 20rem;&lt;br /&gt;
	width: fit-content;&lt;br /&gt;
	/* set by template */&lt;br /&gt;
	/*min-width: XXX;*/&lt;br /&gt;
	padding: .5rem;&lt;br /&gt;
	&lt;br /&gt;
	background-color: var(--bg-color-light-x2);&lt;br /&gt;
	&lt;br /&gt;
	border: 1px solid;&lt;br /&gt;
	border-left: 10px solid;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.callout.callout-type-info { border-color: var(--action-color); }&lt;br /&gt;
.callout.callout-type-warning { border-color: yellow; }&lt;br /&gt;
.callout.callout-type-danger { border-color: var(--danger-color); }&lt;br /&gt;
.callout.callout-type-tip { border-color: var(--green-color); }&lt;br /&gt;
.callout.callout-type-example { border-color: #f92672; }&lt;br /&gt;
&lt;br /&gt;
/* added to callout when it&amp;#039;s should be a centered, page-wide banner */&lt;br /&gt;
.callout-banner {&lt;br /&gt;
	width: 80%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* wrapper for images */&lt;br /&gt;
.callout-images {&lt;br /&gt;
    display: flex;&lt;br /&gt;
    flex-direction: row;&lt;br /&gt;
    align-items: center;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* wrapper for images → image container */&lt;br /&gt;
.callout-images &amp;gt; * {&lt;br /&gt;
	display: inline-block;&lt;br /&gt;
	min-width: 64px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* contains header and content elements */&lt;br /&gt;
.callout-header-content-container {&lt;br /&gt;
	display: flex;&lt;br /&gt;
	flex-direction: column;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* header element */&lt;br /&gt;
.callout-header {&lt;br /&gt;
	font-weight: bold;&lt;br /&gt;
	font-size: large;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* wrapper around content element */&lt;br /&gt;
.callout-content-container {&lt;br /&gt;
	display: flex;&lt;br /&gt;
	align-items: center;&lt;br /&gt;
	&lt;br /&gt;
	height: 100%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* callout wrapper → a special class for creating same-width notices for stacking */&lt;br /&gt;
.callout-wrapper.stacked-notice {&lt;br /&gt;
	/* make the wrapper fit the callout element */&lt;br /&gt;
	width: fit-content;&lt;br /&gt;
	/* stacked notices go right */&lt;br /&gt;
	float: right;&lt;br /&gt;
	/* allow for stacking */&lt;br /&gt;
	clear: right;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* callout wrapper → a special class for creating same-width notices for stacking → callout element */&lt;br /&gt;
.callout-wrapper.stacked-notice &amp;gt; .callout {&lt;br /&gt;
	/* set to fixed width */&lt;br /&gt;
    width: 30rem;&lt;br /&gt;
    /* fit to the page on small resoltuions, preventing overflow */&lt;br /&gt;
    max-width: 100%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* when on tablet or smaller device, take up the whole width of the page. */&lt;br /&gt;
@media (max-width:801px) {&lt;br /&gt;
	/* actual callout */&lt;br /&gt;
	.callout {&lt;br /&gt;
		width: 100%;&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	/* callout wrapper → a special class for creating same-width notices for stacking */&lt;br /&gt;
    .callout-wrapper.stacked-notice {&lt;br /&gt;
    	/* fill the page width */&lt;br /&gt;
    	width: 100%;&lt;br /&gt;
		/* no more float */&lt;br /&gt;
		float: none;&lt;br /&gt;
		/* no more clear, since float is disabled */&lt;br /&gt;
		clear: none;&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	/* callout wrapper → a special class for creating same-width notices for stacking → callout element */&lt;br /&gt;
	.callout-wrapper.stacked-notice &amp;gt; .callout {&lt;br /&gt;
		/* fill the page width */&lt;br /&gt;
	    width: 100%;&lt;br /&gt;
	}&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>imported&gt;Aliser</name></author>
	</entry>
</feed>