MediaWiki:Common.css: Difference between revisions
From Z0MB0L0GYZ
Mostknown663 (talk | contribs) No edit summary |
Mostknown663 (talk | contribs) No edit summary |
||
| Line 1: | Line 1: | ||
/* | /* ── Global reset ── */ | ||
body { | |||
background-color: #0f100a; | |||
} | |||
/* ── INFOBOX TEXT: Very Dark Brain Pink ── */ | |||
.infobox, | |||
.infobox td, | |||
.infobox th, | |||
.infobox tr { | |||
color: #4d0020 !important; | |||
} | |||
/* Infobox header/title row */ | |||
.infobox caption, | |||
.infobox > tbody > tr:first-child th { | |||
color: #330015 !important; | |||
} | |||
/* Infobox links */ | |||
.infobox a { | |||
color: #660033 !important; | |||
} | |||
.infobox a:hover { | |||
color: #991a4d !important; | |||
} | |||
/* ── LEFT | /* ── LEFT SIDE: Brain Pink (sidebar/navigation) ── */ | ||
#mw-site-navigation, | #mw-site-navigation, | ||
#mw-panel, | #mw-panel, | ||
.mw-site-navigation { | .mw-site-navigation { | ||
background-color: # | background-color: #2d0a18 !important; | ||
border-right: 2px solid # | border-right: 2px solid #6b1a35; | ||
} | } | ||
#mw-site-navigation a, | #mw-site-navigation a, | ||
#mw-panel a { | #mw-panel a { | ||
color: # | color: #ffaabf !important; | ||
} | } | ||
| Line 21: | Line 43: | ||
#mw-panel a:hover { | #mw-panel a:hover { | ||
color: #ffffff !important; | color: #ffffff !important; | ||
text-decoration: underline; | |||
} | } | ||
| Line 26: | Line 49: | ||
.portal h3, | .portal h3, | ||
#mw-site-navigation h3 { | #mw-site-navigation h3 { | ||
color: # | color: #ff5577 !important; | ||
border-bottom: 1px solid # | border-bottom: 1px solid #6b1a35 !important; | ||
} | |||
/* ── RIGHT SIDEBAR NAVIGATION: Zombie Green ── */ | |||
#mw-related-navigation { | |||
background-color: #0a1a05 !important; | |||
border-left: 2px solid #2d5a10; | |||
} | |||
/* Section headers */ | |||
#mw-related-navigation h3 { | |||
color: #88cc33 !important; | |||
border-bottom: 1px solid #2d5a10 !important; | |||
} | } | ||
/* | /* Links inside */ | ||
#mw-related-navigation a { | |||
color: #aadd66 !important; | |||
} | } | ||
#mw-related-navigation a:hover { | |||
color: #ffffff !important; | |||
color: # | |||
} | } | ||
. | /* Individual portal/section blocks */ | ||
color: # | #mw-related-navigation .portal { | ||
background-color: #0f2208 !important; | |||
border-color: #2d5a10 !important; | |||
} | } | ||
/* Content links */ | |||
color: # | #bodyContent a { | ||
color: #88cc33 !important; | |||
} | } | ||
#bodyContent a:hover { | |||
color: #ffffff !important; | color: #ffffff !important; | ||
} | } | ||
/* ── | #p-logo { | ||
background-color: #2d0a18 !important; | |||
background-color: # | } | ||
color: # | /* ── FOOTER ── */ | ||
#footer { | |||
background: linear-gradient(to right, #1f0810, #081508) !important; | |||
color: #aaa !important; | |||
border-top: 2px solid #444; | |||
} | |||
#footer a { | |||
color: #ffaabf !important; | |||
} | |||
/* ── TABS ── */ | |||
#p-views .selected a, | |||
#p-views li.selected a { | |||
background-color: #0a1a05 !important; | |||
color: #88cc33 !important; | |||
} | |||
#p-views a { | |||
color: #aad066 !important; | |||
background-color: #0f2208 !important; | |||
} | |||
/* ── SEARCH BAR ── */ | |||
#p-search input { | |||
background-color: #0f2208 !important; | |||
color: #aad066 !important; | |||
border: 1px solid #2d5a10 !important; | |||
} | |||
#content { background-color: #1a2d0f; } | |||
.page-wrapper { | |||
max-width: 1200px; | |||
margin: 0 auto; | |||
} | |||
.container { | |||
display: flex; | |||
flex-direction: row; | |||
flex-wrap: wrap; | |||
gap: 20px; | |||
padding: 20px; | |||
justify-content: center; | |||
} | |||
.square { | |||
width: 160px; | |||
height: auto; | |||
min-height: 320px; | |||
border: 2px solid #2d5a10; | |||
padding: 0; | |||
text-align: center; | |||
background: #1a3a0a; | |||
transition: transform 0.2s; | |||
box-sizing: border-box; | |||
display: flex; | |||
flex-direction: column; | |||
overflow: hidden; | |||
} | |||
.square:hover { | |||
transform: translateY(-5px); | |||
} | |||
.square .image-wrapper { | |||
width: 160px; | |||
height: auto; | |||
overflow: hidden; | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
} | |||
.square .image-wrapper img { | |||
width: 160px !important; | |||
height: auto !important; | |||
max-width: 160px !important; | |||
object-fit: contain; | |||
display: block; | |||
} | |||
.square hr { | |||
margin: 10px 15px; | |||
} | |||
.square p { | |||
margin: 5px 15px; | |||
font-weight: bold; | |||
font-size: 14px; | |||
} | } | ||
.square .placeholder { | |||
font-weight: normal; | |||
color: #aad066; | |||
font-size: 12px; | |||
margin: 5px 15px 15px 15px; | |||
opacity: 0; | |||
transition: opacity 0.3s ease; | |||
} | } | ||
.square:hover .placeholder { | |||
opacity: 1; | |||
} | } | ||
#mw-content-block { | |||
background- | background-image: url('/images/Split.png'); | ||
background-repeat: no-repeat; | |||
background-position: center; | |||
background-attachment: fixed; | |||
background-size: cover; | |||
} | } | ||
/ | |||
. | @font-face { | ||
. | font-family: "Fredoka"; | ||
. | src: url("https://db.onlinewebfonts.com/t/0ca2ea96737ff1b488509e1c766d1048.eot"); | ||
src: url("https://db.onlinewebfonts.com/t/0ca2ea96737ff1b488509e1c766d1048.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/0ca2ea96737ff1b488509e1c766d1048.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/0ca2ea96737ff1b488509e1c766d1048.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/0ca2ea96737ff1b488509e1c766d1048.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/0ca2ea96737ff1b488509e1c766d1048.svg#Fredoka")format("svg"); | |||
} | } | ||
/ | @font-face { | ||
font-family: "Card Characters"; | |||
src: url("https://db.onlinewebfonts.com/t/49290f9700f67192ec91550680336dad.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/49290f9700f67192ec91550680336dad.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/49290f9700f67192ec91550680336dad.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/49290f9700f67192ec91550680336dad.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/49290f9700f67192ec91550680336dad.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/49290f9700f67192ec91550680336dad.svg#Card Characters")format("svg"); | |||
} | } | ||
# | @font-face { | ||
font-family: "War is Over(RUS BY LYAJKA)"; | |||
src: url("https://db.onlinewebfonts.com/t/c8badad0a4cadcefd2f543d4f34e90c2.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/c8badad0a4cadcefd2f543d4f34e90c2.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/c8badad0a4cadcefd2f543d4f34e90c2.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/c8badad0a4cadcefd2f543d4f34e90c2.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/c8badad0a4cadcefd2f543d4f34e90c2.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/c8badad0a4cadcefd2f543d4f34e90c2.svg#War is Over(RUS BY LYAJKA)")format("svg"); | |||
} | } | ||
# | @font-face { | ||
font-family: "Bubble Rainbow"; | |||
src: url("https://db.onlinewebfonts.com/t/0a392c97a01e18e13d96803790f6e932.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/0a392c97a01e18e13d96803790f6e932.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/0a392c97a01e18e13d96803790f6e932.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/0a392c97a01e18e13d96803790f6e932.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/0a392c97a01e18e13d96803790f6e932.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/0a392c97a01e18e13d96803790f6e932.svg#Bubble Rainbow")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "Coloring Book"; | |||
src: url("https://db.onlinewebfonts.com/t/641e0f8bd0605f304a44d576877a26a2.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/641e0f8bd0605f304a44d576877a26a2.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/641e0f8bd0605f304a44d576877a26a2.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/641e0f8bd0605f304a44d576877a26a2.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/641e0f8bd0605f304a44d576877a26a2.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/641e0f8bd0605f304a44d576877a26a2.svg#Coloring Book")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "LEMON MILK"; | |||
src: url("https://db.onlinewebfonts.com/t/499e6a9eb2ee00ca390df83c1a1b9e47.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/499e6a9eb2ee00ca390df83c1a1b9e47.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/499e6a9eb2ee00ca390df83c1a1b9e47.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/499e6a9eb2ee00ca390df83c1a1b9e47.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/499e6a9eb2ee00ca390df83c1a1b9e47.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/499e6a9eb2ee00ca390df83c1a1b9e47.svg#LEMON MILK")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "Press Start 2P"; | |||
src: url("https://db.onlinewebfonts.com/t/f389091962d8dab9ec69c5060e2e023c.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/f389091962d8dab9ec69c5060e2e023c.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/f389091962d8dab9ec69c5060e2e023c.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/f389091962d8dab9ec69c5060e2e023c.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/f389091962d8dab9ec69c5060e2e023c.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/f389091962d8dab9ec69c5060e2e023c.svg#Press Start 2P")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "Strawberry Muffins Demo"; | |||
src: url("https://db.onlinewebfonts.com/t/5815be6836a5b93a4afd1914f114e001.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/5815be6836a5b93a4afd1914f114e001.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/5815be6836a5b93a4afd1914f114e001.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/5815be6836a5b93a4afd1914f114e001.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/5815be6836a5b93a4afd1914f114e001.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/5815be6836a5b93a4afd1914f114e001.svg#Strawberry Muffins Demo")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "Raleway Bold"; | |||
src: url("https://db.onlinewebfonts.com/t/3b1a9a7b05c1e411253797b2fa3d1e91.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/3b1a9a7b05c1e411253797b2fa3d1e91.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/3b1a9a7b05c1e411253797b2fa3d1e91.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/3b1a9a7b05c1e411253797b2fa3d1e91.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/3b1a9a7b05c1e411253797b2fa3d1e91.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/3b1a9a7b05c1e411253797b2fa3d1e91.svg#Raleway Bold")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "Homemade Apple Regular"; | |||
src: url("https://db.onlinewebfonts.com/t/376ce5f40c7328bc09c760da47afc0d9.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/376ce5f40c7328bc09c760da47afc0d9.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/376ce5f40c7328bc09c760da47afc0d9.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/376ce5f40c7328bc09c760da47afc0d9.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/376ce5f40c7328bc09c760da47afc0d9.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/376ce5f40c7328bc09c760da47afc0d9.svg#Homemade Apple Regular")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "Candice"; | |||
src: url("https://db.onlinewebfonts.com/t/9c7bc61ece0a61a85b6e8a59bebef3d2.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/9c7bc61ece0a61a85b6e8a59bebef3d2.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/9c7bc61ece0a61a85b6e8a59bebef3d2.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/9c7bc61ece0a61a85b6e8a59bebef3d2.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/9c7bc61ece0a61a85b6e8a59bebef3d2.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/9c7bc61ece0a61a85b6e8a59bebef3d2.svg#Candice")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "Pixel NES"; | |||
src: url("https://db.onlinewebfonts.com/t/f555c47ffc99d5fbcc445e615749dc38.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/f555c47ffc99d5fbcc445e615749dc38.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/f555c47ffc99d5fbcc445e615749dc38.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/f555c47ffc99d5fbcc445e615749dc38.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/f555c47ffc99d5fbcc445e615749dc38.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/f555c47ffc99d5fbcc445e615749dc38.svg#Pixel NES")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "Command Prompt Fixed"; | |||
src: url("https://db.onlinewebfonts.com/t/b6db361f28973514771b0b962e2a8008.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/b6db361f28973514771b0b962e2a8008.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/b6db361f28973514771b0b962e2a8008.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/b6db361f28973514771b0b962e2a8008.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/b6db361f28973514771b0b962e2a8008.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/b6db361f28973514771b0b962e2a8008.svg#Command Prompt Fixed")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "F7*5dot font"; | |||
src: url("https://db.onlinewebfonts.com/t/c3c6f4c1bc69bf3f2cccf859aa900668.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/c3c6f4c1bc69bf3f2cccf859aa900668.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/c3c6f4c1bc69bf3f2cccf859aa900668.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/c3c6f4c1bc69bf3f2cccf859aa900668.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/c3c6f4c1bc69bf3f2cccf859aa900668.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/c3c6f4c1bc69bf3f2cccf859aa900668.svg#F7*5dot font")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "threed"; | |||
src: url("https://db.onlinewebfonts.com/t/3c214437d87e656fa363c6bf5e1bb436.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/3c214437d87e656fa363c6bf5e1bb436.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/3c214437d87e656fa363c6bf5e1bb436.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/3c214437d87e656fa363c6bf5e1bb436.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/3c214437d87e656fa363c6bf5e1bb436.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/3c214437d87e656fa363c6bf5e1bb436.svg#threed")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "Championship"; | |||
src: url("https://db.onlinewebfonts.com/t/21e2ec622027e0e44ecd02acfacf2f60.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/21e2ec622027e0e44ecd02acfacf2f60.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/21e2ec622027e0e44ecd02acfacf2f60.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/21e2ec622027e0e44ecd02acfacf2f60.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/21e2ec622027e0e44ecd02acfacf2f60.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/21e2ec622027e0e44ecd02acfacf2f60.svg#Championship")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "Joystix"; | |||
src: url("https://db.onlinewebfonts.com/t/a17af96c10647b3403e18a0e94283536.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/a17af96c10647b3403e18a0e94283536.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/a17af96c10647b3403e18a0e94283536.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/a17af96c10647b3403e18a0e94283536.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/a17af96c10647b3403e18a0e94283536.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/a17af96c10647b3403e18a0e94283536.svg#Joystix")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "F395 equalizer 2"; | |||
src: url("https://db.onlinewebfonts.com/t/8e4b5512463a289b7a24aac91ee1ee91.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/8e4b5512463a289b7a24aac91ee1ee91.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/8e4b5512463a289b7a24aac91ee1ee91.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/8e4b5512463a289b7a24aac91ee1ee91.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/8e4b5512463a289b7a24aac91ee1ee91.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/8e4b5512463a289b7a24aac91ee1ee91.svg#F395 equalizer 2")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "ToxigenesisRg-Bold"; | |||
src: url("https://db.onlinewebfonts.com/t/b8b034ea1980e6988cc1106f1aae25cb.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/b8b034ea1980e6988cc1106f1aae25cb.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/b8b034ea1980e6988cc1106f1aae25cb.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/b8b034ea1980e6988cc1106f1aae25cb.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/b8b034ea1980e6988cc1106f1aae25cb.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/b8b034ea1980e6988cc1106f1aae25cb.svg#ToxigenesisRg-Bold")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "Billie Eilish"; | |||
src: url("https://db.onlinewebfonts.com/t/081005bf0ec7a25a812a8e39420a477c.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/081005bf0ec7a25a812a8e39420a477c.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/081005bf0ec7a25a812a8e39420a477c.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/081005bf0ec7a25a812a8e39420a477c.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/081005bf0ec7a25a812a8e39420a477c.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/081005bf0ec7a25a812a8e39420a477c.svg#Billie Eilish")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "Game Paused DEMO"; | |||
src: url("https://db.onlinewebfonts.com/t/b2de16ea5a7f724666be86b32649f518.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/b2de16ea5a7f724666be86b32649f518.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/b2de16ea5a7f724666be86b32649f518.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/b2de16ea5a7f724666be86b32649f518.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/b2de16ea5a7f724666be86b32649f518.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/b2de16ea5a7f724666be86b32649f518.svg#Game Paused DEMO")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "Fake Receipt"; | |||
src: url("https://db.onlinewebfonts.com/t/6bc5fc6bc1dc19f53b824811a448355a.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/6bc5fc6bc1dc19f53b824811a448355a.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/6bc5fc6bc1dc19f53b824811a448355a.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/6bc5fc6bc1dc19f53b824811a448355a.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/6bc5fc6bc1dc19f53b824811a448355a.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/6bc5fc6bc1dc19f53b824811a448355a.svg#Fake Receipt")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "Roblox 2017"; | |||
src: url("https://db.onlinewebfonts.com/t/b2582567749a201b8c641993b51ed625.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/b2582567749a201b8c641993b51ed625.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/b2582567749a201b8c641993b51ed625.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/b2582567749a201b8c641993b51ed625.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/b2582567749a201b8c641993b51ed625.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/b2582567749a201b8c641993b51ed625.svg#Roblox 2017")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "iDroid S"; | |||
src: url("https://db.onlinewebfonts.com/t/16c3e1876ccccf317c091e4df90ed205.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/16c3e1876ccccf317c091e4df90ed205.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/16c3e1876ccccf317c091e4df90ed205.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/16c3e1876ccccf317c091e4df90ed205.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/16c3e1876ccccf317c091e4df90ed205.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/16c3e1876ccccf317c091e4df90ed205.svg#iDroid S")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "Poxast"; | |||
src: url("https://db.onlinewebfonts.com/t/681822ee831ebd2565c8d52eca2af768.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/681822ee831ebd2565c8d52eca2af768.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/681822ee831ebd2565c8d52eca2af768.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/681822ee831ebd2565c8d52eca2af768.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/681822ee831ebd2565c8d52eca2af768.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/681822ee831ebd2565c8d52eca2af768.svg#Poxast")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "Subway Ticker"; | |||
src: url("https://db.onlinewebfonts.com/t/7dc316626726a6192011df8351950103.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/7dc316626726a6192011df8351950103.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/7dc316626726a6192011df8351950103.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/7dc316626726a6192011df8351950103.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/7dc316626726a6192011df8351950103.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/7dc316626726a6192011df8351950103.svg#Subway Ticker")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "Senor Saturno V1"; | |||
src: url("https://db.onlinewebfonts.com/t/c6ae7c2426a9df2a7e51da2f455bb68a.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/c6ae7c2426a9df2a7e51da2f455bb68a.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/c6ae7c2426a9df2a7e51da2f455bb68a.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/c6ae7c2426a9df2a7e51da2f455bb68a.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/c6ae7c2426a9df2a7e51da2f455bb68a.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/c6ae7c2426a9df2a7e51da2f455bb68a.svg#Senor Saturno V1")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "Academy Regular"; | |||
src: url("https://db.onlinewebfonts.com/t/4b1d0ee8fbe9a000f04e17038f7baa99.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/4b1d0ee8fbe9a000f04e17038f7baa99.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/4b1d0ee8fbe9a000f04e17038f7baa99.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/4b1d0ee8fbe9a000f04e17038f7baa99.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/4b1d0ee8fbe9a000f04e17038f7baa99.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/4b1d0ee8fbe9a000f04e17038f7baa99.svg#Academy Regular")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "PixelFlag Regular"; | |||
src: url("https://db.onlinewebfonts.com/t/8e377f1e5376f3ebebefb674e2449aa5.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/8e377f1e5376f3ebebefb674e2449aa5.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/8e377f1e5376f3ebebefb674e2449aa5.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/8e377f1e5376f3ebebefb674e2449aa5.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/8e377f1e5376f3ebebefb674e2449aa5.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/8e377f1e5376f3ebebefb674e2449aa5.svg#PixelFlag Regular")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "F14 Segment LED"; | |||
src: url("https://db.onlinewebfonts.com/t/303e245ee7159b39227d219e4f19dfbc.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/303e245ee7159b39227d219e4f19dfbc.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/303e245ee7159b39227d219e4f19dfbc.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/303e245ee7159b39227d219e4f19dfbc.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/303e245ee7159b39227d219e4f19dfbc.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/303e245ee7159b39227d219e4f19dfbc.svg#F14 Segment LED")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "TesseraTopaz8x16"; | |||
src: url("https://db.onlinewebfonts.com/t/f17d7184beb7967ffffdac2db2be3252.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/f17d7184beb7967ffffdac2db2be3252.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/f17d7184beb7967ffffdac2db2be3252.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/f17d7184beb7967ffffdac2db2be3252.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/f17d7184beb7967ffffdac2db2be3252.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/f17d7184beb7967ffffdac2db2be3252.svg#TesseraTopaz8x16")format("svg"); | |||
} | |||
@font-face { | |||
font-family: "Crewniverse"; | |||
src: url("https://db.onlinewebfonts.com/t/9c3b9b699ec505de691a9184317793d8.eot"); | |||
src: url("https://db.onlinewebfonts.com/t/9c3b9b699ec505de691a9184317793d8.eot?#iefix")format("embedded-opentype"), | |||
url("https://db.onlinewebfonts.com/t/9c3b9b699ec505de691a9184317793d8.woff2")format("woff2"), | |||
url("https://db.onlinewebfonts.com/t/9c3b9b699ec505de691a9184317793d8.woff")format("woff"), | |||
url("https://db.onlinewebfonts.com/t/9c3b9b699ec505de691a9184317793d8.ttf")format("truetype"), | |||
url("https://db.onlinewebfonts.com/t/9c3b9b699ec505de691a9184317793d8.svg#Crewniverse")format("svg"); | |||
} | |||
.portable-infobox .pi-secondary-background { | |||
background: linear-gradient(to bottom, #1a3a08, #0a1a05); | |||
border: 4px solid #000; | |||
} | } | ||
.pi-border-color { | |||
border-color: #2d5a10; | |||
border-width: 4px; | |||
border-radius: 20px; | |||
} | } | ||
.portable-infobox .pi-image { | |||
background: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.2) 6%, rgba(0, 0, 0, 0.2) 10%, transparent 10%, transparent 15%); | |||
background-color: rgba(0, 0, 0, 0.2); | |||
} | } | ||
.portable-infobox .pi-title { | |||
border-radius: 15px 15px 0 0; | |||
border-width: 0 0 3px 0; | |||
border-style: solid; | |||
border-color: #2d0a18; | |||
color: #ffaabf; | |||
font-size: 25px !important; | |||
font-family: Fredoka !important; | |||
text-shadow: 2px 0 0 #2d0a18, -2px 0 0 #2d0a18, 0 2px 0 #2d0a18, 0 -2px 0 #2d0a18, 2px 2px 0 #2d0a18, -2px -2px 0 #2d0a18, -2px 2px 0 #2d0a18, 2px -2px 0 #2d0a18; | |||
} | } | ||
.portable-infobox .pi-header { | |||
border-width: 3px 0 3px 0 !important; | |||
border-style: solid!important; | |||
border-color: #2d0a18!important; | |||
color: #ffaabf; | |||
font-size: 16px !important; | |||
font-family: Fredoka !important ; | |||
text-shadow: 1px 0px 0px #2d0a18, -1px 0 0 #2d0a18, 0 1px 0 #2d0a18, 0 -1px 0 #2d0a18, 1px 1px 0 #2d0a18, -1px -1px 0 #2d0a18, -1px 1px 0 #2d0a18, 1px -1px 0 #2d0a18; | |||
} | } | ||
#mw-site-navigation .sidebar-chunk, #mw-related-navigation .sidebar-chunk { | |||
background-color: clear; | |||
color: #aad066; | |||
padding: 0.3em; | |||
border: none; | |||
font-family: "Raleway Bold", sans-serif; | |||
} | } | ||
#mw-site-navigation .sidebar-chunk a, #mw-related-navigation .sidebar-chunk a { | |||
color: #ffaabf; | |||
} | } | ||
#mw-site-navigation .sidebar-chunk h3, #mw-related-navigation .sidebar-chunk h3 { | |||
font-family: "Raleway Bold", sans-serif; | |||
font-weight: bold; | |||
text-transform: uppercase; | |||
border: 0; | |||
color: #4a8a1a; | |||
border-bottom: #2d5a10 solid 1px; | |||
} | } | ||
#p-navigation, #p-Explore, #p-managewiki-sidebar-header, #p-STAFF, #p-boggio, #p-tb, #p-cactions, #p-pagemisc, #p-userpagetools, .mw-normal-catlinks, #p-birthday, #p-event, #p-content, #p-more_categories, #p-wiki_tools { | |||
background-color: # | background-color: #2d0a18; | ||
border-radius: 5px; | |||
padding: 10px; | |||
color: #ffaabf; | |||
margin-bottom: 10px; | |||
box-shadow: 0px 0px 3px 2px #88cc33; | |||
} | } | ||
Latest revision as of 16:39, 9 March 2026
/* ── Global reset ── */
body {
background-color: #0f100a;
}
/* ── INFOBOX TEXT: Very Dark Brain Pink ── */
.infobox,
.infobox td,
.infobox th,
.infobox tr {
color: #4d0020 !important;
}
/* Infobox header/title row */
.infobox caption,
.infobox > tbody > tr:first-child th {
color: #330015 !important;
}
/* Infobox links */
.infobox a {
color: #660033 !important;
}
.infobox a:hover {
color: #991a4d !important;
}
/* ── LEFT SIDE: Brain Pink (sidebar/navigation) ── */
#mw-site-navigation,
#mw-panel,
.mw-site-navigation {
background-color: #2d0a18 !important;
border-right: 2px solid #6b1a35;
}
#mw-site-navigation a,
#mw-panel a {
color: #ffaabf !important;
}
#mw-site-navigation a:hover,
#mw-panel a:hover {
color: #ffffff !important;
text-decoration: underline;
}
/* Sidebar headers */
.portal h3,
#mw-site-navigation h3 {
color: #ff5577 !important;
border-bottom: 1px solid #6b1a35 !important;
}
/* ── RIGHT SIDEBAR NAVIGATION: Zombie Green ── */
#mw-related-navigation {
background-color: #0a1a05 !important;
border-left: 2px solid #2d5a10;
}
/* Section headers */
#mw-related-navigation h3 {
color: #88cc33 !important;
border-bottom: 1px solid #2d5a10 !important;
}
/* Links inside */
#mw-related-navigation a {
color: #aadd66 !important;
}
#mw-related-navigation a:hover {
color: #ffffff !important;
}
/* Individual portal/section blocks */
#mw-related-navigation .portal {
background-color: #0f2208 !important;
border-color: #2d5a10 !important;
}
/* Content links */
#bodyContent a {
color: #88cc33 !important;
}
#bodyContent a:hover {
color: #ffffff !important;
}
#p-logo {
background-color: #2d0a18 !important;
}
/* ── FOOTER ── */
#footer {
background: linear-gradient(to right, #1f0810, #081508) !important;
color: #aaa !important;
border-top: 2px solid #444;
}
#footer a {
color: #ffaabf !important;
}
/* ── TABS ── */
#p-views .selected a,
#p-views li.selected a {
background-color: #0a1a05 !important;
color: #88cc33 !important;
}
#p-views a {
color: #aad066 !important;
background-color: #0f2208 !important;
}
/* ── SEARCH BAR ── */
#p-search input {
background-color: #0f2208 !important;
color: #aad066 !important;
border: 1px solid #2d5a10 !important;
}
#content { background-color: #1a2d0f; }
.page-wrapper {
max-width: 1200px;
margin: 0 auto;
}
.container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 20px;
padding: 20px;
justify-content: center;
}
.square {
width: 160px;
height: auto;
min-height: 320px;
border: 2px solid #2d5a10;
padding: 0;
text-align: center;
background: #1a3a0a;
transition: transform 0.2s;
box-sizing: border-box;
display: flex;
flex-direction: column;
overflow: hidden;
}
.square:hover {
transform: translateY(-5px);
}
.square .image-wrapper {
width: 160px;
height: auto;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.square .image-wrapper img {
width: 160px !important;
height: auto !important;
max-width: 160px !important;
object-fit: contain;
display: block;
}
.square hr {
margin: 10px 15px;
}
.square p {
margin: 5px 15px;
font-weight: bold;
font-size: 14px;
}
.square .placeholder {
font-weight: normal;
color: #aad066;
font-size: 12px;
margin: 5px 15px 15px 15px;
opacity: 0;
transition: opacity 0.3s ease;
}
.square:hover .placeholder {
opacity: 1;
}
#mw-content-block {
background-image: url('/images/Split.png');
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
background-size: cover;
}
@font-face {
font-family: "Fredoka";
src: url("https://db.onlinewebfonts.com/t/0ca2ea96737ff1b488509e1c766d1048.eot");
src: url("https://db.onlinewebfonts.com/t/0ca2ea96737ff1b488509e1c766d1048.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/0ca2ea96737ff1b488509e1c766d1048.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/0ca2ea96737ff1b488509e1c766d1048.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/0ca2ea96737ff1b488509e1c766d1048.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/0ca2ea96737ff1b488509e1c766d1048.svg#Fredoka")format("svg");
}
@font-face {
font-family: "Card Characters";
src: url("https://db.onlinewebfonts.com/t/49290f9700f67192ec91550680336dad.eot");
src: url("https://db.onlinewebfonts.com/t/49290f9700f67192ec91550680336dad.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/49290f9700f67192ec91550680336dad.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/49290f9700f67192ec91550680336dad.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/49290f9700f67192ec91550680336dad.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/49290f9700f67192ec91550680336dad.svg#Card Characters")format("svg");
}
@font-face {
font-family: "War is Over(RUS BY LYAJKA)";
src: url("https://db.onlinewebfonts.com/t/c8badad0a4cadcefd2f543d4f34e90c2.eot");
src: url("https://db.onlinewebfonts.com/t/c8badad0a4cadcefd2f543d4f34e90c2.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/c8badad0a4cadcefd2f543d4f34e90c2.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/c8badad0a4cadcefd2f543d4f34e90c2.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/c8badad0a4cadcefd2f543d4f34e90c2.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/c8badad0a4cadcefd2f543d4f34e90c2.svg#War is Over(RUS BY LYAJKA)")format("svg");
}
@font-face {
font-family: "Bubble Rainbow";
src: url("https://db.onlinewebfonts.com/t/0a392c97a01e18e13d96803790f6e932.eot");
src: url("https://db.onlinewebfonts.com/t/0a392c97a01e18e13d96803790f6e932.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/0a392c97a01e18e13d96803790f6e932.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/0a392c97a01e18e13d96803790f6e932.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/0a392c97a01e18e13d96803790f6e932.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/0a392c97a01e18e13d96803790f6e932.svg#Bubble Rainbow")format("svg");
}
@font-face {
font-family: "Coloring Book";
src: url("https://db.onlinewebfonts.com/t/641e0f8bd0605f304a44d576877a26a2.eot");
src: url("https://db.onlinewebfonts.com/t/641e0f8bd0605f304a44d576877a26a2.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/641e0f8bd0605f304a44d576877a26a2.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/641e0f8bd0605f304a44d576877a26a2.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/641e0f8bd0605f304a44d576877a26a2.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/641e0f8bd0605f304a44d576877a26a2.svg#Coloring Book")format("svg");
}
@font-face {
font-family: "LEMON MILK";
src: url("https://db.onlinewebfonts.com/t/499e6a9eb2ee00ca390df83c1a1b9e47.eot");
src: url("https://db.onlinewebfonts.com/t/499e6a9eb2ee00ca390df83c1a1b9e47.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/499e6a9eb2ee00ca390df83c1a1b9e47.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/499e6a9eb2ee00ca390df83c1a1b9e47.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/499e6a9eb2ee00ca390df83c1a1b9e47.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/499e6a9eb2ee00ca390df83c1a1b9e47.svg#LEMON MILK")format("svg");
}
@font-face {
font-family: "Press Start 2P";
src: url("https://db.onlinewebfonts.com/t/f389091962d8dab9ec69c5060e2e023c.eot");
src: url("https://db.onlinewebfonts.com/t/f389091962d8dab9ec69c5060e2e023c.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/f389091962d8dab9ec69c5060e2e023c.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/f389091962d8dab9ec69c5060e2e023c.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/f389091962d8dab9ec69c5060e2e023c.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/f389091962d8dab9ec69c5060e2e023c.svg#Press Start 2P")format("svg");
}
@font-face {
font-family: "Strawberry Muffins Demo";
src: url("https://db.onlinewebfonts.com/t/5815be6836a5b93a4afd1914f114e001.eot");
src: url("https://db.onlinewebfonts.com/t/5815be6836a5b93a4afd1914f114e001.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/5815be6836a5b93a4afd1914f114e001.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/5815be6836a5b93a4afd1914f114e001.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/5815be6836a5b93a4afd1914f114e001.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/5815be6836a5b93a4afd1914f114e001.svg#Strawberry Muffins Demo")format("svg");
}
@font-face {
font-family: "Raleway Bold";
src: url("https://db.onlinewebfonts.com/t/3b1a9a7b05c1e411253797b2fa3d1e91.eot");
src: url("https://db.onlinewebfonts.com/t/3b1a9a7b05c1e411253797b2fa3d1e91.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/3b1a9a7b05c1e411253797b2fa3d1e91.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/3b1a9a7b05c1e411253797b2fa3d1e91.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/3b1a9a7b05c1e411253797b2fa3d1e91.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/3b1a9a7b05c1e411253797b2fa3d1e91.svg#Raleway Bold")format("svg");
}
@font-face {
font-family: "Homemade Apple Regular";
src: url("https://db.onlinewebfonts.com/t/376ce5f40c7328bc09c760da47afc0d9.eot");
src: url("https://db.onlinewebfonts.com/t/376ce5f40c7328bc09c760da47afc0d9.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/376ce5f40c7328bc09c760da47afc0d9.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/376ce5f40c7328bc09c760da47afc0d9.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/376ce5f40c7328bc09c760da47afc0d9.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/376ce5f40c7328bc09c760da47afc0d9.svg#Homemade Apple Regular")format("svg");
}
@font-face {
font-family: "Candice";
src: url("https://db.onlinewebfonts.com/t/9c7bc61ece0a61a85b6e8a59bebef3d2.eot");
src: url("https://db.onlinewebfonts.com/t/9c7bc61ece0a61a85b6e8a59bebef3d2.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/9c7bc61ece0a61a85b6e8a59bebef3d2.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/9c7bc61ece0a61a85b6e8a59bebef3d2.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/9c7bc61ece0a61a85b6e8a59bebef3d2.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/9c7bc61ece0a61a85b6e8a59bebef3d2.svg#Candice")format("svg");
}
@font-face {
font-family: "Pixel NES";
src: url("https://db.onlinewebfonts.com/t/f555c47ffc99d5fbcc445e615749dc38.eot");
src: url("https://db.onlinewebfonts.com/t/f555c47ffc99d5fbcc445e615749dc38.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/f555c47ffc99d5fbcc445e615749dc38.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/f555c47ffc99d5fbcc445e615749dc38.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/f555c47ffc99d5fbcc445e615749dc38.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/f555c47ffc99d5fbcc445e615749dc38.svg#Pixel NES")format("svg");
}
@font-face {
font-family: "Command Prompt Fixed";
src: url("https://db.onlinewebfonts.com/t/b6db361f28973514771b0b962e2a8008.eot");
src: url("https://db.onlinewebfonts.com/t/b6db361f28973514771b0b962e2a8008.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/b6db361f28973514771b0b962e2a8008.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/b6db361f28973514771b0b962e2a8008.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/b6db361f28973514771b0b962e2a8008.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/b6db361f28973514771b0b962e2a8008.svg#Command Prompt Fixed")format("svg");
}
@font-face {
font-family: "F7*5dot font";
src: url("https://db.onlinewebfonts.com/t/c3c6f4c1bc69bf3f2cccf859aa900668.eot");
src: url("https://db.onlinewebfonts.com/t/c3c6f4c1bc69bf3f2cccf859aa900668.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/c3c6f4c1bc69bf3f2cccf859aa900668.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/c3c6f4c1bc69bf3f2cccf859aa900668.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/c3c6f4c1bc69bf3f2cccf859aa900668.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/c3c6f4c1bc69bf3f2cccf859aa900668.svg#F7*5dot font")format("svg");
}
@font-face {
font-family: "threed";
src: url("https://db.onlinewebfonts.com/t/3c214437d87e656fa363c6bf5e1bb436.eot");
src: url("https://db.onlinewebfonts.com/t/3c214437d87e656fa363c6bf5e1bb436.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/3c214437d87e656fa363c6bf5e1bb436.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/3c214437d87e656fa363c6bf5e1bb436.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/3c214437d87e656fa363c6bf5e1bb436.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/3c214437d87e656fa363c6bf5e1bb436.svg#threed")format("svg");
}
@font-face {
font-family: "Championship";
src: url("https://db.onlinewebfonts.com/t/21e2ec622027e0e44ecd02acfacf2f60.eot");
src: url("https://db.onlinewebfonts.com/t/21e2ec622027e0e44ecd02acfacf2f60.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/21e2ec622027e0e44ecd02acfacf2f60.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/21e2ec622027e0e44ecd02acfacf2f60.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/21e2ec622027e0e44ecd02acfacf2f60.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/21e2ec622027e0e44ecd02acfacf2f60.svg#Championship")format("svg");
}
@font-face {
font-family: "Joystix";
src: url("https://db.onlinewebfonts.com/t/a17af96c10647b3403e18a0e94283536.eot");
src: url("https://db.onlinewebfonts.com/t/a17af96c10647b3403e18a0e94283536.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/a17af96c10647b3403e18a0e94283536.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/a17af96c10647b3403e18a0e94283536.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/a17af96c10647b3403e18a0e94283536.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/a17af96c10647b3403e18a0e94283536.svg#Joystix")format("svg");
}
@font-face {
font-family: "F395 equalizer 2";
src: url("https://db.onlinewebfonts.com/t/8e4b5512463a289b7a24aac91ee1ee91.eot");
src: url("https://db.onlinewebfonts.com/t/8e4b5512463a289b7a24aac91ee1ee91.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/8e4b5512463a289b7a24aac91ee1ee91.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/8e4b5512463a289b7a24aac91ee1ee91.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/8e4b5512463a289b7a24aac91ee1ee91.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/8e4b5512463a289b7a24aac91ee1ee91.svg#F395 equalizer 2")format("svg");
}
@font-face {
font-family: "ToxigenesisRg-Bold";
src: url("https://db.onlinewebfonts.com/t/b8b034ea1980e6988cc1106f1aae25cb.eot");
src: url("https://db.onlinewebfonts.com/t/b8b034ea1980e6988cc1106f1aae25cb.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/b8b034ea1980e6988cc1106f1aae25cb.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/b8b034ea1980e6988cc1106f1aae25cb.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/b8b034ea1980e6988cc1106f1aae25cb.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/b8b034ea1980e6988cc1106f1aae25cb.svg#ToxigenesisRg-Bold")format("svg");
}
@font-face {
font-family: "Billie Eilish";
src: url("https://db.onlinewebfonts.com/t/081005bf0ec7a25a812a8e39420a477c.eot");
src: url("https://db.onlinewebfonts.com/t/081005bf0ec7a25a812a8e39420a477c.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/081005bf0ec7a25a812a8e39420a477c.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/081005bf0ec7a25a812a8e39420a477c.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/081005bf0ec7a25a812a8e39420a477c.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/081005bf0ec7a25a812a8e39420a477c.svg#Billie Eilish")format("svg");
}
@font-face {
font-family: "Game Paused DEMO";
src: url("https://db.onlinewebfonts.com/t/b2de16ea5a7f724666be86b32649f518.eot");
src: url("https://db.onlinewebfonts.com/t/b2de16ea5a7f724666be86b32649f518.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/b2de16ea5a7f724666be86b32649f518.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/b2de16ea5a7f724666be86b32649f518.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/b2de16ea5a7f724666be86b32649f518.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/b2de16ea5a7f724666be86b32649f518.svg#Game Paused DEMO")format("svg");
}
@font-face {
font-family: "Fake Receipt";
src: url("https://db.onlinewebfonts.com/t/6bc5fc6bc1dc19f53b824811a448355a.eot");
src: url("https://db.onlinewebfonts.com/t/6bc5fc6bc1dc19f53b824811a448355a.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/6bc5fc6bc1dc19f53b824811a448355a.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/6bc5fc6bc1dc19f53b824811a448355a.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/6bc5fc6bc1dc19f53b824811a448355a.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/6bc5fc6bc1dc19f53b824811a448355a.svg#Fake Receipt")format("svg");
}
@font-face {
font-family: "Roblox 2017";
src: url("https://db.onlinewebfonts.com/t/b2582567749a201b8c641993b51ed625.eot");
src: url("https://db.onlinewebfonts.com/t/b2582567749a201b8c641993b51ed625.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/b2582567749a201b8c641993b51ed625.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/b2582567749a201b8c641993b51ed625.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/b2582567749a201b8c641993b51ed625.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/b2582567749a201b8c641993b51ed625.svg#Roblox 2017")format("svg");
}
@font-face {
font-family: "iDroid S";
src: url("https://db.onlinewebfonts.com/t/16c3e1876ccccf317c091e4df90ed205.eot");
src: url("https://db.onlinewebfonts.com/t/16c3e1876ccccf317c091e4df90ed205.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/16c3e1876ccccf317c091e4df90ed205.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/16c3e1876ccccf317c091e4df90ed205.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/16c3e1876ccccf317c091e4df90ed205.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/16c3e1876ccccf317c091e4df90ed205.svg#iDroid S")format("svg");
}
@font-face {
font-family: "Poxast";
src: url("https://db.onlinewebfonts.com/t/681822ee831ebd2565c8d52eca2af768.eot");
src: url("https://db.onlinewebfonts.com/t/681822ee831ebd2565c8d52eca2af768.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/681822ee831ebd2565c8d52eca2af768.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/681822ee831ebd2565c8d52eca2af768.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/681822ee831ebd2565c8d52eca2af768.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/681822ee831ebd2565c8d52eca2af768.svg#Poxast")format("svg");
}
@font-face {
font-family: "Subway Ticker";
src: url("https://db.onlinewebfonts.com/t/7dc316626726a6192011df8351950103.eot");
src: url("https://db.onlinewebfonts.com/t/7dc316626726a6192011df8351950103.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/7dc316626726a6192011df8351950103.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/7dc316626726a6192011df8351950103.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/7dc316626726a6192011df8351950103.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/7dc316626726a6192011df8351950103.svg#Subway Ticker")format("svg");
}
@font-face {
font-family: "Senor Saturno V1";
src: url("https://db.onlinewebfonts.com/t/c6ae7c2426a9df2a7e51da2f455bb68a.eot");
src: url("https://db.onlinewebfonts.com/t/c6ae7c2426a9df2a7e51da2f455bb68a.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/c6ae7c2426a9df2a7e51da2f455bb68a.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/c6ae7c2426a9df2a7e51da2f455bb68a.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/c6ae7c2426a9df2a7e51da2f455bb68a.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/c6ae7c2426a9df2a7e51da2f455bb68a.svg#Senor Saturno V1")format("svg");
}
@font-face {
font-family: "Academy Regular";
src: url("https://db.onlinewebfonts.com/t/4b1d0ee8fbe9a000f04e17038f7baa99.eot");
src: url("https://db.onlinewebfonts.com/t/4b1d0ee8fbe9a000f04e17038f7baa99.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/4b1d0ee8fbe9a000f04e17038f7baa99.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/4b1d0ee8fbe9a000f04e17038f7baa99.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/4b1d0ee8fbe9a000f04e17038f7baa99.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/4b1d0ee8fbe9a000f04e17038f7baa99.svg#Academy Regular")format("svg");
}
@font-face {
font-family: "PixelFlag Regular";
src: url("https://db.onlinewebfonts.com/t/8e377f1e5376f3ebebefb674e2449aa5.eot");
src: url("https://db.onlinewebfonts.com/t/8e377f1e5376f3ebebefb674e2449aa5.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/8e377f1e5376f3ebebefb674e2449aa5.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/8e377f1e5376f3ebebefb674e2449aa5.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/8e377f1e5376f3ebebefb674e2449aa5.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/8e377f1e5376f3ebebefb674e2449aa5.svg#PixelFlag Regular")format("svg");
}
@font-face {
font-family: "F14 Segment LED";
src: url("https://db.onlinewebfonts.com/t/303e245ee7159b39227d219e4f19dfbc.eot");
src: url("https://db.onlinewebfonts.com/t/303e245ee7159b39227d219e4f19dfbc.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/303e245ee7159b39227d219e4f19dfbc.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/303e245ee7159b39227d219e4f19dfbc.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/303e245ee7159b39227d219e4f19dfbc.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/303e245ee7159b39227d219e4f19dfbc.svg#F14 Segment LED")format("svg");
}
@font-face {
font-family: "TesseraTopaz8x16";
src: url("https://db.onlinewebfonts.com/t/f17d7184beb7967ffffdac2db2be3252.eot");
src: url("https://db.onlinewebfonts.com/t/f17d7184beb7967ffffdac2db2be3252.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/f17d7184beb7967ffffdac2db2be3252.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/f17d7184beb7967ffffdac2db2be3252.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/f17d7184beb7967ffffdac2db2be3252.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/f17d7184beb7967ffffdac2db2be3252.svg#TesseraTopaz8x16")format("svg");
}
@font-face {
font-family: "Crewniverse";
src: url("https://db.onlinewebfonts.com/t/9c3b9b699ec505de691a9184317793d8.eot");
src: url("https://db.onlinewebfonts.com/t/9c3b9b699ec505de691a9184317793d8.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/9c3b9b699ec505de691a9184317793d8.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/9c3b9b699ec505de691a9184317793d8.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/9c3b9b699ec505de691a9184317793d8.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/9c3b9b699ec505de691a9184317793d8.svg#Crewniverse")format("svg");
}
.portable-infobox .pi-secondary-background {
background: linear-gradient(to bottom, #1a3a08, #0a1a05);
border: 4px solid #000;
}
.pi-border-color {
border-color: #2d5a10;
border-width: 4px;
border-radius: 20px;
}
.portable-infobox .pi-image {
background: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.2) 6%, rgba(0, 0, 0, 0.2) 10%, transparent 10%, transparent 15%);
background-color: rgba(0, 0, 0, 0.2);
}
.portable-infobox .pi-title {
border-radius: 15px 15px 0 0;
border-width: 0 0 3px 0;
border-style: solid;
border-color: #2d0a18;
color: #ffaabf;
font-size: 25px !important;
font-family: Fredoka !important;
text-shadow: 2px 0 0 #2d0a18, -2px 0 0 #2d0a18, 0 2px 0 #2d0a18, 0 -2px 0 #2d0a18, 2px 2px 0 #2d0a18, -2px -2px 0 #2d0a18, -2px 2px 0 #2d0a18, 2px -2px 0 #2d0a18;
}
.portable-infobox .pi-header {
border-width: 3px 0 3px 0 !important;
border-style: solid!important;
border-color: #2d0a18!important;
color: #ffaabf;
font-size: 16px !important;
font-family: Fredoka !important ;
text-shadow: 1px 0px 0px #2d0a18, -1px 0 0 #2d0a18, 0 1px 0 #2d0a18, 0 -1px 0 #2d0a18, 1px 1px 0 #2d0a18, -1px -1px 0 #2d0a18, -1px 1px 0 #2d0a18, 1px -1px 0 #2d0a18;
}
#mw-site-navigation .sidebar-chunk, #mw-related-navigation .sidebar-chunk {
background-color: clear;
color: #aad066;
padding: 0.3em;
border: none;
font-family: "Raleway Bold", sans-serif;
}
#mw-site-navigation .sidebar-chunk a, #mw-related-navigation .sidebar-chunk a {
color: #ffaabf;
}
#mw-site-navigation .sidebar-chunk h3, #mw-related-navigation .sidebar-chunk h3 {
font-family: "Raleway Bold", sans-serif;
font-weight: bold;
text-transform: uppercase;
border: 0;
color: #4a8a1a;
border-bottom: #2d5a10 solid 1px;
}
#p-navigation, #p-Explore, #p-managewiki-sidebar-header, #p-STAFF, #p-boggio, #p-tb, #p-cactions, #p-pagemisc, #p-userpagetools, .mw-normal-catlinks, #p-birthday, #p-event, #p-content, #p-more_categories, #p-wiki_tools {
background-color: #2d0a18;
border-radius: 5px;
padding: 10px;
color: #ffaabf;
margin-bottom: 10px;
box-shadow: 0px 0px 3px 2px #88cc33;
}