-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtictactoe.css
More file actions
45 lines (43 loc) · 813 Bytes
/
tictactoe.css
File metadata and controls
45 lines (43 loc) · 813 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
41
42
43
44
45
/*Had fun styling my tictactoe board with a gradient background, and some other things for my specific div IDs and whatnot.*/
#ticTacToeGrid {
display: flex;
flex-wrap: wrap;
max-width: 500px;
margin: auto;
justify-content: center;
}
.grid-cell {
width: 150px;
height: 150px;
border: 1px solid white;
border-radius: 1rem;
display: flex;
justify-content: center;
align-items: center;
font-size: 2em;
margin: 0 0 0 -1px;
}
#turnIndicator {
color: white;
font-family: arial;
font-size: 1rem;
}
#gameName {
color: white;
font-family: arial;
font-size: 3rem;
text-transform: lowercase;
font-weight: bold;
}
body {
background-color: #ff9a8b;
background-image: linear-gradient(
90deg,
#ff9a8b 0%,
#ff6a88 55%,
#ff99ac 100%
);
}
div {
color: white;
}