UNPKG

react-google-button

Version:

[![NPM version][npm-image]][npm-url] [![Build Status][build-status-image]][build-status-url] [![Coverage][coverage-image]][coverage-url] [![License][license-image]][license-url] [![Code Style][code-style-image]][code-style-url]

68 lines (59 loc) 1.39 kB
const baseStyle = { height: '50px', width: '240px', border: 'none', textAlign: 'center', verticalAlign: 'center', boxShadow: '0 2px 4px 0 rgba(0,0,0,.25)', fontSize: '16px', lineHeight: '48px', display: 'block', borderRadius: '1px', transition: 'background-color .218s, border-color .218s, box-shadow .218s', fontFamily: 'Roboto,arial,sans-serif', cursor: 'pointer', userSelect: 'none' } export const darkStyle = { backgroundColor: '#4285f4', color: '#fff', ...baseStyle } export const lightStyle = { backgroundColor: '#fff', color: 'rgba(0,0,0,.54)', ...baseStyle } export const iconStyle = { width: '48px', height: '48px', textAlign: 'center', verticalAlign: 'center', display: 'block', marginTop: '1px', marginLeft: '1px', float: 'left', backgroundColor: '#fff', borderRadius: '1px', whiteSpace: 'nowrap' } export const svgStyle = { width: '48px', height: '48px', display: 'block' } export const hoverStyle = { boxShadow: '0 0 3px 3px rgba(66,133,244,.3)', transition: 'background-color .218s, border-color .218s, box-shadow .218s' } // export const pressedStyle = { // backgroundColor: '#3367D6' // } export const disabledStyle = { backgroundColor: 'rgba(37, 5, 5, .08)', color: 'rgba(0, 0, 0, .40)', cursor: 'not-allowed' } export const disabledIconStyle = { backgroundColor: 'transparent' }