sparkles

This commit is contained in:
patriciarealini 2015-09-04 16:13:41 -07:00
parent 5a613a0234
commit a417d94349
4 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,4 @@
# Tarot Project
# Tarot Project
This site produces tarot card readings for the horseshoe spread to help you find a new perspective on a specific problem.

View File

@ -12,4 +12,5 @@ These are the tasks I am setting out for myself on this project. This list will
- [ ] Build around the app a site design.
- [ ] Make sure all the design is responsive.
- [ ] Change deck image, illustration of Pamela Colman Smith dealing cards?
- [ ] Arrange for the cards dealt to be positioned in an arch on the center of the page
- [ ]

View File

@ -94,7 +94,7 @@ cards[77] = "77_King_of_Swords";
// create function to randomly select a number that corresponds with the number of cards available. Used Math.floor to remove remainder from the random calculation, found that i could never get the King Of Swords because 78 was an impossibility. opted for math.round in order to achieve that possibility.
var random = function() {
return Math.round(Math.random() * (78-cardsDealt));
return Math.round(Math.random() * (77-cardsDealt));
};
//create a function to remove a card once it has been used. This is a basic way to avoid duplicates. Implies that to deal we must refresh the page.

View File

@ -42,7 +42,7 @@ h1, h2 {
}
.buttons input {
margin-bottom: 20px;
background-color: #000000;
background-color: transparent;
font-family: "Helvetica Neue", Helvetica, sans-serif;
font-weight: 100;
font-size: 20px;