Fixing The TVDB

TheTVDB does something it called "niftycorners", it might have been nifty once but not any more.

niftycorners tries to round corners in HTML, not CSS, it uses 8 elements to try and round each corner... well CSS can do this, with a few more than 8 pixels.

Using Stylus we can apply our own CSS to the site, first thing is to block niftycorners and use CSS to do it properly.

.niftycorners {
	visibility: hidden;
}

.titlesection,
.section {
	border-radius: 10px;
}

I'm feeling better already.

Cj Malone on