forked from TaylorDarneille/sei-tic-tac-toe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (36 loc) · 680 Bytes
/
style.css
File metadata and controls
43 lines (36 loc) · 680 Bytes
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
h1{
text-align: center;
}
.playerScores{
display:flex;
justify-content: space-between;
}
#currentPlayer {
text-align: center;
}
.player{
font-size: 20px;
}
.grid {
display: grid;
grid-template-rows: 150px 150px 150px;
grid-template-columns: 150px 150px 150px;
justify-content: center;
align-content: center;
}
.cell {
border: 1px solid #555;
display: flex;
align-items: center;
justify-content: center;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: xx-large;
}
button {
width: 450px;
color:black;
font-size: 20px;
text-align: center;
margin: auto;
padding: 14px 90px;
}