Finaly style changes, removed ubuntu font because everyone isn't a fan
Added a couple more clues
This commit is contained in:
		@@ -11,8 +11,7 @@ html, body {
 | 
				
			|||||||
  color: black;
 | 
					  color: black;
 | 
				
			||||||
  background: white;
 | 
					  background: white;
 | 
				
			||||||
  line-height: 1.6;
 | 
					  line-height: 1.6;
 | 
				
			||||||
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
 | 
					  font-family: sans-serif;
 | 
				
			||||||
    Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
 | 
					 | 
				
			||||||
  font-size: 15px;
 | 
					  font-size: 15px;
 | 
				
			||||||
  text-rendering: optimizeLegibility;
 | 
					  text-rendering: optimizeLegibility;
 | 
				
			||||||
  -webkit-font-smoothing: antialiased;
 | 
					  -webkit-font-smoothing: antialiased;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -32,7 +32,7 @@ let outerTasks = [
 | 
				
			|||||||
  `Low five someone who has done Jiu-Jitsu with Max.`,
 | 
					  `Low five someone who has done Jiu-Jitsu with Max.`,
 | 
				
			||||||
  `High five someone who has played Frisbee with [Max|Grace].`,
 | 
					  `High five someone who has played Frisbee with [Max|Grace].`,
 | 
				
			||||||
  `Find someone who has done aerial with Grace.`,
 | 
					  `Find someone who has done aerial with Grace.`,
 | 
				
			||||||
  `Meet Max's Grandma.`,
 | 
					  `Meet Max's Great Aunt.`, // Remove if Marci is not at wedding
 | 
				
			||||||
  `Meet all of Max's and Grace's brothers.`,
 | 
					  `Meet all of Max's and Grace's brothers.`,
 | 
				
			||||||
  `Meet a Mingo manager. The Blue Mingo a truly memorable experience.`,
 | 
					  `Meet a Mingo manager. The Blue Mingo a truly memorable experience.`,
 | 
				
			||||||
  `Find [Max's|Grace's] best childhood friend.`,
 | 
					  `Find [Max's|Grace's] best childhood friend.`,
 | 
				
			||||||
@@ -46,16 +46,18 @@ let outerTasks = [
 | 
				
			|||||||
  `Count Grace's cousins.`,
 | 
					  `Count Grace's cousins.`,
 | 
				
			||||||
  `Meet Max's cousins.`,
 | 
					  `Meet Max's cousins.`,
 | 
				
			||||||
  `High five a child with consent.`,
 | 
					  `High five a child with consent.`,
 | 
				
			||||||
  `Do a [covert handshake|elaborate handshake] with someone who [runs|wore a tie|has cool hair].`,
 | 
					  `Do a [weird handshake|elaborate handshake] with someone who [runs|wore a tie|has cool hair].`,
 | 
				
			||||||
  `Find someone with [pets|a baby] and look at their pictures.`,
 | 
					  `Find someone with [pets|a baby] and look at their pictures.`,
 | 
				
			||||||
  `Find the wedding crasher.`,
 | 
					  `Find the wedding crasher.`,
 | 
				
			||||||
  `Catch up with someone you haven't seen in awhile`,
 | 
					  `Catch up with someone you haven't seen in awhile`,
 | 
				
			||||||
  `Learn Max's latest nerdy hobby.`,
 | 
					  `Learn Max's latest nerdy hobby.`,
 | 
				
			||||||
  `Find someone who has never been to Cooperstown before.`,
 | 
					  `Find someone who has never been to Cooperstown before.`,
 | 
				
			||||||
  `Find someone who is a [teacher|nurse].`,
 | 
					  `Find someone who is [a teacher|a nurse|works in Finance].`,
 | 
				
			||||||
  `Take a [joyful|goofy] selfie with [a friend|someone you just met] & send it to Max.`,
 | 
					  `Take a [joyful|goofy] selfie with [a friend|someone you just met] & send it to Max.`,
 | 
				
			||||||
  `Be the answer to someone else's clue.`,
 | 
					  `Be the answer to someone else's clue.`,
 | 
				
			||||||
 | 
					  `Find a bee keeper. Learn a bee fact.`,
 | 
				
			||||||
 | 
					  `Find someone who owns domesticated fowl and consumes their eggs.`,
 | 
				
			||||||
 | 
					  `Chat with someone who was born in [Montana|Turkey].`
 | 
				
			||||||
  ]
 | 
					  ]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const hardnessMap = {
 | 
					const hardnessMap = {
 | 
				
			||||||
@@ -152,7 +154,10 @@ function getTitle(){
 | 
				
			|||||||
  let text = 'Bingo'
 | 
					  let text = 'Bingo'
 | 
				
			||||||
  let rand = Math.floor(Math.random() * 100)
 | 
					  let rand = Math.floor(Math.random() * 100)
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
  if(rand > 85){
 | 
					  if(rand > 95){
 | 
				
			||||||
 | 
					    text = 'Blingo'
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  if(rand > 90 && rand <= 95){
 | 
				
			||||||
    text = 'Bingle'
 | 
					    text = 'Bingle'
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -235,7 +240,7 @@ onBeforeMount(() => {
 | 
				
			|||||||
  console.log('Inner Tasks: ' + innerTasks.length)
 | 
					  console.log('Inner Tasks: ' + innerTasks.length)
 | 
				
			||||||
  console.log('Outer Tasks: ' + outerTasks.length)
 | 
					  console.log('Outer Tasks: ' + outerTasks.length)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  const totalBoards = 200
 | 
					  const totalBoards = 150
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  for (var i = totalBoards - 1; i >= 0; i--) {
 | 
					  for (var i = totalBoards - 1; i >= 0; i--) {
 | 
				
			||||||
    boards.push(getBoardArray(i))
 | 
					    boards.push(getBoardArray(i))
 | 
				
			||||||
@@ -303,6 +308,7 @@ onBeforeMount(() => {
 | 
				
			|||||||
    right: 0;
 | 
					    right: 0;
 | 
				
			||||||
    bottom: 15px;
 | 
					    bottom: 15px;
 | 
				
			||||||
    margin: 0 10px;
 | 
					    margin: 0 10px;
 | 
				
			||||||
 | 
					    font-weight: bold;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  .board-title {
 | 
					  .board-title {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user