diff --git a/index.html b/index.html index f941425..bf5bb81 100644 --- a/index.html +++ b/index.html @@ -91,6 +91,15 @@ margin: .3em; line-height: 1.6em; } + + ol { + list-style: none; + padding-left: 10px; + } + + ol > li:before { + content: attr(seq) ". "; + } diff --git a/js/jquery.crossword.js b/js/jquery.crossword.js index 343a06e..a08c4eb 100644 --- a/js/jquery.crossword.js +++ b/js/jquery.crossword.js @@ -191,7 +191,7 @@ } // while we're in here, add clues to DOM! - $('#' + puzz.data[i].orientation).append('
  • ' + puzz.data[i].clue + '
  • '); + $('#' + puzz.data[i].orientation).append('
  •  ' + puzz.data[i].clue + '
  • '); } // Calculate rows/cols by finding max coords of each entry, then picking the highest diff --git a/js/script.js b/js/script.js index d6c6b48..8932b30 100644 --- a/js/script.js +++ b/js/script.js @@ -54,7 +54,7 @@ starty: 9 }, { - clue: "Type of ray emitted frm the sun", + clue: "Type of ray emitted from the sun", answer: "gamma", position: 16, orientation: "across", @@ -118,7 +118,7 @@ starty: 5 }, { - clue: "Emits a lout wailing sound", + clue: "Emits a loud wailing sound", answer: "siren", position: 11, orientation: "down",