-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmemory_Match.css
More file actions
51 lines (41 loc) · 942 Bytes
/
memory_Match.css
File metadata and controls
51 lines (41 loc) · 942 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
html, body {
display: grid;
background-color: #ffeead;
margin: 10px;
}
.container{
/* display:grid; */
display: inline-grid;
justify-content: center;
grid-template-columns: 100px 100px 100px;
grid-template-rows: 100px 100px 100px;
grid-gap: 3px;
border: 1px solid black;
}
.container > div {
display: flex;
justify-content: center;
align-items: center;
font-size: 2em;
}
.container > div:nth-child(1n) {
background-color: #136cf1;
}
.container.box{
/* display:grid; */
display: inline-grid;
justify-content: center;
grid-template-columns: 100px 100px 100px 100px 100px 100px 100px 100px 100px;
grid-template-rows: 100px;
grid-gap: 3px;
border: 1px solid black;
}
.container.box > div {
display: flex;
justify-content: center;
align-items: center;
font-size: 2em;
}
.container.box > div:nth-child(1n) {
background-color: #3ff113;
}