Sha256: c8ac1181915f680f86cae369df79207032968a5990dd0cd43e7663dbedbdb713
Contents?: true
Size: 1.09 KB
Versions: 62
Compression:
Stored size: 1.09 KB
Contents
/*------------------------------------*\ #TABLES \*------------------------------------*/ $table-border-color: $border-color !default; $table-header-color: $dark-gray !default; $table-cell-color: $font-color !default; $table-row-hover-bg-color: $light-gray !default; /** * 1. various types of content will be found wrapped in paragraph tags within * tables */ table { margin-bottom: $vertical-margin; width: 100%; border-collapse: collapse; p { /* [1] */ margin: 0; } p + p { /* [1] */ margin-top: $spacing-unit; } } thead {} tbody {} tr { tbody &:hover { background: $table-row-hover-bg-color; } } th, td { padding: $spacing-unit; text-align: left; border-bottom: 1px solid $table-border-color; vertical-align: baseline; } th { color: $table-header-color; } td { color: $table-cell-color; }
Version data entries
62 entries across 62 versions & 1 rubygems