Sha256: 94e5209c7a60f84455028cbf5a48139279b0dbaacf0c396a3620b8358ec9ef3b
Contents?: true
Size: 1.92 KB
Versions: 2
Compression:
Stored size: 1.92 KB
Contents
// // Scaffolding // -------------------------------------------------- // Reset the box-sizing * { @include box-sizing(border-box); } *:before, *:after { @include box-sizing(border-box); } // Body reset // ------------------------- html { font-size: 100%; -webkit-tap-highlight-color: rgba(0,0,0,0); } body { font-family: $font-family-base; font-size: $font-size-base; line-height: $line-height-base; color: $text-color; background-color: $background-color; -webkit-font-smoothing: antialiased; } header{ min-height: 45px; } footer{ margin-top: 50px; } // Reset fonts for relevant elements // ------------------------- input, button, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; } // Links // ------------------------- a { color: $link-color; text-decoration: none; &:hover, &:focus { color: $link-hover-color; text-decoration: underline; } &:focus { // @include tab-focus(); } } // Images // ------------------------- img { vertical-align: middle; } .shake { -webkit-transform-origin: center center 0 50%; -moz-transform-origin: center center 0 50%; -ms-transform-origin: center center 0 50%; -o-transform-origin: center center 0 50%; transform-origin: center center 0 50%; &:hover { -webkit-animation-name: shake; animation-name: shake; -webkit-animation-duration: 100ms; animation-duration: 100ms; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-delay: 0s; animation-delay: 0s; } } hr { margin: 20px 0; border: 0; border-top: 1px solid #EEE; -moz-box-sizing: content-box; box-sizing: content-box; }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mice-0.0.10 | vendor/assets/stylesheets/mice/_scaffolding.scss |
mice-0.0.9 | vendor/assets/stylesheets/mice/_scaffolding.scss |