! | Message from: ninturez0 |
![]() ► Show Spoiler We've got new fancy forum software, and a shiny new 48TB server. Apologies to whoever voted in that poll I made however long ago, but I had to take what was available, and this is it. comfy box 1st anniversary is on April 20th, 2022. This was not intentional, but I have the invoices from my hosting providers to prove it. To be honest, I expected to become bored with this site and let it die, I didn't even think I would have this website for a year when I first started it. This whole website started because I bought a stupid domain name on a discord call with a bunch of idiots, and then figured I might as well do something with it. Sure, its a tiny website, and posts are rarely made, but I've had too much fun and learned way too much shit while I've been doing this, so I plan to keep on doing this for as long as possible. I plan on officially relocating to https://comfybox.floofey.dog in the coming months. On 20/04/2022, at midnight UTC-8, new account registrations and the ability to post will be disabled. I'm not taking this old site down, for the sake of posterity. I'm still thinking of how to celebrate the anniversary of comfy box, but know that the celebrations will likely take place here, and not on the new forum. Or I might do both. Who knows. I might keep the chat open after the anniversary because why not. There is a very high chance of links in archive box breaking as I move all of our content to the new server. Thanks to everyone who has ever stumbled upon this humble little website. Including you. Thanks to everyone that has showed appreciation for my work, even though I really don't consider it "work". I don't know what the future holds for this website, but I know the future isn't looking good for the Internet as a whole. Social media is quickly becoming a weapon of mass destruction. The platforms that we rely on to host content are becoming more and more restrictive and sanitized. Advertising and marketing agencies show no signs of stopping until they know each and every thing about you, to sell you as much bullshit as possible. But most importantly, the long-term accessibility of information is hardly even considered. I mean, fuck it, downloading content for personal use isn't even a thought that crosses the minds of many. Our shared cultures and history are NOT safe in the hands of the faceless, colossal, uncaring beasts of corporations that dominate the landscape of the Internet, and neither are you. We stand at the edge of losing decades of human history. We stand at the edge of losing the freedom to exchange information and ideas freely with each other. We will lose, quite frankly, everything, if we become complacent. will you do what must be done? - ninturez0 (´・ω・`) ♥♥♥♥♥ |
♫•*¨*•.¸¸♪
~ welcome to comfy box ~
♫•*¨*•.¸¸♪


