Sha256: 43686a83e8bb15a01d42c68142cb8b2a46259044e082c6e7deea99b8bea1a860
Contents?: true
Size: 1.86 KB
Versions: 3
Compression:
Stored size: 1.86 KB
Contents
// First, set some default constants @import "partials/boilerplate-defaults"; // Then we'll import the compass extension @import "html5-boilerplate"; /** * HTML5 ✰ Boilerplate * * style.css contains a reset, font normalization and some base styles. * * Credit is left where credit is due. * Much inspiration was taken from these projects: * - yui.yahooapis.com/2.8.1/build/base/base.css * - camendesign.com/design/ * - praegnanz.de/weblog/htmlcssjs-kickstart */ @include html5-boilerplate-reset; @include html5-boilerplate-fonts; @include html5-boilerplate-styles; /** * You might tweak these.. */ body, select, input, textarea { /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ color: $font-color; /* Set your base font here, to apply evenly */ /* font-family: Georgia, serif; */ } /* Headers (h1, h2, etc) have no default font-size or margin; define those yourself */ h1, h2, h3, h4, h5, h6 { font-weight: bold; } a, a:active, a:visited { color: $link-color; } a:hover { color: $link-hover-color; } /** * Primary styles. * * Author: */ @include html5-boilerplate-helpers; /** * Media queries for responsive design. * * These follow after primary styles so they will successfully override. */ @media all and (orientation:portrait) { /* Style adjustments for portrait mode goes here. */ } @media all and (orientation:landscape) { /* Style adjustments for landscape mode goes here. */ } /* Grade-A Mobile Browsers (Opera Mobile, Mobile Safari, Android Chrome) consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */ @media screen and (max-device-width: 480px) { /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you: j.mp/textsizeadjust */ /* html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */ } @include html5-boilerplate-print;
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
html5-starter-0.2.3b | templates/project/style.scss |
html5-starter-0.2.2b | templates/project/style.scss |
html5-starter-0.1.9b | templates/project/style.scss |