summaryrefslogtreecommitdiffstats
path: root/sass/_search.scss
blob: 4f253dffbf260ae24ce39a2a6a41e6bef1259e5d (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
  #search {
    width: 100%;
    padding: 1vw 0;
    @include color(background, --bg-color,  $theme-light-bg-color);
    @include color(color, --first-text-color, $theme-light-first-text-color);
    text-align: left;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif;
    font-size: 1.625rem;
    border:none;
    border-bottom:2px solid #000;
  }

  .search-results {
    &__header {
      font-style: italic;
      margin:1rem 0 0;
    }

    &__items {
      list-style: decimal-leading-zero;
    }

    &__item {
   margin:1rem 0;
    }

    &__teaser {
      font-size: 1rem;
    }
  }