summaryrefslogtreecommitdiff
path: root/src/SearchResults.css
blob: ae05e10c51bdf68a9f02644017ef174f6950520a (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
63
64
65
66
.result-count::before, .result-count::after {
  content: "\2014";
}

.result-count {
  font-size: 12px;
  text-align: center;
  font-style: italic;
}

.Result {
  box-sizing: border-box;
  border-bottom: 1px solid #dbeaf1;
  overflow: auto;
  padding-bottom: 1rem;
}

.Result p {
  margin-bottom: 0;
}

.Result h3 {
  clear: both;
}

.Result .image {
  float: left;
  width: 180px;
}

.Result .image img {
  width: 100%;
}

.Result hr {
  width: 75%;
}

.Result .details, .Result h3 {
  margin-left: 200px;
}

.badge {
  background: #aed3e5;
  font-size: 10pt;
  border-radius: 4px;
  display: inline-block;
  margin: 0 0.5rem 5px 0;
  padding: 2px 10px 2px 10px;
}

.label {
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .Result .image {
    float: none;
    width: 100%;
  }

  .Result .details, .Result h3 {
    margin-left: 0;
  }
}