Sha256: 07ade68b3a92afd6d10ec0a280b313c7623c86d9afb882cd81a56e7c96d1eea2
Contents?: true
Size: 1.28 KB
Versions: 55
Compression:
Stored size: 1.28 KB
Contents
/*------------------------------------*\ #PAGE \*------------------------------------*/ /** * High-, page-level styling. * * 1. Set the default `font-size` and `line-height` for the entire project, * sourced from our default variables. The `font-size` is calculated to exist * in ems, the `line-height` is calculated to exist unitlessly. * 2. Force scrollbars to always be visible to prevent awkward ‘jumps’ when * navigating between pages that do/do not have enough content to produce * scrollbars naturally. * 3. Ensure the page always fills at least the entire height of the viewport. * 4. Prevent certain mobile browsers from automatically zooming fonts. * 5. Fonts on OSX will look more consistent with other systems that do not * render text using sub-pixel anti-aliasing. */ html { font-size: ($inuit-base-font-size / 16px) * 1em; /* [1] */ line-height: $inuit-base-line-height / $inuit-base-font-size; /* [1] */ background-color: $inuit-base-background-color; color: $inuit-base-text-color; overflow-y: scroll; /* [2] */ min-height: 100%; /* [3] */ -webkit-text-size-adjust: 100%; /* [4] */ -ms-text-size-adjust: 100%; /* [4] */ -moz-osx-font-smoothing: grayscale; /* [5] */ -webkit-font-smoothing: antialiased; /* [5] */ }
Version data entries
55 entries across 55 versions & 4 rubygems