0.0.2 • Published 8 years ago

csp-block-button-js v0.0.2

Weekly downloads
6
License
-
Repository
github
Last release
8 years ago

CSP Block Button CSS in JS

button: {
   borderRadius: 0,
   textShadow: 'none',
   outline: 'none',
   width: '100%',
   cursor: 'pointer',
   color: sv.$colorWhite,
   padding: '15px 10px',
   textAlign: 'center',
   transition: 'background-color 0.4s ease',
   ':hover': {
     backgroundColor: '#024295'
   },
   ':active': {
     boxShadow: 'inset 0 0 6px #02194b'
   }
 },
 label: {
   position: 'relative',
   ':active': {
     top: 1
   }
 },
 disabled: {
   pointerEvents: 'none',
   border: '1px solid ' + sv.$colorGrey1,
   backgroundColor: sv.$colorGrey1
 }