summaryrefslogtreecommitdiffstats
path: root/sass/_search.scss
blob: 4012e962b91ec78f35b418d16aa753d967aa680d (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
.search-container {
  display: none;

  &--is-visible {
    display: block;
    width: 100%;
  }

  #search {
    width: 100%;
    display: block;
    border:none;
    border-left: 1px solid $color;
    padding:1px 0;
    text-align: left;
    line-height: $baseline;
    font-size: $font-size;
    font-family:$font-family;
    color:$color;
    background:transparent;
  }

  #search:focus {
    outline:none;
    border:none;
  }

  .search-results {
    &__header {
      font-weight: bold;
      padding: 1rem 0rem;
    }

    &__items {
      margin: 0 2vw;
      padding: 0;
      list-style: circle;
    }

    &__item {
      margin-bottom: 1rem;
    }

    &__teaser {
     
    }
  }
}

#on_right {
  display: block;
  text-align: right;
  margin-bottom: $baseline;
}

#search-ico {
  font-family: 'FabricMDL2Icons';
  cursor: pointer;
  font-size: $baseline;
  line-height: 1;
}