Sha256: 07ea5881983a66bc675ff307c3aac3a945cd78c9c0d87a30ca152262902b0784
Contents?: true
Size: 753 Bytes
Versions: 20
Compression:
Stored size: 753 Bytes
Contents
// Primary button style. // // :hover - Hover state // :active - Active state // :focus - Focus state // // Styleguide Buttons.Primary .button { background-color: pink; color: white; display: block; text-align: center; padding: 10px 20px; border-radius: 5px; } // Secondary button style. // // :hover - Hover state // :active - Active state // :focus - Focus state // // Styleguide Buttons.Secondary .button--secondary { @extend .button; background-color: orangered; padding: 5px 10px; } // Special silly icon button style thing. // // :hover - Hover state // :active - Active state // :focus - Focus state // // Styleguide Buttons.Special.Icon Button .icon-button { @extend .button; background-color: red; }
Version data entries
20 entries across 20 versions & 1 rubygems