Sha256: 39edf784fa9ea1730992256674a95f54c168206d6884a3c15752fdbdab8b8b03
Contents?: true
Size: 901 Bytes
Versions: 62
Compression:
Stored size: 901 Bytes
Contents
/*------------------------------------*\ #AVATAR \*------------------------------------*/ $avatar-color: $white !default; $avatar-bg-color: $gray !default; $avatar-size: 32px !default; $avatar-large-size: 40px !default; $avatar-font-size: 14px !default; $avatar-large-font-size: 18px !default; /** * 1. this is the default background color, in case something goes awry within * the rails helper */ .avatar { display: inline-block; width: $avatar-size; height: $avatar-size; color: $avatar-color; font-size: $avatar-font-size; line-height: $avatar-size; text-align: center; text-transform: uppercase; background: $avatar-bg-color; /* [1] */ border-radius: 50%; } .avatar--large { width: $avatar-large-size; height: $avatar-large-size; font-size: $avatar-large-font-size; line-height: $avatar-large-size; }
Version data entries
62 entries across 62 versions & 1 rubygems