Sha256: 38aff1994bf0dc321ba62d794b26e2232074ece374b4864ced239b5b6c599e24
Contents?: true
Size: 1.1 KB
Versions: 5
Compression:
Stored size: 1.1 KB
Contents
// ----------------------------------------------------------------------------- // Basic styles. // ----------------------------------------------------------------------------- html { @include box-sizing(border-box); } *, *::before, *::after { box-sizing: inherit; margin: 0; } a { color: $colour-base; text-decoration: none; &:hover, &:active, { border-bottom: 1px solid $colour-highlight; } } body { min-height: 100%; padding: 0; } img { max-width: 100%; } main, aside[role='complementary'], footer[role='contentinfo'] { padding: 0 2em 2em; } figure { background: rgba($colour-base, 0.25); padding: 0.25em; @include rounded(); img { @include rounded(0.75em); } } table { border-collapse: collapse; margin: 0.625em 0; th, td { padding: 0.25em; } th { background: $colour-base; color: $colour-lightgrey; } tr:nth-child(even) { background: rgba($colour-base, 0.25); } tr:nth-child(odd) { background: rgba($colour-base, 0.1); } }
Version data entries
5 entries across 5 versions & 1 rubygems