<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://journeywiki.wolf109909.top/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Wolf109909</id>
	<title>Journey Modding Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://journeywiki.wolf109909.top/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Wolf109909"/>
	<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=Special:Contributions/Wolf109909"/>
	<updated>2026-06-06T03:40:57Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.37.2</generator>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=Remote_Lua_Debugging&amp;diff=225</id>
		<title>Remote Lua Debugging</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=Remote_Lua_Debugging&amp;diff=225"/>
		<updated>2022-07-27T14:53:44Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here is a brief example and explanation of how to remotely debug embedded Lua in Journey.&lt;br /&gt;
&lt;br /&gt;
1.Build from the latest sourcecode in https://github.com/wolf109909/Journey_Detour or directly download the prebuilt binaries from the link [https://wolfnas.ga:62001/s/BtMM63oBwLH3x7w here](please contact wolf109909#5291 on discord for password, we need to verify that you won&amp;#039;t do bad stuff with this xD)&lt;br /&gt;
&lt;br /&gt;
2.Put everything in the root folder of your Journey install folder, and inject the dll into journey process after you enter the Main menu of the game.(Might cause race condition and crash if you do it while the game is running heavy lua stuff)&lt;br /&gt;
&lt;br /&gt;
3.Install Vscode with the vscode-lrdb extension.&lt;br /&gt;
&lt;br /&gt;
4.Create a .vscode folder in the root directory of your Journey, and create a new file called launch.json&lt;br /&gt;
&lt;br /&gt;
5.In launch.json ,paste the following example:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
&lt;br /&gt;
    //Journey lrdb example&lt;br /&gt;
