Sha256: 11b02b484a9d355da4146998bfd976c977535e68899ce8b3f0f436ef1285b035
Contents?: true
Size: 1.36 KB
Versions: 5
Compression:
Stored size: 1.36 KB
Contents
@charset "UTF-8"; /** * Buttons (such as those used for saving forms). * * @author Yorick Peterse * @since 0.1 */ .button { border: 1px solid #bbb; float: left; margin-right: 10px; } .button a, .button input[type="submit"], .button button { background: #ddd; background: #ddd -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#eee)); background: #ddd -moz-linear-gradient(bottom, top, #ddd, #eee); border: none; border-top: 1px solid #fff; color: #000; cursor: pointer; display: block; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial,'Liberation Sans',FreeSans,sans-serif; margin: 0px; min-width: 80px; padding: 5px; text-decoration: none; text-shadow: 1px 1px #fff; text-align: center; } .button a { padding: 7px 5px 6px 5px; } .button input[type="submit"] { padding: 7px 5px; } .button a:active, .button input[type="submit"]:active, .button button:active { background: #eee -webkit-gradient(linear, left bottom, left top, from(#eee), to(#ddd)); background: #eee -moz-linear-gradient(bottom, top, #eee, #ddd); }
Version data entries
5 entries across 5 versions & 1 rubygems