about summary refs log tree commit diff
path: root/style.css
blob: 43ae13dcd6c279f131094d8f5c95347c5f7dfb42 (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
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
body {
  margin: 0;
  padding: 6ex 16vw;
  box-sizing: border-box;
  width: 100%;
  height: 100vh;
  font-family: sans-serif;
}
h1, h3 {
  width: 58vw;
  margin: auto;
}
h3 { font-weight: 400; }

footer {
  text-align: center;
  padding: 10px;
}

.tiles {
  padding: 6ex 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  position: relative;
}
.tile {
  margin: 1vw;
  cursor: pointer;
  overflow: hidden;
  min-width: 120px;
  min-height: 120px;
  width: 18vw;
  height: 18vw;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.tile img:hover {
  transform: scale(1.1);
}

@media only screen and (max-width: 442px) {
  body {
    padding: 6ex 4vw;
  }
  h1, h3 {
    width: 100%;
  }

  .tile {
    margin: 5px;
    width: 100%;
    height: 100%;
  }
}