aboutsummaryrefslogtreecommitdiff
path: root/public/main.css
blob: 711aaf24f667341366565d4fc31e62be003f99fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
body {
  margin: 2rem;
}

.g-Books {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  grid-gap: 1rem;

}

.g-Book {
  width: 13rem;
  align-self: center;
  border: 1px solid #DDDDDD;
}

.g-Book:hover {
  transform: scale(1.1);
  transition: transform 0.1s linear;
}