Sha256: 744f8b17e69d192ec0bb69d11731cd39953bb3ff642679bbe590223c2cc429a0

Contents?: true

Size: 829 Bytes

Versions: 3

Compression:

Stored size: 829 Bytes

Contents

// -----------------------------------------------------------------------------
// This file contains very basic styles.
// -----------------------------------------------------------------------------

/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/**
 * Basic styles for links
 */
a {
  color: $brand-color;
  text-decoration: none;

  @include on-event {
    color: $text-color;
    text-decoration: underline;
  }
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mancalledmountain-theme-0.1.2 _sass/base/_base.scss
mancalledmountain-theme-0.1.1 _sass/base/_base.scss
mancalledmountain-theme-0.1.0 _sass/base/_base.scss