

I've been working on a cute little project this weekend... I really like the
Adopt-a-Censor Pandas and felt inspired to make my own set of very simple website content ratings! These are made to look like the ESRB warnings on video games. There are both singular .png graphics and larger ones with content descriptors. The intent with these is that you can add own specific warnings in the content descriptor box. See below for a couple examples:


Only current issue I'm having with it is that the content descriptors have some text spacing issues when you list more than two (I've found that playing with the padding-top CSS until it looks right does the trick but I'd like to find an easier way that doesn't involve too much user tweaking...). I'm also not quite content with the 8 in "18+" in the Adults Only graphic.
As you can see, I've made them in black as well as the brown tone I use on my website :3 Free to use, no credit needed.
Ratings in Black
E for Everyone
<div style="margin: 3px; position: relative; display: block; height: 93px; width: 225px;">
<img src="rating/blk/1.png" style="position: absolute; left: 0px;">
<div style="border: 3px solid black; height: 87px; width: 225px; background-color: white">
<div style="padding-left: 80px; padding-top: 4%; color: black; font-family: 'Arial';">
<p>Comic Mischief <br> Mild Lyrics</p>
</div>
</div>
</div>
E 10+
<div style="margin: 3px; position: relative; display: block; height: 93px; width: 225px;">
<img src="rating/blk/2.png" style="position: absolute; left: 0px;">
<div style="border: 3px solid black; height: 87px; width: 225px; background-color: white">
<div style="padding-left: 80px; padding-top: 4%; color: black; font-family: 'Arial';">
<p>Fantasy Violence <br> Mild Blood</p>
</div>
</div>
</div>
T for Teen
<div style="margin: 3px; position: relative; display: block; height: 93px; width: 225px;">
<img src="rating/blk/3.png" style="position: absolute; left: 0px;">
<div style="border: 3px solid black; height: 87px; width: 225px; background-color: white">
<div style="padding-left: 80px; padding-top: 4%; color: black; font-family: 'Arial';">
<p>Crude Humor<br> Violence</p>
</div>
</div>
</div>
M for Mature
<div style="margin: 3px; position: relative; display: block; height: 93px; width: 225px;">
<img src="rating/blk/4.png" style="position: absolute; left: 0px;">
<div style="border: 3px solid black; background-color: white; height: 87px; width: 225px;">
<div style="padding-left: 80px; padding-top: 4%; color: black; font-family: 'Arial';">
<p>Flashing Imagery<br>Sexual Themes</p>
</div>
</div>
</div>
Adults Only
<div style="margin: 3px; position: relative; display: block; height: 93px; width: 225px;">
<img src="rating/blk/5.png" style="position: absolute; left: 0px;">
<div style="border: 3px solid black; height: 87px; width: 225px; background-color: white">
<div style="padding-left: 80px; padding-top: 4% ; color: black; font-family: 'Arial';">
<p>Sexual Content <br> Anime Tiddies</p>
</div>
</div>
</div>
Ratings in Brown
E for Everyone
<div style="margin: 3px; position: relative; display: block; height: 93px; width: 225px;">
<img src="rating/1.png" style="position: absolute; left: 0px;">
<div style="border: 3px solid #965f24; height: 87px; width: 225px; background-color: white">
<div style="padding-left: 80px; padding-top: 4%; color: #965f24; font-family: 'Arial';">
<p>Comic Mischief <br> Mild Lyrics</p>
</div>
</div>
</div>
E 10+
<div style="margin: 3px; position: relative; display: block; height: 93px; width: 225px;">
<img src="rating/2.png" style="position: absolute; left: 0px;">
<div style="border: 3px solid #965f24; height: 87px; width: 225px; background-color: white">
<div style="padding-left: 80px; padding-top: 4%; color: #965f24; font-family: 'Arial';">
<p>Fantasy Violence <br> Mild Blood</p>
</div>
</div>
</div>
T for Teen
<div style="margin: 3px; position: relative; display: block; height: 93px; width: 225px;">
<img src="rating/3.png" style="position: absolute; left: 0px;">
<div style="border: 3px solid #965f24; height: 87px; width: 225px; background-color: white">
<div style="padding-left: 80px; padding-top: 4%; color: #965f24; font-family: 'Arial';">
<p>Crude Humor<br> Violence</p>
</div>
</div>
</div>
M for Mature
<div style="margin: 3px; position: relative; display: block; height: 93px; width: 225px;">
<img src="rating/4.png" style="position: absolute; left: 0px;">
<div style="border: 3px solid #965f24; background-color: white; height: 87px; width: 225px;">
<div style="padding-left: 80px; padding-top: 4%; color: #965f24; font-family: 'Arial';">
<p>Flashing Imagery<br>Sexual Themes</p>
</div>
</div>
</div>
Adults Only
<div style="margin: 3px; position: relative; display: block; height: 93px; width: 225px;">
<img src="rating/5.png" style="position: absolute; left: 0px;">
<div style="border: 3px solid #965f24; height: 87px; width: 225px; background-color: white">
<div style="padding-left: 80px; padding-top: 4% ; color: #965f24; font-family: 'Arial';">
<p>Sexual Content <br> Anime Tiddies</p>
</div>
</div>
</div>