genList function

void genList(
  1. File file
)

Implementation

void genList(File file) {
  const text = '''
/* list.css */

/* ===[ begin ]=== */

/*
  Title:                   List Design Style
  Influenced By:           http://www.simplebits.com/
  Created:                 2006-09-09
  Updated:                 2011-12-08
*/

  ul {
    list-style: none;
    padding: 2px;
    text-align: left;
  }

  li {
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 18px;
  }

  .link li {
    background: url(https://dl.dropbox.com/u/161496/dart/img/arrow-right.gif) no-repeat 0 50%;
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 18px;
  }

  .target li {
    background: url(https://dl.dropbox.com/u/161496/dart/img/target.gif) no-repeat 0 50%;
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 18px;
  }

/* ===[ end ]=== */
  ''';
  addText(file, text);
}