File tree 2 files changed +12
-5
lines changed
2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 9
9
< title > Tic Tac Toe</ title >
10
10
</ head >
11
11
< body >
12
- < div class ="cross "> < hr > </ div >
13
- < div class ="circle "> < hr > </ div >
14
12
< div class ="container ">
15
13
< h1 class ="title "> Tic < span > Tac</ span > Toe</ h1 >
16
14
< div class ="status-action ">
Original file line number Diff line number Diff line change 1
- /** {
1
+ : root {
2
2
box-sizing : border-box;
3
3
margin : 0 ;
4
4
padding : 0 ;
5
- }*/
5
+ }
6
6
7
7
body {
8
+ overflow : hidden;
9
+ height : 100vh ;
10
+ width : 100vw ;
11
+ overflow : none;
8
12
color : # 545454 ;
9
13
display : flex;
10
14
font-family : sans-serif;
11
15
justify-content : center;
16
+ align-items : center;
12
17
}
13
18
.cross {
14
19
width : 110px ;
17
22
18
23
.container {
19
24
background : # ff944d ;
20
- margin : 50px ;
25
+ /* margin: 50px 0;*/
21
26
padding : 50px ;
22
27
border-radius : 25px ;
23
28
}
@@ -43,11 +48,15 @@ body {
43
48
}
44
49
45
50
.reset {
51
+ padding : 0 5px ;
46
52
cursor : pointer;
53
+ border-radius : 5px ;
54
+ transition : all 0.3s ;
47
55
}
48
56
49
57
.reset : hover {
50
58
color : # F2EBD3 ;
59
+ background-color : # 545454 ;
51
60
}
52
61
53
62
.game-grid {
You can’t perform that action at this time.
0 commit comments