Add some flair to your 8chan using CSS:
/ Decrease RED TEXT size and recolour to Hot Pink for teh lulz. /
span.heading {
color: #ff00f0; / Hot Pink /
font-size: 6pt; / 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 1 - 10+ /
transition: all 233ms;
/ Permalink - Adds a gradient around image borders: http://colorzilla.com/gradient-editor/#f3c5bd+0,e86c57+50,ea2803+51,ff6600+75,c72200+100;Red+Gloss /
background: rgb(243,197,189); / Old browsers /
background: -moz-linear-gradient(top, rgba(243,197,189,1) 0%, rgba(232,108,87,1) 50%, rgba(234,40,3,1) 51%, rgba(255,102,0,1) 75%, rgba(199,34,0,1) 100%); / FF3.6-15 /
background: -webkit-linear-gradient(top, rgba(243,197,189,1) 0%,rgba(232,108,87,1) 50%,rgba(234,40,3,1) 51%,rgba(255,102,0,1) 75%,rgba(199,34,0,1) 100%); / Chrome10-25,Safari5.1-6 /
background: linear-gradient(to bottom, rgba(243,197,189,1) 0%,rgba(232,108,87,1) 50%,rgba(234,40,3,1) 51%,rgba(255,102,0,1) 75%,rgba(199,34,0,1) 100%); / W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ /
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3c5bd', endColorstr='#c72200',GradientType=0 ); / IE6-9 /
/* Adds a radiused border, customize as needed
-webkit-border-radius: 12px 12px 12px 12px;
border-radius: 12px 12px 12px 12px;
}
.post-image:hover {
opacity: 1; / Can be between .01 - 1 /
filter: blur(0px); / Can be 1 - 10+ /
transition: all 89ms;
}