Sha256: 909d59096f6b08395286e29746cd648709c5919b35e572bf606100cec87b964b

Contents?: true

Size: 724 Bytes

Versions: 5

Compression:

Stored size: 724 Bytes

Contents

////
///  Typographic Normalization and variable applications
///
///  @group base
////

html {
  color: $color-font-base;
  font-family: $font-family-base;
  font-size: $font-size-base;
  line-height: $line-height-base;
}
 
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: $font-family-header;
  line-height: $line-height-header;
}

h1 {
  font-size: $font-size-h1;
}

h2 {
  font-size: $font-size-h2;
}

h3 {
  font-size: $font-size-h3;
}

h4 {
  font-size: $font-size-h4;
}

h5 {
  font-size: $font-size-h5;
}

h6 {
  font-size: $font-size-h6;
}

p {
  margin: 0 0 $space-half;
}

a {
  color: $color-link;
  text-decoration: none;
  transition: color .1s;

  &:hover,
  &:active,
  &:focus {
    color: $color-link-hover;
  }
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
kentucky-3.1.0 app/assets/stylesheets/base/_typography.scss
kentucky-3.0.3 app/assets/stylesheets/base/_typography.scss
kentucky-3.0.2 app/assets/stylesheets/base/_typography.scss
kentucky-3.0.1 app/assets/stylesheets/base/_typography.scss
kentucky-3.0.0 app/assets/stylesheets/base/_typography.scss