Skip to content

Commit e53754d

Browse files
author
Navdeep Singh Rathore
committed
Some style changes made, yet to change to responsive measurement
1 parent 119e287 commit e53754d

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

index.html

-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
<title>Tic Tac Toe</title>
1010
</head>
1111
<body>
12-
<div class="cross"><hr></div>
13-
<div class="circle"><hr></div>
1412
<div class="container">
1513
<h1 class="title">Tic <span>Tac</span> Toe</h1>
1614
<div class="status-action">

style.css

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
1-
/** {
1+
:root {
22
box-sizing: border-box;
33
margin: 0;
44
padding: 0;
5-
}*/
5+
}
66

77
body {
8+
overflow: hidden;
9+
height: 100vh;
10+
width: 100vw;
11+
overflow: none;
812
color: #545454;
913
display: flex;
1014
font-family: sans-serif;
1115
justify-content: center;
16+
align-items: center;
1217
}
1318
.cross{
1419
width: 110px;
@@ -17,7 +22,7 @@ body {
1722

1823
.container {
1924
background: #ff944d;
20-
margin: 50px;
25+
/*margin: 50px 0;*/
2126
padding: 50px;
2227
border-radius: 25px;
2328
}
@@ -43,11 +48,15 @@ body {
4348
}
4449

4550
.reset {
51+
padding: 0 5px;
4652
cursor: pointer;
53+
border-radius: 5px;
54+
transition: all 0.3s;
4755
}
4856

4957
.reset:hover {
5058
color: #F2EBD3;
59+
background-color: #545454;
5160
}
5261

5362
.game-grid {

0 commit comments

Comments
 (0)