Sha256: 3784929f0b7d2513575a2f08a96e4c1c8e57010ce548f5a82d413e35a7988d0e
Contents?: true
Size: 972 Bytes
Versions: 62
Compression:
Stored size: 972 Bytes
Contents
/*------------------------------------*\ #PAGE \*------------------------------------*/ /** * 1. ensure the page is always at least the height of the viewport * 2. ensure OSX fonts will look more consistent with other OSes that do not * utilize sub-pixel anti-aliasing. * 3. changing this value will potentially break inline-block based layout * 4. ensure browsers will not automatically zoom fonts. * 5. ensure all pages, regardless of the height of thier content, have a right- * hand scrollbar to prevent visual jittering between pages. */ html { min-height: 100%; /* [1] */ color: $font-color; font-size: $font-size; font-family: $font-family; -moz-osx-font-smoothing: grayscale; /* [2] */ -webkit-font-smoothing: antialiased; /* [2] */ line-height: $line-height; letter-spacing: normal; /* [3] */ text-size-adjust: 100%; /* [4] */ background-color: $background-color; overflow-y: scroll; /* [5] */ }
Version data entries
62 entries across 62 versions & 1 rubygems