diff --git a/build/css/app.css b/build/css/app.css new file mode 100644 index 0000000..d726163 --- /dev/null +++ b/build/css/app.css @@ -0,0 +1,84 @@ +body { + font-family: 'Mallanna', sans-serif; +} +main div { + background-color: #0abab5; + height: 140px; + width: 140px; + margin: 1% 1% 1% 1%; + padding: 1% 1% 1% 1%; + font-size: 75px; + display: inline-block; + vertical-align: top; + transition-duration: 0.4s; +} + +main div:hover { + opacity: 0.5; +} + +#game, #score, td, h1, main div { + text-align: center; +} + +#score { + width: 100%; +} + +#score div{ + font-size: 15px; + display: inline-block; + margin: 0 30px 0 30px; +} + +#board, h1, h3 { + margin: auto; +} + +#board { + height: 500px; + width: 500px; +} + +h1 { + font-size: 75px; +} + +h3 { + font-size: 25px; +} + +th, td { + font-size: 20px; +} + +button { + background-color: white; + font-family: 'Mallanna', sans-serif; + font-size: 20px; + border: 3px solid black; + margin: 0 5px 10px 5px; + transition-duration: 0.4s; + width: 125px; +} + +button:hover { + background-color: black; + color: white; +} + +#clear { + border: 3px solid #99ffcd; +} + +#clear:hover { + background-color: #99ffcd; +} + +.win { + color: green; +} + +.lose { + color: red; +} diff --git a/build/index.html b/build/index.html index 00eb541..2aa0a71 100644 --- a/build/index.html +++ b/build/index.html @@ -3,8 +3,37 @@