Skip to content

Commit 92982a6

Browse files
author
Ken C
committed
added background image and adjusted spacing
1 parent 742bdc7 commit 92982a6

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

src/App.css

+12-6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
text-align: center;
33
margin-top: 50px;
44
color: whitesmoke;
5+
padding-top: 60px;
56
}
67

78
.status {
@@ -11,14 +12,15 @@
1112

1213
.board {
1314
display: grid;
14-
grid-template-columns: repeat(3, 100px);
15+
grid-template-columns: repeat(3, 200px);
1516
grid-gap: 5px;
1617
justify-content: center;
18+
padding-top: 30px;
1719
}
1820

1921
.square {
20-
width: 100px;
21-
height: 100px;
22+
width: 200px;
23+
height: 200px;
2224
display: flex;
2325
align-items: center;
2426
justify-content: center;
@@ -32,15 +34,15 @@
3234
}
3335

3436
.square:hover {
35-
background-color: aquamarine;
37+
background-color: lightskyblue;
3638
}
3739

3840
.square:active {
3941
background-color: black;
4042
}
4143
.reset {
4244
font-size: 16px;
43-
margin-top: 20px;
45+
margin-top: 30px;
4446
padding: 10px 20px;
4547
cursor: pointer;
4648
background-color: whitesmoke;
@@ -52,9 +54,13 @@
5254
}
5355

5456
.reset:hover {
55-
background-color: aquamarine;
57+
background-color: lightskyblue;
5658
}
5759

5860
body {
5961
background-color: black;
62+
background-image: url("purple-wave.jpg");
63+
background-size: contain;
64+
background-repeat: no-repeat;
65+
background-size: 100%; /* Fills the container completely */
6066
}

src/App.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const App = () => {
3030
? `Winner: ${winner}`
3131
: squares.every((square) => square) // Check if all squares are filled
3232
? 'Tie'
33-
: `Next player: ${xIsNext ? 'X' : 'O'}`;
33+
: `Player Turn: ${xIsNext ? 'X' : 'O'}`;
3434

3535
const handleClick = (i) => {
3636
if (squares[i] || winner) {
@@ -51,7 +51,7 @@ const App = () => {
5151

5252
return (
5353
<div className="App">
54-
<div className="status">{status}</div>
54+
<div className="status"><b>{status}</b></div>
5555
<div className="board">
5656
{squares.map((value, index) => (
5757
<div

src/circut-board.jpg

61.3 KB
Loading

src/organ-eye-owl.jpg

959 KB
Loading

src/purple-wave.jpg

1.17 MB
Loading

0 commit comments

Comments
 (0)