aboutsummaryrefslogtreecommitdiff
path: root/public/main.css
blob: 7e7f29723e7eb5ab0880b517596aea95b8678846 (plain)
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
body {
  margin: 0;
  display: flex;
}

.g-Aside {
  padding: 1rem;
  background-color: #333;
}

.g-Main {
  padding: 1rem;
  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;
}