diff --git a/index.html b/index.html
index a63aeb1..3b1bbf9 100644
--- a/index.html
+++ b/index.html
@@ -3,6 +3,7 @@
Math Boggle
+
diff --git a/math-boggle/GameBoard.js b/math-boggle/GameBoard.js
index 4a88447..30bb5a7 100644
--- a/math-boggle/GameBoard.js
+++ b/math-boggle/GameBoard.js
@@ -3,7 +3,43 @@ import React from 'react'
class Operands extends React.Component {
render(){
return (
- Operands
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
)
}
}
@@ -11,7 +47,16 @@ class Operands extends React.Component {
class Operators extends React.Component {
render(){
return (
- Operators
+
+
+
+
+
+
+
+
+
+
)
}
}
diff --git a/math-boggle/styles.css b/math-boggle/styles.css
new file mode 100644
index 0000000..62e8f85
--- /dev/null
+++ b/math-boggle/styles.css
@@ -0,0 +1,67 @@
+body {
+ background-color: #272822;
+ color: white;
+ font-family: Courier New,Courier,Lucida Sans Typewriter,Lucida Typewriter,monospace;
+}
+
+.button {
+ width: 60px;
+ height: 60px;
+ text-decoration: none;
+ border: 1px solid black;
+ font-size: 18px;
+ font-family: Courier New,Courier,Lucida Sans Typewriter,Lucida Typewriter,monospace;
+}
+
+.button:focus {
+ outline: 0;
+}
+
+
+
+
+.operands .button {
+ background-color: #e0e0e0;
+ color: black;
+}
+
+.operands .button:hover {
+ background-color: #ccc;
+}
+
+.operands .button:focus {
+ outline: 0;
+}
+
+.operands .button:disabled {
+ background-color: #ccc;
+}
+
+
+
+
+
+.operators .button {
+ background-color: #f5923e;
+ color: white;
+ font-size: 24px;
+}
+
+.operators .button:hover {
+ background-color: #c2732f;
+}
+
+
+
+
+
+.equals {
+ color: white;
+ background-color: #7b9a38;
+ width: 300px;
+ font-size: 32px;
+}
+
+.equals:hover {
+ background-color: #688035;
+}
\ No newline at end of file