(´・ω・`)
>just make your own website lol


please report all site bugs/problems to [email protected]
BBcodes
bbcodes
You are highly encouraged to shit up your posts with BBcodes.
PHPbb's default BBcodes don't require any explanation on how to use. However, I've made more than a few custom BBcodes, and they're super fucking obnoxious. Do you have an idea for a fun BBcode? send that shit to me and i'll put it on the site
hr
Horizontal rule. Self explanatory.
Code:
► Show Spoiler
Code: Select all
[hr={REGEXP=/^dashed$/i;optional} #autoClose=true][/hr]
Code: Select all
<xsl:choose>
<xsl:when test="@hr">
<hr class="dashed" />
</xsl:when>
<xsl:otherwise>
<hr />
</xsl:otherwise>
</xsl:choose>
► Show Spoiler
button
Turn your links into fancy buttons.
Code:
► Show Spoiler
Code: Select all
[button={CHOICE=1,2;optional} url={URL;optional} #disableAutoLineBreaks=true #preventLineBreaks=true #trimFirstLine=true]{TEXT}[/button]
Code: Select all
<xsl:choose>
<xsl:when test="@url">
<a class="button{@button}" href="{@url}"><xsl:apply-templates/></a>
</xsl:when>
<xsl:otherwise>
<span class="button"><xsl:apply-templates/></span>
</xsl:otherwise>
</xsl:choose>
► Show Spoiler
Code: Select all
[button=none url=https://board.floofey.dog]owo[/button]
owo
Code: Select all
[button=1 url=https://board.floofey.dog]uwu[/button]
uwu
Code: Select all
[button=2 url=https://board.floofey.dog][b][i][u][color=#FF0000][size=150]owu[/size][/color][/u][/i][/b][/button]
owu
anchor
An anchor link is a link that helps to link to the content on the same page that has an anchor attached.
Code:
► Show Spoiler
Code: Select all
[anchor name={IDENTIFIER} visible={CHOICE=yes;optional}]{TEXT}[/anchor]
Code: Select all
<span><span id="{@name}" style="display: block; position: relative; top: -0px;"></span><span style="vertical-align:top;">{TEXT}</span><xsl:if test="@visible='yes'"><a href="#{@name}"><i class="icon fa-link" style="font-size:11px; color:#368ad2; position: relative; top: -4px; padding-left: 4px; padding-right: 4px" aria-hidden="true"></i></a></xsl:if></span>
► Show Spoiler
spoil_inline
Spoilers, but they're buttons.
Code:
► Show Spoiler
Code: Select all
[spoil_inline={INTTEXT;defaultValue=Spoiler}]{TEXT}[/spoil_inline]
Code: Select all
<span class="spoiler-inline-js"><input type="button" value="{INTTEXT}" class="button2" style="font-size:12px; padding: 0px 3px; border-radius: 2px;" onclick="nextSibling.style.display = nextSibling.style.display==='none' ? 'block' : 'none';" /><div style="margin-top: 3px; padding: 5px; border: 1px dotted darkgray; display: none;">{TEXT}</div></span>
► Show Spoiler
rainbow
Animated gradient.
Code:
► Show Spoiler
Code: Select all
[rainbow]{TEXT}[/rainbow]
Code: Select all
<span class="animated_rainbow_1">{TEXT}</span>
<style>
.animated_rainbow_1 {
font-weight: bold;
background-image: -webkit-linear-gradient(-45deg, rgba(255,0,0,1) 0%,rgba(252,147,0,1) 3%,rgba(255,242,0,1) 6%,rgba(0,255,29,1) 9%,rgba(0,255,250,1) 12%,rgba(0,123,255,1) 15%,rgba(152,0,255,1) 18%,rgba(255,0,0,1) 21%,rgba(250,255,0,1) 24%,rgba(0,255,127,1) 27%,rgba(0,255,246,1) 30%,rgba(0,55,255,1) 33%,rgba(157,0,255,1) 36%,rgba(255,0,0,1) 39%,rgba(252,164,0,1) 42%,rgba(250,255,0,1) 45%,rgba(0,255,67,1) 48%,rgba(0,242,255,1) 51%,rgba(0,80,255,1) 54%,rgba(233,0,255,1) 57%,rgba(255,0,0,1) 60%,rgba(252,147,0,1) 63%,rgba(250,255,0,1) 66%,rgba(0,255,55,1) 69%,rgba(0,246,255,1) 72%,rgba(0,76,255,1) 75%,rgba(255,0,246,1) 78%,rgba(255,0,0,1) 81%,rgba(252,147,0,1) 84%,rgba(255,255,0,1) 87%,rgba(42,255,0,1) 90%,rgba(0,242,255,1) 93%,rgba(0,4,255,1) 96%,rgba(255,0,255,1) 98%,rgba(255,0,4,1) 100%);
-webkit-animation: animatedBackground_a 5s linear infinite alternate;
-webkit-background-clip: text;
-webkit-text-fill-color: #0000;
background-clip: text;
}
@keyframes animatedBackground_a {
0% { background-position: 0 0 }
100% { background-position: -500px 0 }
}
</style>
► Show Spoiler
rainbow_alt
Color cycle.
Code:
► Show Spoiler
Code: Select all
[rainbow_alt]{TEXT}[/rainbow_alt]
Code: Select all
<span class="animated_rainbow_2">{TEXT}</span>
<style>
.animated_rainbow_2 {
font-weight: bold;
-webkit-animation: animatedBackground_b 5s linear infinite alternate;
position: relative;
}
@keyframes animatedBackground_b{
0% {color: #ff8b00}
10% {color: #e8ff00}
20% {color: #5dff00}
30% {color: #00ff2e}
40% {color: #00ffb9}
50% {color: #00b9ff}
60% {color: #002eff}
70% {color: #5d00ff}
80% {color: #e800ff}
90% {color: #ff008b}
100% {color: #ff0000}
}
</style>
► Show Spoiler
transform_2d
Here's where the fun starts. Scale, rotate, move, and skew your text.
Code:
► Show Spoiler
Code: Select all
[transform_2d={scaleX},{scaleY},{rotate},{translateX},{translateY},{skewX},{skewY}]{TEXT}[/transform_2d]
Code: Select all
<span style="position: absolute; transform: scale({INTTEXT1},{INTTEXT2}) rotate({INTTEXT3}deg) translate({INTTEXT4}px, {INTTEXT5}px) skew({INTTEXT6}deg, {INTTEXT7}deg);">{TEXT}</span>
► Show Spoiler
Code: Select all
[size=200][transform_2d=2,1,0,30,0,0,0]very wide text[/transform_2d][/size]
very wide text
Code: Select all
[size=200][transform_2d=1,2,0,0,0,0,0]very long text[/transform_2d][/size]
very long text
Code: Select all
[transform_2d=3,1.5,45,0,0,0,0][img]https://board.floofey.dog/styles/ne-blackgreen/theme/images/logo.gif[/img][/transform_2d]

transform_3d
Same as above, with 3D controls.
Code:
► Show Spoiler
Code: Select all
[transform_3d={rotateX},{rotateY},{rotateZ},{perspective},{transform-originX},{transform-originY},{transform-originZ}]{TEXT}[/transform_3d]
Code: Select all
<span style="position: absolute;perspective: {SIMPLETEXT4}px;-webkit-perspective: {SIMPLETEXT4}px; transform: rotateX({SIMPLETEXT1}deg) rotateY({SIMPLETEXT2}deg) rotateZ({SIMPLETEXT3}deg); transform-origin: {SIMPLETEXT5}% {SIMPLETEXT6}% {SIMPLETEXT7}px;">{TEXT}</span>
► Show Spoiler
Code: Select all
[transform_3d=0,-50,0,500,50,50,150][size=200]aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa[/size][/transform_3d]
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
Code: Select all
[transform_3d=0,150,180,130,52,52,25][size=200][rainbow]i am upside down and backwards[/rainbow][/size][/transform_3d]
i am upside down and backwards
bold_shadow
Self explanatory
Code:
► Show Spoiler
Code: Select all
[bold_shadow={COLOR1},{COLOR2}]{TEXT}[/bold_shadow]
Code: Select all
<span style="font-weight: strong;color: {COLOR1};text-shadow: {COLOR2} 6px 4px 1px;">{TEXT}</span>
► Show Spoiler
gradient_text
Fancy two color gradients for your text.
Code:
► Show Spoiler
Code: Select all
[gradient_text={COLOR1},{COLOR2}]{TEXT}[/gradient_text]
Code: Select all
<span style="background-image:linear-gradient(0deg, {COLOR1}, {COLOR2});color:#0000;-webkit-background-clip:text;background-clip:text;font-weight:bold;display:inline-block;\" >{TEXT}</span><style>#css-flame-text { background-image: linear-gradient(0deg, {COLOR1}, {COLOR2}); color: #0000; -webkit-background-clip: text; background-clip: text; font-weight: bold; display: inline-block;}</style>
► Show Spoiler
Code: Select all
[gradient_text=#40BFFF,#4000BF][size=400](´・ω・`)[/size][/gradient_text]
(´・ω・`)
anim_pulse
Makes your text grow and shrink.
Code:
► Show Spoiler
Code: Select all
[anim_pulse={duration},{size}]{TEXT}[/anim_pulse]
Code: Select all
<span style="-webkit-animation-duration:{SIMPLETEXT1}s;animation-duration:{SIMPLETEXT1}s;-webkit-animation-fill-mode:both;animation-fill-mode:both;animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite;-webkit-animation-name:pulse;animation-name:pulse;position:absolute;scale:{SIMPLETEXT2}" >{TEXT}</span><style>#animation-pulse {position: relative;} @-webkit-keyframes pulse {0% { -webkit-transform: scale(1); } 50% { -webkit-transform: scale(0); } 100% { -webkit-transform: scale(1); } } @keyframes pulse {0% { transform: scale(1); }50% { transform: scale(0); }100% { transform: scale(1); } } .pulse {-webkit-animation-name: pulse;animation-name: pulse;}</style>
► Show Spoiler
Code: Select all
[anim_pulse=0.5,2]wow[/anim_pulse]
wow
Code: Select all
[anim_pulse=0.25,4][img]https://board.floofey.dog/styles/ne-blackgreen/theme/images/logo.gif[/img][/anim_pulse]
