Comfy Bread
Props to ComfyAnon for the CSS. Watch the .gif.
— Cut and paste everything below this line —
/ Filters any name other than [left empty], Q, and Ron(CodeMonkey) /
[Enter as a Name filter] ^(?!(Anonymous$|Q$|Ron$))
/ Filters just the clowns limbic recon + sigil deployment tool, AKA cr[e]epbot /
[Enter as a Name filter] ([])=,e
/ Filters any combination of upper and lower case letters eg. re: milts' spam /
[Enter as a Comment filter] [Hh][Oo][Ll][Oo][Cc][Aa][Uu][Ss][Tt]
[Enter as a Comment filter] [Zz][Ii][Oo][Nn]
[Enter as a Comment filter] ((([Qq])))
[Enter as a Comment filter] \b[Aa][Ii][\n-\,]
[Enter as a Comment filter] [Hh][Uu][Mm][Aa][Nn][\ns]
[Enter as a Comment filter] \b[Dd]aniel
Theme | Custom CSS Basics:
[code]/ Decrease RED TEXT size and recolour to Hot Pink for teh lulz. /
span.heading {
color: #ff00f0; / Hot Pink /
font-size: 4pt; / Real small, default is 11pt /
}
/ Add a blur and opacity change to images that fades-to-normal when moused over /
.post-image {
opacity: .2; / Can be between .01 - 1 /
filter: blur(5px); / Can be 0 - 10+ /
transition: all 233ms;
}
.post-image:hover {
opacity: 1; / Can be between .01 - 1 /
filter: blur(1px); / Can be 0 - 10+ /
transition: all 89ms;
}