<?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%3AStub%2Fstyles.css</id>
	<title>Template:Stub/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%3AStub%2Fstyles.css"/>
	<link rel="alternate" type="text/html" href="https://wiki.everycrt.com/index.php?title=Template:Stub/styles.css&amp;action=history"/>
	<updated>2026-08-02T01:05:24Z</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:Stub/styles.css&amp;diff=5747&amp;oldid=prev</id>
		<title>Arclight-MCP-Bot: Creating stub template styles with light/dark mode support (via create-page on MediaWiki MCP Server)</title>
		<link rel="alternate" type="text/html" href="https://wiki.everycrt.com/index.php?title=Template:Stub/styles.css&amp;diff=5747&amp;oldid=prev"/>
		<updated>2026-01-29T18:38:31Z</updated>

		<summary type="html">&lt;p&gt;Creating stub template styles with light/dark mode support (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;/* Stub notice - Tailwind-inspired styles with light/dark mode */&lt;br /&gt;
&lt;br /&gt;
.stub-notice {&lt;br /&gt;
    display: flex;&lt;br /&gt;
    align-items: center;&lt;br /&gt;
    gap: 12px;&lt;br /&gt;
    padding: 12px 16px;&lt;br /&gt;
    margin: 16px 0;&lt;br /&gt;
    border-radius: 8px;&lt;br /&gt;
    border-left: 4px solid #f59e0b;&lt;br /&gt;
    background: linear-gradient(to right, #fffbeb, #fef3c7);&lt;br /&gt;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);&lt;br /&gt;
    font-size: 14px;&lt;br /&gt;
    line-height: 1.5;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.stub-notice-icon {&lt;br /&gt;
    flex-shrink: 0;&lt;br /&gt;
    width: 24px;&lt;br /&gt;
    height: 24px;&lt;br /&gt;
    display: flex;&lt;br /&gt;
    align-items: center;&lt;br /&gt;
    justify-content: center;&lt;br /&gt;
    background-color: #fef3c7;&lt;br /&gt;
    border-radius: 50%;&lt;br /&gt;
    font-size: 14px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.stub-notice-content {&lt;br /&gt;
    flex: 1;&lt;br /&gt;
    color: #92400e;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.stub-notice-content strong {&lt;br /&gt;
    color: #78350f;&lt;br /&gt;
    font-weight: 600;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.stub-notice-content a {&lt;br /&gt;
    color: #b45309;&lt;br /&gt;
    text-decoration: underline;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.stub-notice-content a:hover {&lt;br /&gt;
    color: #92400e;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* ===== DARK MODE - User preference ===== */&lt;br /&gt;
&lt;br /&gt;
html.skin-theme-clientpref-night .stub-notice {&lt;br /&gt;
    background: linear-gradient(to right, #422006, #451a03);&lt;br /&gt;
    border-left-color: #f59e0b;&lt;br /&gt;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
html.skin-theme-clientpref-night .stub-notice-icon {&lt;br /&gt;
    background-color: #78350f;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
html.skin-theme-clientpref-night .stub-notice-content {&lt;br /&gt;
    color: #fcd34d;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
html.skin-theme-clientpref-night .stub-notice-content strong {&lt;br /&gt;
    color: #fde68a;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
html.skin-theme-clientpref-night .stub-notice-content a {&lt;br /&gt;
    color: #fbbf24;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
html.skin-theme-clientpref-night .stub-notice-content a:hover {&lt;br /&gt;
    color: #fcd34d;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* ===== DARK MODE - OS preference ===== */&lt;br /&gt;
&lt;br /&gt;
@media (prefers-color-scheme: dark) {&lt;br /&gt;
    html.skin-theme-clientpref-os .stub-notice {&lt;br /&gt;
        background: linear-gradient(to right, #422006, #451a03);&lt;br /&gt;
        border-left-color: #f59e0b;&lt;br /&gt;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    html.skin-theme-clientpref-os .stub-notice-icon {&lt;br /&gt;
        background-color: #78350f;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    html.skin-theme-clientpref-os .stub-notice-content {&lt;br /&gt;
        color: #fcd34d;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    html.skin-theme-clientpref-os .stub-notice-content strong {&lt;br /&gt;
        color: #fde68a;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    html.skin-theme-clientpref-os .stub-notice-content a {&lt;br /&gt;
        color: #fbbf24;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    html.skin-theme-clientpref-os .stub-notice-content a:hover {&lt;br /&gt;
        color: #fcd34d;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Arclight-MCP-Bot</name></author>
	</entry>
</feed>