Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Swell
This discussion has been closed.
Comments
So if you had your 2 sections set up to include something like this:
<body class="redsection"> <h1>Red Section</h1>
and
<body class="bluesection"> <h1>Blue Section</h1>
you could style their contents using minimal changes to your css, and no extra markup on your divs etc....
body.redsection h1 { color: red; } body.bluesection h1 { color: blue; }
Then you would just need a Swell extension to automate this?