1 /** 2 * The Google sign in button must follow Google's design guidelines. 3 * See: https://developers.google.com/identity/branding-guidelines 4 */ 5 .google-sign-in { 6 background-color: #4285f4; 7 border-radius: 2px; 8 cursor: pointer; 9 display: inline-flex; 10 font-family: Roboto, arial, sans-serif; 11 font-size: 14px; 12 padding: 1px; 13 14 .google-cta { 15 color: white; 16 display: inline-block; 17 /** 18 * Hack the line height for vertical centering of text. 19 */ 20 line-height: 32px; 21 margin: 0 15px; 22 } 23 24 .google-logo { 25 background-color: white; 26 border-radius: 2px; 27 display: inline-block; 28 padding: 8px; 29 height: 18px; 30 width: 18px; 31 } 32 }