๐Ÿ“ฆ 3b1b / 3Blue1Brown.com

๐Ÿ“„ index.module.scss ยท 41 lines
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.podcastEpisode {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 16px;
  margin: -16px;
  margin-bottom: 16px;
}

.podcastEpisode:hover {
  background: $gray-200;
}

.thumbnail {
  width: 200px;
  margin-right: 24px;
}

.info {
  text-align: left;
  margin: 10px;
}

.title {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 4px;
  margin-top: 8px;
}

.description {
  color: $gray-700;
  font-size: 15px;
}

@media (max-width: 600px) {
  .description {
    font-size: 0px;
  }
}