Sha256: b9ad7fff46c8154da033102aeee697bb3ffcdcf24506327729563767870d5782
Contents?: true
Size: 1.97 KB
Versions: 11
Compression:
Stored size: 1.97 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(); } } .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; &.dotted{ border-top: 1px dotted #EEE;} &.dashed{ border-top: 1px dashed #EEE;} &.double{ border-top: 1px double #EEE;} }
Version data entries
11 entries across 11 versions & 1 rubygems