diff --git a/css/yahtzee.css b/css/yahtzee.css
index f14eef2..6118652 100644
--- a/css/yahtzee.css
+++ b/css/yahtzee.css
@@ -1,3 +1,9 @@
+* {
+ font-family: helvetica, sans-serif;
+ font-weight: 300;
+ font-size: 12px;
+}
+
.possibility {
}
@@ -43,23 +49,111 @@
.keep {
visibility: hidden;
+ color: black;
}
.trash {
visibility: hidden;
+ color: #ba2323;
}
.score {
font-family: "Zeyada", verdana, arial, helvetica, cursive;
- color: blue;
+ color: black;
font-size: 2em;
font-weight: bold;
text-align: center;
}
.score.trashed {
- color: red;
+ color: #ba2323;
}
.progress {
- margin-bottom: 0;
+ height: 20px;
+ background-color: white;
+
+}
+
+dt, th {
+ font-weight: bold;
+}
+
+#banner {
+ text-align: center;
+ width: 100%;
+ padding: 15px;
+ background-color: white;
+ margin-top: 0px;
+ margin-left: 0px;
+ margin-bottom: 15px;
+ box-shadow: 0px 0px 5px black;
+}
+
+h1 {
+ color: black;
+ font-family: 'Fredericka the Great', helvetica, sans-serif;
+ font-size: 40px;
+}
+
+td, th {
+ padding: 10px;
+ width: 20%;
+ height: auto;
+}
+
+dd {
+ margin-left: 0px;
+}
+
+#scorePanel {
+ border: 1px solid black;
+ padding: 10px;
+}
+
+table {
+ border: 1px solid black;
+ table-layout: fixed;
+ width: 90%;
+
+}
+
+#btn a{
+ height: 30px;
+ width: 60px;
+ background-color: #ba2323;
+ color: white;
+ font-weight: bold;
+ padding: 10px;
+ border-radius: 5px;
+}
+
+#btn a:hover{
+ background-color: #fcb51b;
+ text-decoration: none;
+ color: black;
+}
+
+body {
+ background-color: #215fc4;
+}
+
+.container {
+ background-color: white;
+ padding: 40px;
+ box-shadow: 0px 0px 5px black;
+ margin-bottom: 20px;
+ min-width: 95%;
+
+}
+
+th {
+ background-color: #fcb51b;
+}
+
+#upperScore, #lowerScore, #bonus, #totalScore {
+ font-family: "Zeyada", verdana, arial, helvetica, cursive;
+ color: black;
+ font-size: 2em;
+ font-weight: bold;
+ text-align: center;
}
diff --git a/index.html b/index.html
index 2186a8e..80f1e47 100644
--- a/index.html
+++ b/index.html
@@ -1,3 +1,4 @@
+
-
+
@@ -21,367 +22,439 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
+
+
+
-
-
-
-
-
-
-
-
-
- Launch
-
-
-
Launch
-
-
- - Three of a kind
- - Three dice showing the same face
- - Sum of all dice
- - Four of a kind
- - Four dice showing the same face
- - Sum of all dice
- - Full
- - A three-of-a-kind and a pair
- - 25 points
- - Small straight
- - Four sequential dice
- - 30 points
- - Large straight
- - Five sequential dice
- - 40 points
- - Yahtzee
- - Five dice showing the same face
- - 50 points
- - Chance
- - Sum of all dice
-
-
-
-
-
- | Upper grid score |
- |
-
-
- | Bonus |
- |
-
-
- | Lower grid score |
- |
-
-
- | Total |
- |
-
-
+
+
FEBBWEISS' YAHTZEE!
+
+
+
+
+
+
+
+ - Three of a kind
+ - Three dice showing the same face (Ex. Three 3's)
+ - Scoring: Sum of all dice
+
+ - Four of a kind
+ - Four dice showing the same face (Ex. Four 5's)
+ - Scoring: Sum of all dice
+
+ - Full House
+ - A three-of-a-kind and a pair (Ex. Three 1's and Two 4's)
+ - Scoring: 25 points
+
+ - Small straight
+ - Four sequential dice (Ex. 2, 3, 4, 5)
+ - Scoring: 30 points
+
+ - Large straight
+ - Five sequential dice (Ex. 2, 3, 4, 5, 6)
+ - Scoring: 40 points
+
+ - Yahtzee
+ - Five dice showing the same face (Ex. Five 4's)
+ - Scoring: 50 points
+
+ - Chance
+ - Scoring: Sum of all dice
+
+
+
+
+
+
+
+
+
+
+
+
+ | Combination |
+
+ Score
+ |
+ Options |
+
+
+
+
+
+ |
+
+ Ones
+
+ |
+
+
+ |
+
+ Keep
+ Trash
+ |
+
+
+
+ |
+
+ Twos
+
+ |
+
+
+ |
+
+ Keep
+ Trash
+ |
+
+
+
+ |
+
+ Threes
+
+ |
+
+
+ |
+
+ Keep
+ Trash
+ |
+
+
+
+ |
+
+ Fours
+
+ |
+
+
+ |
+
+ Keep
+ Trash
+ |
+
+
+
+ |
+
+ Fives
+
+ |
+
+
+ |
+
+ Keep
+ Trash
+ |
+
+
+
+ |
+
+ Sixes
+
+ |
+
+
+ |
+
+ Keep
+ Trash
+ |
+
+
+ |
+
+ Upper Score
+
+ |
+
+
+
+ |
+
+
+
+
+
+
+
+
+
+
+
+ Dice Roll #:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ | Combination |
+ Probability |
+
+ Score
+ |
+ Options |
+
+
+
+
+
+ |
+
+ Three of a kind
+
+ |
+
+
+ |
+
+
+ |
+
+ Keep
+ Trash
+ |
+
+
+
+ |
+
+ Four of a kind
+
+ |
+
+
+ |
+
+
+ |
+
+ Keep
+ Trash
+ |
+
+
+
+ |
+
+ Full House
+
+ |
+
+
+ |
+
+
+ |
+
+ Keep
+ Trash
+ |
+
+
+
+ |
+
+ Small Straight
+
+ |
+
+
+ |
+
+
+ |
+
+ Keep
+ Trash
+ |
+
+
+
+ |
+
+ Large Straight
+
+ |
+
+
+ |
+
+
+ |
+
+ Keep
+ Trash
+ |
+
+
+
+ |
+
+ Yahtzee
+
+ |
+
+
+ |
+
+
+ |
+
+ Keep
+ Trash
+ |
+
+
+
+ |
+
+ Chance
+
+ |
+
+
+ |
+
+
+ |
+
+ Keep
+ Trash
+ |
+
+
+ |
+
+ Lower Score
+
+ |
+
+
+ |
+
+
+ |
+
+
+
+
+
+
+
+
+
+ | Final Score |
+
+
+ | Upper grid score |
+ |
+
+
+ | Bonus |
+ |
+
+
+ | Lower grid score |
+ |
+
+
+ | Total |
+ |
+
+
+
+
-
-
-
-
-
- | Combinaison |
-
- Score
- |
- |
-
-
-
-
-
- |
-
- One
-
- |
-
-
- |
-
- Keep
- Trash
- |
-
-
-
- |
-
- Two
-
- |
-
-
- |
-
- Keep
- Trash
- |
-
-
-
- |
-
- Three
-
- |
-
-
- |
-
- Keep
- Trash
- |
-
-
-
- |
-
- Four
-
- |
-
-
- |
-
- Keep
- Trash
- |
-
-
-
- |
-
- Five
-
- |
-
-
- |
-
- Keep
- Trash
- |
-
-
-
- |
-
- Six
-
- |
-
-
- |
-
- Keep
- Trash
- |
-
-
-
-
-
-
-
-
- | Combinaison |
- Probability |
-
- Score
- |
- |
-
-
-
-
-
- |
-
- Three of a kind
-
- |
-
-
- |
-
-
- |
-
- Keep
- Trash
- |
-
-
-
- |
-
- Four of a kind
-
- |
-
-
- |
-
-
- |
-
- Keep
- Trash
- |
-
-
-
- |
-
- Full
-
- |
-
-
- |
-
-
- |
-
- Keep
- Trash
- |
-
-
-
- |
-
- Small straight
-
- |
-
-
- |
-
-
- |
-
- Keep
- Trash
- |
-
-
-
- |
-
- Large straight
-
- |
-
-
- |
-
-
- |
-
- Keep
- Trash
- |
-
-
-
- |
-
- Yahtzee
-
- |
-
-
- |
-
-
- |
-
- Keep
- Trash
- |
-
-
-
- |
-
- Chance
-
- |
-
-
- |
-
-
- |
-
- Keep
- Trash
- |
-
-
-
-
-
-
-
-
-
+
+