&lt;br /&gt;
    &amp;quot;version&amp;quot;: &amp;quot;0.2.0&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
    &amp;quot;configurations&amp;quot;: [&lt;br /&gt;
&lt;br /&gt;
        {&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;type&amp;quot;: &amp;quot;lrdb&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;request&amp;quot;: &amp;quot;attach&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;name&amp;quot;: &amp;quot;Attach to journey Lua&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;host&amp;quot;: &amp;quot;127.0.0.1&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;port&amp;quot;: 21110,&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;sourceRoot&amp;quot;: &amp;quot;${workspaceRoot}&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;stopOnEntry&amp;quot;: true&lt;br /&gt;
&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
    ]&lt;br /&gt;
&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=Remote_Lua_Debugging&amp;diff=224</id>
		<title>Remote Lua Debugging</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=Remote_Lua_Debugging&amp;diff=224"/>
		<updated>2022-07-27T14:53:32Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here is a brief example and explanation of how to remotely debug embedded Lua in Journey.&lt;br /&gt;
&lt;br /&gt;
1.Build from the latest sourcecode in https://github.com/wolf109909/Journey_Detour or directly download the prebuilt binaries from the link [https://wolfnas.ga:62001/s/BtMM63oBwLH3x7w here](please contact wolf109909#5291 on discord for password, we need to verify that you won&amp;#039;t do bad stuff with this xD)&lt;br /&gt;
&lt;br /&gt;
2.Put everything in the root folder of your Journey install folder, and inject the dll into journey process after you enter the Main menu of the game.(Might cause race condition and crash if you do it while the game is running heavy lua stuff)&lt;br /&gt;
&lt;br /&gt;
3.Install Vscode with the vscode-lrdb extension.&lt;br /&gt;
&lt;br /&gt;
4.Create a .vscode folder in the root directory of your Journey, and create a new file called launch.json&lt;br /&gt;
&lt;br /&gt;
5.In launch.json ,paste the following example:&lt;br /&gt;
```&lt;br /&gt;
{&lt;br /&gt;
&lt;br /&gt;
    //Journey lrdb example&lt;br /&gt;
&lt;br /&gt;
    &amp;quot;version&amp;quot;: &amp;quot;0.2.0&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
    &amp;quot;configurations&amp;quot;: [&lt;br /&gt;
&lt;br /&gt;
        {&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;type&amp;quot;: &amp;quot;lrdb&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;request&amp;quot;: &amp;quot;attach&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;name&amp;quot;: &amp;quot;Attach to journey Lua&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;host&amp;quot;: &amp;quot;127.0.0.1&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;port&amp;quot;: 21110,&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;sourceRoot&amp;quot;: &amp;quot;${workspaceRoot}&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;stopOnEntry&amp;quot;: true&lt;br /&gt;
&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
    ]&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
```&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=Remote_Lua_Debugging&amp;diff=223</id>
		<title>Remote Lua Debugging</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=Remote_Lua_Debugging&amp;diff=223"/>
		<updated>2022-07-27T14:53:19Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here is a brief example and explanation of how to remotely debug embedded Lua in Journey.&lt;br /&gt;
&lt;br /&gt;
1.Build from the latest sourcecode in https://github.com/wolf109909/Journey_Detour or directly download the prebuilt binaries from the link [https://wolfnas.ga:62001/s/BtMM63oBwLH3x7w here](please contact wolf109909#5291 on discord for password, we need to verify that you won&amp;#039;t do bad stuff with this xD)&lt;br /&gt;
&lt;br /&gt;
2.Put everything in the root folder of your Journey install folder, and inject the dll into journey process after you enter the Main menu of the game.(Might cause race condition and crash if you do it while the game is running heavy lua stuff)&lt;br /&gt;
&lt;br /&gt;
3.Install Vscode with the vscode-lrdb extension.&lt;br /&gt;
&lt;br /&gt;
4.Create a .vscode folder in the root directory of your Journey, and create a new file called launch.json&lt;br /&gt;
&lt;br /&gt;
5.In launch.json ,paste the following example:&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
&lt;br /&gt;
    //Journey lrdb example&lt;br /&gt;
&lt;br /&gt;
    &amp;quot;version&amp;quot;: &amp;quot;0.2.0&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
    &amp;quot;configurations&amp;quot;: [&lt;br /&gt;
&lt;br /&gt;
        {&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;type&amp;quot;: &amp;quot;lrdb&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;request&amp;quot;: &amp;quot;attach&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;name&amp;quot;: &amp;quot;Attach to journey Lua&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;host&amp;quot;: &amp;quot;127.0.0.1&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;port&amp;quot;: 21110,&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;sourceRoot&amp;quot;: &amp;quot;${workspaceRoot}&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;stopOnEntry&amp;quot;: true&lt;br /&gt;
&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
    ]&lt;br /&gt;
&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=Remote_Lua_Debugging&amp;diff=222</id>
		<title>Remote Lua Debugging</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=Remote_Lua_Debugging&amp;diff=222"/>
		<updated>2022-07-27T14:52:56Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: add debugger stuff&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here is a brief example and explanation of how to remotely debug embedded Lua in Journey.&lt;br /&gt;
&lt;br /&gt;
1.Build from the latest sourcecode in https://github.com/wolf109909/Journey_Detour or directly download the prebuilt binaries from the link [https://wolfnas.ga:62001/s/BtMM63oBwLH3x7w here](please contact wolf109909#5291 on discord for password, we need to verify that you won&amp;#039;t do bad stuff with this xD)&lt;br /&gt;
&lt;br /&gt;
2.Put everything in the root folder of your Journey install folder, and inject the dll into journey process after you enter the Main menu of the game.(Might cause race condition and crash if you do it while the game is running heavy lua stuff)&lt;br /&gt;
&lt;br /&gt;
3.Install Vscode with the vscode-lrdb extension.&lt;br /&gt;
&lt;br /&gt;
4.Create a .vscode folder in the root directory of your Journey, and create a new file called launch.json&lt;br /&gt;
&lt;br /&gt;
5.In launch.json ,paste the following example:&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;{&lt;br /&gt;
&lt;br /&gt;
    //Journey lrdb example&lt;br /&gt;
&lt;br /&gt;
    &amp;quot;version&amp;quot;: &amp;quot;0.2.0&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
    &amp;quot;configurations&amp;quot;: [&lt;br /&gt;
&lt;br /&gt;
        {&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;type&amp;quot;: &amp;quot;lrdb&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;request&amp;quot;: &amp;quot;attach&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;name&amp;quot;: &amp;quot;Attach to journey Lua&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;host&amp;quot;: &amp;quot;127.0.0.1&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;port&amp;quot;: 21110,&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;sourceRoot&amp;quot;: &amp;quot;${workspaceRoot}&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
            &amp;quot;stopOnEntry&amp;quot;: true&lt;br /&gt;
&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
    ]&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;Bold text&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;Bold text&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=Main_Page&amp;diff=68</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=Main_Page&amp;diff=68"/>
		<updated>2021-08-25T16:43:42Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: added some pages that&amp;#039;s hard to fine to the mainpage&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki focuses on how to mod the Journey video game, and documenting its code as part of that.&lt;br /&gt;
&lt;br /&gt;
Please be courteous to other players and sensitive to how they may want to experience Journey; while you&amp;#039;re with a companion, especially one who seems new, try to not mod/hack your game in a way that they would notice - unless you are certain that they are also modding/hacking, or at least that they will not mind if you do it.&lt;br /&gt;
* Current unsorted pages:&lt;br /&gt;
**[[Loading Level Resources With Lua]]&lt;br /&gt;
** [[ME&amp;amp;PAL Mod Downloads]]&lt;br /&gt;
** [[Lua Functions List]]&lt;br /&gt;
** [[&amp;quot;Cheat&amp;quot; Functions]]&lt;br /&gt;
** [[Creating New Levels]]&lt;br /&gt;
** [[Modded Level Uid List]]&lt;br /&gt;
** [[SetDudeAge]]&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=ME%26PAL_Mod/Downloads&amp;diff=46</id>
		<title>ME&amp;PAL Mod/Downloads</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=ME%26PAL_Mod/Downloads&amp;diff=46"/>
		<updated>2021-06-09T22:48:05Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: Protected &amp;quot;ME&amp;amp;PAL Mod Downloads&amp;quot; ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Download mirror links for current version of ME&amp;amp;PAL Mod.&lt;br /&gt;
&lt;br /&gt;
[https://www.wolf109909.top/build/resources/journey/MEPAL_Mod_v.2.0.1_Standalone.zip Standalone mod program, plus Cheat Engine trainer &amp;amp; table]&lt;br /&gt;
&lt;br /&gt;
[https://www.wolf109909.top/build/resources/journey/MEPAL_Mod_v.2.0.1_Needs_Cheat_Engine.zip Cheat Engine trainer &amp;amp; table for mod - must install Cheat Engine separately]&lt;br /&gt;
&lt;br /&gt;
[https://www.wolf109909.top/build/resources/journey/Level_09_crash_fix.zip Patch to fix the crash zone around the small tower in Level 09]&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=34</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=34"/>
		<updated>2021-06-06T08:18:37Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385;&lt;br /&gt;
background-image: url(&amp;quot;bg.jpg&amp;quot;);&lt;br /&gt;
backdrop-filter: blur(3px);&lt;br /&gt;
background-repeat: no-repeat;&lt;br /&gt;
background-attachment: fixed;&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#f5b680;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#b28550 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs li {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-normal-fade.png?1cc52);&lt;br /&gt;
    background-image: linear-gradient(to top,#32281b 0,#7653292e 1px,#ddc385 100%);&lt;br /&gt;
    background-position: left bottom;&lt;br /&gt;
    background-repeat: repeat-x;&lt;br /&gt;
    float: left;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    line-height: 1.125em;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
.mw-body, .parsoid-body {&lt;br /&gt;
    background-color: #ddc386ba;&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    direction: ltr;&lt;br /&gt;
    padding: 1em;&lt;br /&gt;
}&lt;br /&gt;
.toc, .mw-warning, .toccolours {&lt;br /&gt;
    border: 1px solid #a77744;&lt;br /&gt;
    background-color: #ead6a1;&lt;br /&gt;
    padding: 5px;&lt;br /&gt;
    font-size: 95%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited {&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
        background-color: rgb(247 187 134);&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=33</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=33"/>
		<updated>2021-06-06T08:17:18Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385;&lt;br /&gt;
background-image: url(&amp;quot;bg.png&amp;quot;);&lt;br /&gt;
backdrop-filter: blur(3px);&lt;br /&gt;
background-repeat: no-repeat;&lt;br /&gt;
background-attachment: fixed;&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#f5b680;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#b28550 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs li {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-normal-fade.png?1cc52);&lt;br /&gt;
    background-image: linear-gradient(to top,#32281b 0,#7653292e 1px,#ddc385 100%);&lt;br /&gt;
    background-position: left bottom;&lt;br /&gt;
    background-repeat: repeat-x;&lt;br /&gt;
    float: left;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    line-height: 1.125em;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
.mw-body, .parsoid-body {&lt;br /&gt;
    background-color: #ddc386ba;&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    direction: ltr;&lt;br /&gt;
    padding: 1em;&lt;br /&gt;
}&lt;br /&gt;
.toc, .mw-warning, .toccolours {&lt;br /&gt;
    border: 1px solid #a77744;&lt;br /&gt;
    background-color: #ead6a1;&lt;br /&gt;
    padding: 5px;&lt;br /&gt;
    font-size: 95%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited {&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
        background-color: rgb(247 187 134);&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=32</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=32"/>
		<updated>2021-06-06T08:16:10Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385;&lt;br /&gt;
background-image: url(&amp;quot;bg.png&amp;quot;);&lt;br /&gt;
backdrop-filter: blur(3px);&lt;br /&gt;
background-repeat: no-repeat;&lt;br /&gt;
background-attachment: fixed;&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#f5b680;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#b28550 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs li {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-normal-fade.png?1cc52);&lt;br /&gt;
    background-image: linear-gradient(to top,#32281b 0,#7653292e 1px,#ddc385 100%);&lt;br /&gt;
    background-position: left bottom;&lt;br /&gt;
    background-repeat: repeat-x;&lt;br /&gt;
    float: left;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    line-height: 1.125em;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
.mw-body, .parsoid-body {&lt;br /&gt;
    background-color: #ddc3868c;&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    direction: ltr;&lt;br /&gt;
    padding: 1em;&lt;br /&gt;
}&lt;br /&gt;
.toc, .mw-warning, .toccolours {&lt;br /&gt;
    border: 1px solid #a77744;&lt;br /&gt;
    background-color: #ead6a1;&lt;br /&gt;
    padding: 5px;&lt;br /&gt;
    font-size: 95%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited {&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
        background-color: rgb(247 187 134);&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=31</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=31"/>
		<updated>2021-06-06T08:15:14Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385;&lt;br /&gt;
background-image: url(&amp;quot;bg.png&amp;quot;);&lt;br /&gt;
backdrop-filter: blur(3px);&lt;br /&gt;
background-repeat: no-repeat;&lt;br /&gt;
background-attachment: fixed;&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#f6b986&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#b28550 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs li {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-normal-fade.png?1cc52);&lt;br /&gt;
    background-image: linear-gradient(to top,#32281b 0,#7653292e 1px,#ddc385 100%);&lt;br /&gt;
    background-position: left bottom;&lt;br /&gt;
    background-repeat: repeat-x;&lt;br /&gt;
    float: left;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    line-height: 1.125em;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
.mw-body, .parsoid-body {&lt;br /&gt;
    background-color: #ddc3868c;&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    direction: ltr;&lt;br /&gt;
    padding: 1em;&lt;br /&gt;
}&lt;br /&gt;
.toc, .mw-warning, .toccolours {&lt;br /&gt;
    border: 1px solid #a77744;&lt;br /&gt;
    background-color: #ead6a1;&lt;br /&gt;
    padding: 5px;&lt;br /&gt;
    font-size: 95%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited {&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
        background-color: rgb(247 187 134);&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=30</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=30"/>
		<updated>2021-06-06T08:14:39Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385;&lt;br /&gt;
background-image: url(&amp;quot;bg.png&amp;quot;);&lt;br /&gt;
backdrop-filter: blur(3px);&lt;br /&gt;
background-repeat: no-repeat;&lt;br /&gt;
background-attachment: fixed;&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#f6b986&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#b28550 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs li {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-normal-fade.png?1cc52);&lt;br /&gt;
    background-image: linear-gradient(to top,#32281b 0,#7653292e 1px,#ddc385 100%);&lt;br /&gt;
    background-position: left bottom;&lt;br /&gt;
    background-repeat: repeat-x;&lt;br /&gt;
    float: left;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    line-height: 1.125em;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
.mw-body, .parsoid-body {&lt;br /&gt;
    background-color: #ddc3868c;&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    direction: ltr;&lt;br /&gt;
    padding: 1em;&lt;br /&gt;
}&lt;br /&gt;
.toc, .mw-warning, .toccolours {&lt;br /&gt;
    border: 1px solid #a77744;&lt;br /&gt;
    background-color: #ead6a1;&lt;br /&gt;
    padding: 5px;&lt;br /&gt;
    font-size: 95%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited {&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
        background-color: rgb(218 190 127 / 100%);&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=29</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=29"/>
		<updated>2021-06-06T08:12:43Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385;&lt;br /&gt;
background-image: url(&amp;quot;bg.png&amp;quot;);&lt;br /&gt;
backdrop-filter: blur(3px);&lt;br /&gt;
background-repeat: no-repeat;&lt;br /&gt;
background-attachment: fixed;&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#f6b986&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#b28550 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs li {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-normal-fade.png?1cc52);&lt;br /&gt;
    background-image: linear-gradient(to top,#32281b 0,#7653292e 1px,#ddc385 100%);&lt;br /&gt;
    background-position: left bottom;&lt;br /&gt;
    background-repeat: repeat-x;&lt;br /&gt;
    float: left;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    line-height: 1.125em;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
.mw-body, .parsoid-body {&lt;br /&gt;
    background-color: #ddc3868c;&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    direction: ltr;&lt;br /&gt;
    padding: 1em;&lt;br /&gt;
}&lt;br /&gt;
.toc, .mw-warning, .toccolours {&lt;br /&gt;
    border: 1px solid #a77744;&lt;br /&gt;
    background-color: #ead6a1;&lt;br /&gt;
    padding: 5px;&lt;br /&gt;
    font-size: 95%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited {&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
        background-color: rgb(218 190 127 / 100%)&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=28</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=28"/>
		<updated>2021-06-06T08:10:50Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385;&lt;br /&gt;
background-image: url(&amp;quot;bg.png&amp;quot;);&lt;br /&gt;
backdrop-filter: blur(3px);&lt;br /&gt;
background-repeat: no-repeat;&lt;br /&gt;
background-attachment: fixed;&lt;br /&gt;
background-size: cover;&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#b28550 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs li {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-normal-fade.png?1cc52);&lt;br /&gt;
    background-image: linear-gradient(to top,#32281b 0,#7653292e 1px,#ddc385 100%);&lt;br /&gt;
    background-position: left bottom;&lt;br /&gt;
    background-repeat: repeat-x;&lt;br /&gt;
    float: left;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    line-height: 1.125em;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
.mw-body, .parsoid-body {&lt;br /&gt;
    background-color: #ddc3868c;&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    direction: ltr;&lt;br /&gt;
    padding: 1em;&lt;br /&gt;
}&lt;br /&gt;
.toc, .mw-warning, .toccolours {&lt;br /&gt;
    border: 1px solid #a77744;&lt;br /&gt;
    background-color: #ead6a1;&lt;br /&gt;
    padding: 5px;&lt;br /&gt;
    font-size: 95%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited {&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
        background-color: rgb(218 190 127 / 100%)&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=27</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=27"/>
		<updated>2021-06-06T08:10:09Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385;&lt;br /&gt;
background-image: url(&amp;quot;bg.png&amp;quot;);&lt;br /&gt;
backdrop-filter: blur(3px);&lt;br /&gt;
background-repeat: no-repeat;&lt;br /&gt;
background-attachment: fixed;&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#b28550 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs li {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-normal-fade.png?1cc52);&lt;br /&gt;
    background-image: linear-gradient(to top,#32281b 0,#7653292e 1px,#ddc385 100%);&lt;br /&gt;
    background-position: left bottom;&lt;br /&gt;
    background-repeat: repeat-x;&lt;br /&gt;
    float: left;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    line-height: 1.125em;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
.mw-body, .parsoid-body {&lt;br /&gt;
    background-color: #ddc3868c;&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    direction: ltr;&lt;br /&gt;
    padding: 1em;&lt;br /&gt;
}&lt;br /&gt;
.toc, .mw-warning, .toccolours {&lt;br /&gt;
    border: 1px solid #a77744;&lt;br /&gt;
    background-color: #ead6a1;&lt;br /&gt;
    padding: 5px;&lt;br /&gt;
    font-size: 95%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited {&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
        background-color: rgb(218 190 127 / 100%)&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=26</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=26"/>
		<updated>2021-06-06T08:09:38Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385;&lt;br /&gt;
background-image: url(&amp;quot;bg.png&amp;quot;);&lt;br /&gt;
backdrop-filter: blur(3px);&lt;br /&gt;
background-repeat: no-repeat;&lt;br /&gt;
background-position: center;&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#b28550 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs li {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-normal-fade.png?1cc52);&lt;br /&gt;
    background-image: linear-gradient(to top,#32281b 0,#7653292e 1px,#ddc385 100%);&lt;br /&gt;
    background-position: left bottom;&lt;br /&gt;
    background-repeat: repeat-x;&lt;br /&gt;
    float: left;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    line-height: 1.125em;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
.mw-body, .parsoid-body {&lt;br /&gt;
    background-color: #ddc3868c;&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    direction: ltr;&lt;br /&gt;
    padding: 1em;&lt;br /&gt;
}&lt;br /&gt;
.toc, .mw-warning, .toccolours {&lt;br /&gt;
    border: 1px solid #a77744;&lt;br /&gt;
    background-color: #ead6a1;&lt;br /&gt;
    padding: 5px;&lt;br /&gt;
    font-size: 95%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited {&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
        background-color: rgb(218 190 127 / 100%)&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=25</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=25"/>
		<updated>2021-06-06T08:08:57Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385;&lt;br /&gt;
background-image: url(&amp;quot;bg.png&amp;quot;);&lt;br /&gt;
backdrop-filter: blur(3px);&lt;br /&gt;
background-repeat: no-repeat;&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#b28550 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs li {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-normal-fade.png?1cc52);&lt;br /&gt;
    background-image: linear-gradient(to top,#32281b 0,#7653292e 1px,#ddc385 100%);&lt;br /&gt;
    background-position: left bottom;&lt;br /&gt;
    background-repeat: repeat-x;&lt;br /&gt;
    float: left;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    line-height: 1.125em;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
.mw-body, .parsoid-body {&lt;br /&gt;
    background-color: #ddc3868c;&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    direction: ltr;&lt;br /&gt;
    padding: 1em;&lt;br /&gt;
}&lt;br /&gt;
.toc, .mw-warning, .toccolours {&lt;br /&gt;
    border: 1px solid #a77744;&lt;br /&gt;
    background-color: #ead6a1;&lt;br /&gt;
    padding: 5px;&lt;br /&gt;
    font-size: 95%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited {&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
        background-color: rgb(218 190 127 / 100%)&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=24</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=24"/>
		<updated>2021-06-06T08:08:15Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385;&lt;br /&gt;
background-image: url(&amp;quot;bg.png&amp;quot;);&lt;br /&gt;
backdrop-filter: blur(3px);&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#b28550 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs li {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-normal-fade.png?1cc52);&lt;br /&gt;
    background-image: linear-gradient(to top,#32281b 0,#7653292e 1px,#ddc385 100%);&lt;br /&gt;
    background-position: left bottom;&lt;br /&gt;
    background-repeat: repeat-x;&lt;br /&gt;
    float: left;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    line-height: 1.125em;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
.mw-body, .parsoid-body {&lt;br /&gt;
    background-color: #ddc3868c;&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    direction: ltr;&lt;br /&gt;
    padding: 1em;&lt;br /&gt;
}&lt;br /&gt;
.toc, .mw-warning, .toccolours {&lt;br /&gt;
    border: 1px solid #a77744;&lt;br /&gt;
    background-color: #ead6a1;&lt;br /&gt;
    padding: 5px;&lt;br /&gt;
    font-size: 95%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited {&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
        background-color: rgb(218 190 127 / 100%)&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=23</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=23"/>
		<updated>2021-06-06T08:07:20Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385;&lt;br /&gt;
background-image: url(&amp;quot;bg.png&amp;quot;);&lt;br /&gt;
backdrop-filter: blur(3px);&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#b28550 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs li {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-normal-fade.png?1cc52);&lt;br /&gt;
    background-image: linear-gradient(to top,#32281b 0,#7653292e 1px,#ddc385 100%);&lt;br /&gt;
    background-position: left bottom;&lt;br /&gt;
    background-repeat: repeat-x;&lt;br /&gt;
    float: left;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    line-height: 1.125em;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
.mw-body, .parsoid-body {&lt;br /&gt;
    background-color: #ddc386;&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    direction: ltr;&lt;br /&gt;
    padding: 1em;&lt;br /&gt;
}&lt;br /&gt;
.toc, .mw-warning, .toccolours {&lt;br /&gt;
    border: 1px solid #a77744;&lt;br /&gt;
    background-color: #ead6a1;&lt;br /&gt;
    padding: 5px;&lt;br /&gt;
    font-size: 95%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited {&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
        background-color: rgb(218 190 127 / 100%)&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=22</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=22"/>
		<updated>2021-06-06T07:54:10Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385;&lt;br /&gt;
background-image: url(&amp;quot;bg.png&amp;quot;);&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#b28550 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs li {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-normal-fade.png?1cc52);&lt;br /&gt;
    background-image: linear-gradient(to top,#32281b 0,#7653292e 1px,#ddc385 100%);&lt;br /&gt;
    background-position: left bottom;&lt;br /&gt;
    background-repeat: repeat-x;&lt;br /&gt;
    float: left;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    line-height: 1.125em;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
.mw-body, .parsoid-body {&lt;br /&gt;
    background-color: #ddc386;&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    direction: ltr;&lt;br /&gt;
    padding: 1em;&lt;br /&gt;
}&lt;br /&gt;
.toc, .mw-warning, .toccolours {&lt;br /&gt;
    border: 1px solid #a77744;&lt;br /&gt;
    background-color: #ead6a1;&lt;br /&gt;
    padding: 5px;&lt;br /&gt;
    font-size: 95%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited {&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
        background-color: rgb(218 190 127 / 100%)&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=21</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=21"/>
		<updated>2021-06-06T07:53:42Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
background-image: url(&amp;quot;bg.png&amp;quot;);&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#b28550 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs li {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-normal-fade.png?1cc52);&lt;br /&gt;
    background-image: linear-gradient(to top,#32281b 0,#7653292e 1px,#ddc385 100%);&lt;br /&gt;
    background-position: left bottom;&lt;br /&gt;
    background-repeat: repeat-x;&lt;br /&gt;
    float: left;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    line-height: 1.125em;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
.mw-body, .parsoid-body {&lt;br /&gt;
    background-color: #ddc386;&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    direction: ltr;&lt;br /&gt;
    padding: 1em;&lt;br /&gt;
}&lt;br /&gt;
.toc, .mw-warning, .toccolours {&lt;br /&gt;
    border: 1px solid #a77744;&lt;br /&gt;
    background-color: #ead6a1;&lt;br /&gt;
    padding: 5px;&lt;br /&gt;
    font-size: 95%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited {&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
        background-color: rgb(218 190 127 / 100%)&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=20</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=20"/>
		<updated>2021-06-06T06:24:28Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#b28550 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs li {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-normal-fade.png?1cc52);&lt;br /&gt;
    background-image: linear-gradient(to top,#32281b 0,#7653292e 1px,#ddc385 100%);&lt;br /&gt;
    background-position: left bottom;&lt;br /&gt;
    background-repeat: repeat-x;&lt;br /&gt;
    float: left;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    line-height: 1.125em;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
.mw-body, .parsoid-body {&lt;br /&gt;
    background-color: #ddc386;&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    direction: ltr;&lt;br /&gt;
    padding: 1em;&lt;br /&gt;
}&lt;br /&gt;
.toc, .mw-warning, .toccolours {&lt;br /&gt;
    border: 1px solid #a77744;&lt;br /&gt;
    background-color: #ead6a1;&lt;br /&gt;
    padding: 5px;&lt;br /&gt;
    font-size: 95%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited {&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
        background-color: rgb(218 190 127 / 100%)&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=19</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=19"/>
		<updated>2021-06-06T06:14:35Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#b28550 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs li {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-normal-fade.png?1cc52);&lt;br /&gt;
    background-image: linear-gradient(to top,#32281b 0,#7653292e 1px,#ddc385 100%)&lt;br /&gt;
    background-position: left bottom;&lt;br /&gt;
    background-repeat: repeat-x;&lt;br /&gt;
    float: left;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    line-height: 1.125em;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
.mw-body, .parsoid-body {&lt;br /&gt;
    background-color: #ddc386;&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    direction: ltr;&lt;br /&gt;
    padding: 1em;&lt;br /&gt;
}&lt;br /&gt;
.toc, .mw-warning, .toccolours {&lt;br /&gt;
    border: 1px solid #a77744;&lt;br /&gt;
    background-color: #ead6a1;&lt;br /&gt;
    padding: 5px;&lt;br /&gt;
    font-size: 95%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited {&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
        background-color: rgb(218 190 127 / 100%)&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=18</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=18"/>
		<updated>2021-06-06T06:06:49Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#b28550 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs li {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-normal-fade.png?1cc52);&lt;br /&gt;
    background-image: linear-gradient(to top,#b28550 0,#b28550 1px,#e3cd93 1%);&lt;br /&gt;
    background-position: left bottom;&lt;br /&gt;
    background-repeat: repeat-x;&lt;br /&gt;
    float: left;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    line-height: 1.125em;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
.mw-body, .parsoid-body {&lt;br /&gt;
    background-color: #ddc386;&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    direction: ltr;&lt;br /&gt;
    padding: 1em;&lt;br /&gt;
}&lt;br /&gt;
.toc, .mw-warning, .toccolours {&lt;br /&gt;
    border: 1px solid #a77744;&lt;br /&gt;
    background-color: #ead6a1;&lt;br /&gt;
    padding: 5px;&lt;br /&gt;
    font-size: 95%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited {&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
        background-color: rgb(218 190 127 / 100%)&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=17</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=17"/>
		<updated>2021-06-06T06:06:31Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#b28550 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs li {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-normal-fade.png?1cc52);&lt;br /&gt;
    background-image: linear-gradient(to top,#b28550 0,#b28550 1px,#e3cd93 1%);&lt;br /&gt;
    background-position: left bottom;&lt;br /&gt;
    background-repeat: repeat-x;&lt;br /&gt;
    float: left;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    line-height: 1.125em;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
.mw-body, .parsoid-body {&lt;br /&gt;
    background-color: #ddc386;&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    direction: ltr;&lt;br /&gt;
    padding: 1em;&lt;br /&gt;
}&lt;br /&gt;
.toc, .mw-warning, .toccolours {&lt;br /&gt;
    border: 1px solid #a77744;&lt;br /&gt;
    background-color: #ead6a1;&lt;br /&gt;
    padding: 5px;&lt;br /&gt;
    font-size: 95%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited {&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
        background-color: rgb(218 190 127 / 80%)&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=16</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=16"/>
		<updated>2021-06-06T06:03:47Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#b28550 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs li {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-normal-fade.png?1cc52);&lt;br /&gt;
    background-image: linear-gradient(to top,#b28550 0,#b28550 1px,#e3cd93 1%);&lt;br /&gt;
    background-position: left bottom;&lt;br /&gt;
    background-repeat: repeat-x;&lt;br /&gt;
    float: left;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    line-height: 1.125em;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
.mw-body, .parsoid-body {&lt;br /&gt;
    background-color: #ddc386;&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    direction: ltr;&lt;br /&gt;
    padding: 1em;&lt;br /&gt;
}&lt;br /&gt;
.toc, .mw-warning, .toccolours {&lt;br /&gt;
    border: 1px solid #a77744;&lt;br /&gt;
    background-color: #ead6a1;&lt;br /&gt;
    padding: 5px;&lt;br /&gt;
    font-size: 95%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited {&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
    background-image: linear-gradient(to top,#b28550 0,#b28550 1px,#e3cd93 1%);&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=15</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=15"/>
		<updated>2021-06-06T06:01:09Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#b28550 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs li {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-normal-fade.png?1cc52);&lt;br /&gt;
    background-image: linear-gradient(to top,#b28550 0,#b28550 1px,#e3cd93 1%);&lt;br /&gt;
    background-position: left bottom;&lt;br /&gt;
    background-repeat: repeat-x;&lt;br /&gt;
    float: left;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    line-height: 1.125em;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
.mw-body, .parsoid-body {&lt;br /&gt;
    background-color: #ddc386;&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    direction: ltr;&lt;br /&gt;
    padding: 1em;&lt;br /&gt;
}&lt;br /&gt;
.toc, .mw-warning, .toccolours {&lt;br /&gt;
    border: 1px solid #a77744;&lt;br /&gt;
    background-color: #ead6a1;&lt;br /&gt;
    padding: 5px;&lt;br /&gt;
    font-size: 95%;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=14</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=14"/>
		<updated>2021-06-06T06:00:44Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#b28550 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs li {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-normal-fade.png?1cc52);&lt;br /&gt;
    background-image: linear-gradient(to top,#b28550 0,#b28550 1px,#e3cd93 1%);&lt;br /&gt;
    background-position: left bottom;&lt;br /&gt;
    background-repeat: repeat-x;&lt;br /&gt;
    float: left;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    line-height: 1.125em;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
.mw-body, .parsoid-body {&lt;br /&gt;
    background-color: #ddc386;&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    direction: ltr;&lt;br /&gt;
    padding: 1em;&lt;br /&gt;
}&lt;br /&gt;
.toc, .mw-warning, .toccolours {&lt;br /&gt;
    border: 1px solid #a2a9b1;&lt;br /&gt;
    background-color: #ead6a1;&lt;br /&gt;
    padding: 5px;&lt;br /&gt;
    font-size: 95%;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=13</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=13"/>
		<updated>2021-06-06T05:46:28Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#b28550 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs li {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-normal-fade.png?1cc52);&lt;br /&gt;
    background-image: linear-gradient(to top,#b28550 0,#b28550 1px,#e3cd93 1%);&lt;br /&gt;
    background-position: left bottom;&lt;br /&gt;
    background-repeat: repeat-x;&lt;br /&gt;
    float: left;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    line-height: 1.125em;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
.mw-body, .parsoid-body {&lt;br /&gt;
    background-color: #ddc386;&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    direction: ltr;&lt;br /&gt;
    padding: 1em;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=12</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=12"/>
		<updated>2021-06-06T05:43:27Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#b28550 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs li {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-normal-fade.png?1cc52);&lt;br /&gt;
    background-image: linear-gradient(to top,#b28550 0,#b28550 1px,#e3cd93 1%);&lt;br /&gt;
    background-position: left bottom;&lt;br /&gt;
    background-repeat: repeat-x;&lt;br /&gt;
    float: left;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    line-height: 1.125em;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=11</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=11"/>
		<updated>2021-06-06T05:42:50Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#dec486 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs li {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-normal-fade.png?1cc52);&lt;br /&gt;
    background-image: linear-gradient(to top,#b28550 0,#b28550 1px,#e3cd93 1%);&lt;br /&gt;
    background-position: left bottom;&lt;br /&gt;
    background-repeat: repeat-x;&lt;br /&gt;
    float: left;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    line-height: 1.125em;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=10</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=10"/>
		<updated>2021-06-06T05:29:11Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {&lt;br /&gt;
    background-image: url(/build/journeywiki/skins/Vector/resources/skins.vector.styles/images/tab-separator.png?09d4b);&lt;br /&gt;
    background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#dec486 100%);&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    background-size: 1px 100%;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=9</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=9"/>
		<updated>2021-06-06T05:14:31Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=8</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=8"/>
		<updated>2021-06-06T05:14:08Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
#mw-head {&lt;br /&gt;
background-color:#ecd9a4&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=7</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=7"/>
		<updated>2021-06-06T05:11:40Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;br /&gt;
mw-head {&lt;br /&gt;
background-color:#ecd9a4&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
	<entry>
		<id>https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=6</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://journeywiki.wolf109909.top/index.php?title=MediaWiki:Common.css&amp;diff=6"/>
		<updated>2021-06-06T05:10:34Z</updated>

		<summary type="html">&lt;p&gt;Wolf109909: Created page with &amp;quot;/* CSS placed here will be applied to all skins */ body{ background-color:#ddc385 }&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
body{&lt;br /&gt;
background-color:#ddc385&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Wolf109909</name></author>
	</entry>
</feed>