Sha256: 1fa4fa4648969e7ca6bdcc344810b2d5406037e7f8ad4c46b96c716f10b43da9
Contents?: true
Size: 1.07 KB
Versions: 12
Compression:
Stored size: 1.07 KB
Contents
$selection-background-color: $accent-color; $selection-font-color: text-color($accent-color); html { // http://bit.ly/1qk2tVR box-sizing: border-box; @include selection { background-color: $selection-background-color; color: $selection-font-color; } } * { &, &::after, &::before { box-sizing: inherit; } } html, body { background-color: $base-background-color; color: $base-font-color; font-family: $base-font-family; font-size: $base-font-size; text-rendering: optimizelegibility; } object[type="application/x-shockwave-flash"] { display: none; } // Loading indicators for Turbolinks html.turbolinks-progress-bar::before { background-color: $accent-color !important; height: 4px !important; } body:after { @include transition(background-color 1s ease); background-color: rgba(0, 0, 0, 0); bottom: 0; content: ""; cursor: wait; left: 999999px; position: fixed; top: 4px; width: 100%; z-index: 999999; } body.loading { cursor: wait; &:after { background-color: rgba(color($primary-color, 900), 0.2); left: 0; } }
Version data entries
12 entries across 12 versions & 1 rubygems