<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.everycrt.com/index.php?action=history&amp;feed=atom&amp;title=Template%3AWarning%2Fstyles.css</id>
	<title>Template:Warning/styles.css - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.everycrt.com/index.php?action=history&amp;feed=atom&amp;title=Template%3AWarning%2Fstyles.css"/>
	<link rel="alternate" type="text/html" href="https://wiki.everycrt.com/index.php?title=Template:Warning/styles.css&amp;action=history"/>
	<updated>2026-08-02T05:02:44Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.6</generator>
	<entry>
		<id>https://wiki.everycrt.com/index.php?title=Template:Warning/styles.css&amp;diff=5984&amp;oldid=prev</id>
		<title>Arclight: Arclight changed the content model of the page Template:Warning/styles.css from &quot;wikitext&quot; to &quot;Sanitized CSS&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.everycrt.com/index.php?title=Template:Warning/styles.css&amp;diff=5984&amp;oldid=prev"/>
		<updated>2026-02-02T05:21:32Z</updated>

		<summary type="html">&lt;p&gt;Arclight changed the content model of the page &lt;a href=&quot;/wiki/Template:Warning/styles.css&quot; title=&quot;Template:Warning/styles.css&quot;&gt;Template:Warning/styles.css&lt;/a&gt; from &amp;quot;wikitext&amp;quot; to &amp;quot;Sanitized CSS&amp;quot;&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 05:21, 2 February 2026&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Arclight</name></author>
	</entry>
	<entry>
		<id>https://wiki.everycrt.com/index.php?title=Template:Warning/styles.css&amp;diff=5981&amp;oldid=prev</id>
		<title>Arclight-MCP-Bot: Create Warning template styles with yellow/amber warning colors (via create-page on MediaWiki MCP Server)</title>
		<link rel="alternate" type="text/html" href="https://wiki.everycrt.com/index.php?title=Template:Warning/styles.css&amp;diff=5981&amp;oldid=prev"/>
		<updated>2026-02-02T05:19:59Z</updated>

		<summary type="html">&lt;p&gt;Create Warning template styles with yellow/amber warning colors (via create-page on MediaWiki MCP Server)&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;/* Warning notice box - Tailwind-inspired styling */&lt;br /&gt;
.warning-notice {&lt;br /&gt;
    display: flex;&lt;br /&gt;
    align-items: flex-start;&lt;br /&gt;
    gap: 0.75rem;&lt;br /&gt;
    padding: 1rem;&lt;br /&gt;
    margin: 1rem 0;&lt;br /&gt;
    background-color: #fef3c7; /* amber-100 */&lt;br /&gt;
    border: 1px solid #f59e0b; /* amber-500 */&lt;br /&gt;
    border-left: 4px solid #d97706; /* amber-600 */&lt;br /&gt;
    border-radius: 0.375rem;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.warning-notice-icon {&lt;br /&gt;
    font-size: 1.25rem;&lt;br /&gt;
    line-height: 1;&lt;br /&gt;
    flex-shrink: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.warning-notice-content {&lt;br /&gt;
    font-size: 0.9375rem;&lt;br /&gt;
    line-height: 1.5;&lt;br /&gt;
    color: #92400e; /* amber-800 */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.warning-notice-content strong {&lt;br /&gt;
    color: #78350f; /* amber-900 */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Dark mode support */&lt;br /&gt;
@media (prefers-color-scheme: dark) {&lt;br /&gt;
    .warning-notice {&lt;br /&gt;
        background-color: #451a03; /* amber-950 */&lt;br /&gt;
        border-color: #b45309; /* amber-700 */&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    .warning-notice-content {&lt;br /&gt;
        color: #fcd34d; /* amber-300 */&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    .warning-notice-content strong {&lt;br /&gt;
        color: #fde68a; /* amber-200 */&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Site dark mode class support */&lt;br /&gt;
.dark-mode .warning-notice,&lt;br /&gt;
.night-mode .warning-notice {&lt;br /&gt;
    background-color: #451a03;&lt;br /&gt;
    border-color: #b45309;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.dark-mode .warning-notice-content,&lt;br /&gt;
.night-mode .warning-notice-content {&lt;br /&gt;
    color: #fcd34d;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.dark-mode .warning-notice-content strong,&lt;br /&gt;
.night-mode .warning-notice-content strong {&lt;br /&gt;
    color: #fde68a;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Arclight-MCP-Bot</name></author>
	</entry>
</feed>