Behold! I’ve tweaked the CSS Stylesheet again. This time I switched back to the free Apostrophe theme. I made each ‘format post’ a different eye-candy color! Oh! That’s what I had in ‘mind’. For now, I’m not bored. Below is the updated CSS Stylesheet:
[code language=”css”]body {
text-align: inherit;
}
body:after {
content: "© Copyright 2006-2016 – FlynnsPaws – All ‘rights’ reserved – Thank you";
}
body:after {
color:red;
font-size:x-small;
}
.site-header {
background-color:inherit;
}
.site-title, .site-description {
text-align: right;
}
.format-aside .apostrophe-nothumb, .entry-format.format-aside {background-color:#6666ff;}
.format-audio .apostrophe-nothumb, .entry-format.format-audio {background-color:#e066ff;}
.format-chat .apostrophe-nothumb, .entry-format.format-chat {background-color:#ffc266;}
.format-gallery .apostrophe-nothumb, .entry-format.format-gallery {background-color:#ff6666;}
.format-image .apostrophe-nothumb, .entry-format.format-image {background-color:#ff66ff;}
.format-link .apostrophe-nothumb, .entry-format.format-link {background-color:#66ff99;}
.format-quote .apostrophe-nothumb, .entry-format.format-quote {background-color:#ccff66;}
.format-standard .apostrophe-nothumb, .entry-format.format-standard {background-color:#ffff66;}
.format-status .apostrophe-nothumb, .entry-format.format-status {background-color:#66ffd9;}
.format-video .apostrophe-nothumb, .entry-format.format-video {background-color:#ff8566;}
[/code]