-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
69 lines (58 loc) · 1011 Bytes
/
styles.css
File metadata and controls
69 lines (58 loc) · 1011 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
* {
margin: 0;
padding: 0;
}
body {
font-family: sans-serif;
font-size: 30px;
}
.game {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
.test {
width: 100px;
height: 100px;
}
.container {
display: grid;
margin-top: 20px;
grid-template-columns: repeat(3, 15rem);
grid-template-rows: repeat(3, 15rem);
border-radius: 25px;
}
.square {
background-color: beige;
display: flex;
align-items: center;
justify-content: center;
padding: 50px;
border: 0.1px solid;
}
.round-1 {
border-radius: 2rem 0rem 0rem 0rem;
}
.round-2 {
border-radius: 0rem 2rem 0rem 0rem;
}
.round-3 {
border-radius: 0rem 0rem 0rem 2rem;
}
.round-4 {
border-radius: 0rem 0rem 2rem 0em;
}
#txtTurn {
text-align: center;
}
@media (max-width: 750px) {
.container {
display: grid;
justify-content: center;
grid-template-columns: repeat(3, 7rem);
grid-template-rows: repeat(3, 7rem);
border-radius: 25px;
}
}