Sha256: e0e9e6721876f15af7821758be335ceca714d69b15792e3fabaecf0a21dded4f
Contents?: true
Size: 902 Bytes
Versions: 7
Compression:
Stored size: 902 Bytes
Contents
@import "colors"; .rounded { -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; } .border-transition { -webkit-transition : border .25s ease-in; -moz-transition : border .25s ease-in; -o-transition : border .25s ease-in; transition : border .25s ease-in; outline: none; &:focus, &:hover { border-color: $tangerine; outline: none; } } .color-transition { -webkit-transition : color .25s ease-in; -moz-transition : color .25s ease-in; -o-transition : color .25s ease-in; transition : color .25s ease-in; color: white; text-decoration: none; &:visited { color: white; } &:hover { color: $tangerine; } } @-webkit-keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } .fade-in { -webkit-animation: fadeIn 0.5s; animation: fadeIn 0.5s; }
Version data entries
7 entries across 7 versions & 1 rubygems