-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
68 lines (61 loc) · 1.03 KB
/
style.css
File metadata and controls
68 lines (61 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
body {
display: flex;
background-color: #5DBCA9;
height: 100vh;
width: 100vw;
justify-content: center;
align-items: center;
}
#game-area {
display: flex;
flex-direction: column;
height: 100vh;
width: 100vw;
/* justify-content: center; */
align-items: center;
}
#board {
display: flex;
flex-wrap: wrap;
height: 500px;
width: 500px;
justify-content: center;
align-items: center;
}
.box {
font-size: 7vh;
color: red;
height: 20vh;
width: 20vh;
margin: 5px;
border-radius: 20px;
border: none;
background-color: bisque;
}
#reset {
margin: 20px;
height: 5vh;
width: 10vw;
border-radius: 10px;
border: none;
font-size: 2.5vh;
color: white;
background-color: black;
}
.hide {
display: none;
}
#newGame {
margin: 10px;
height: 5vh;
width: 10vw;
border-radius: 10px;
border: none;
font-size: 2vh;
color: white;
background-color: black;
}
#winMsg {
font-size: 30px;
color: purple;
}