Skip to content

Commit e3b1ff4

Browse files
authored
Create style.css
1 parent a2f797b commit e3b1ff4

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

style.css

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.games {
2+
display: grid;
3+
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
4+
grid-gap: 20px;
5+
}
6+
7+
.game {
8+
display: flex;
9+
flex-direction: column;
10+
align-items: center;
11+
}
12+
13+
.game img {
14+
width: 100%;
15+
height: auto;
16+
}

0 commit comments

Comments
 (0)