Easy-to-use skins for works on Archive of Our Own.
Have an idea, but don't know what to do? Make an issue and I'll work with you to bring your idea to fruition.
Each skin below is built using the modular components listed. Descriptions of each component and how to use it are here.
- Generic theme: demo {images, skin-warning, book-paragraph, texting} (generic.css)
- Log in to AO3, go here, and click "Create Work Skin." Or, click here.
- Fill out the form. Name, description, etc.
- Copy the contents of the built skin (from the
latest release) to the big empty
CSS box.
Tip: If you only want some of the features, look for the headings enclosed by
/*
and*/
- they indicate what the following styles do. - Hit "Submit" at the bottom.
When drafting a work, select the skin you created above from the drop-down menu in the "Associations" box, under the collections, gifting, and series settings. Also, please add a link back to here in the notes for other people to see! It'll help other authors discover this skin.
Archive of Our Own runs your input through a sanitizer to make sure it's safe to share with the world. It enforces a number of rules, which can be found here.
Here are some quirks I've noticed:
- The only root elements allowed are paragraphs (
<p>
) and content divisions with a class attribute (<div class="somename">
). Everything else will be wrapped in a paragraph.
You're writing a story, not building a website. Regardless, when drafting in HTML, you should use an actual code editor. Visual Studio Code is lightweight and easy to use.
-
Image
<img>
tags should go inside a content division.This will work, but not quite right. It'll get wrapped in a paragraph tag.
<img src="..." />
This will work better:
<div class="_"> <img src="..." /> </div>