>>207
The scroll and record don't spin because they're over 25KB, but they'll still animate once applied to the CSS theme.
All you have to do for those two items is to add them to your theme. They would look like this...
If the code syntax is broken, syntax probably isn't enabled on this board
[code]
/* [DOCUMENTS] */
/* For downloadable document formats such as txt, pdf, epub, etc. Original site thumbnail size is 150px. */
img[src="/genericThumb.png"] {
display: block;
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url("/.media/81f7d75cb0e93dcc8666d82518694c32dc148ffc1bf283902581687625f5e72a9.png");
background-repeat: no-repeat;
width: 120px;
height: 100px;
padding-left: 120px;
}
/* [AUDIO] (Only appears when uploaded audio file(s) lack an embedded album artwork cover. */
/* For audio formats such as mp3, flac, opus, ogg, etc. Original site thumbnail size is 128px. */
img[src="/audioGenericThumb.png"] {
display: block;
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url("/.media/866bbf433e5bde20c935caa49d515bd2f15ac9fc7d48f8cd6f0b2487516d501e3.png");
background-repeat: no-repeat;
width: 128px;
height: 128px;
padding-left: 128px;
}
[/code]
There may be an extra 8 added to the beginning of the url hash, it seems to be a bug. Just remove it before adding it to your theme.