_news.scss 350 Bytes
Newer Older
1
@mixin news-font {
Brittany Cheng committed
2
  font-family: inherit;
3 4 5 6
}

.notifications {
  @include news-font;
7
  font-size: 0.9em;
8 9 10
  padding-left: $baseline;
  padding-top: $baseline;
  padding-bottom: $baseline;
11
  
12 13
  .notification {
    @include news-font;
14 15
    margin-top: ($baseline*0.75);
    margin-bottom: ($baseline*0.75);
16 17 18 19 20 21

    a {
      @include news-font;
    }
  }
}