summaryrefslogtreecommitdiffstats
path: root/debian/missing-sources/wyrm/sass/wyrm_core/_font_icon_defaults.sass
blob: 9a9738856c028d359cebe39bcfcac2722aa56f53 (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
// Default Icon styles that can be used with Font Awesome or similar font libs.

%icon
  font-family: inherit
  &:before
    font-family: $icon-font-family
    display: inline-block
    font-style: normal
    font-weight: normal
    line-height: 1
    text-decoration: inherit
    +font-smooth

.#{$icon-prefix}
  @extend %icon

a .#{$icon-prefix}
  display: inline-block
  text-decoration: inherit

.btn, .nav
  .#{$icon-prefix}
    display: inline
    &.#{$icon-prefix}-large
      line-height: .9em
    &.#{$icon-prefix}-spin
      display: inline-block

.btn.#{$icon-prefix}:before
  opacity: .5
  +transition(opacity .05s ease-in)
.btn.#{$icon-prefix}:hover:before
  opacity: 1

.btn-mini
  .#{$icon-prefix}:before
    font-size: 14px
    vertical-align: -15%