1.0.0 • Published 8 years ago

topcoat-root v1.0.0

Weekly downloads
3
License
Apache-2.0
Repository
github
Last release
8 years ago

Topcoat Root Element

Build Status npm version


Root element with default fallbacks if css variables not set.

html {
  font-size: var(base-font-size, 12px);
}

body {
  margin: 0;
  padding: 0;
  font-family: var(font-family, "Source Sans Pro", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif);
  font-weight: var(font-weight, 400);
  background: var(background--body, hsla(200, 2%, 30%, 1));
}

:focus {
  outline-color: transparent;
  outline-style: none;
}