color_samples.html 664 B

12345678910111213141516171819
  1. <div style="background: #fff; padding: 20px;">
  2. <h1>Color Samples</h1>
  3. {{#each colors}}
  4. <div style="background: {{.}}; width: 100px; height: 80px; float: left; margin: 20px; color: #fff; text-align: center;">{{.}}</div>
  5. {{/each}}
  6. <p style="clear: both;">&nbsp;</p>
  7. {{#each colors}}
  8. <div style="width: 960px;" class="clearfix">
  9. <div style="background: {{.}}; width: 100px; height: 80px; float: right; color: #fff; text-align: center;">{{.}}</div>
  10. <div class="site-name" style="font-size: 5.25em; float: left;">
  11. Great <b style="color: {{.}};">Something</b>
  12. </div>
  13. <div>The color code is {{.}}</div>
  14. </div>
  15. {{/each}}
  16. </div>