You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

google.scss 749B

1234567891011121314151617181920212223242526272829303132
  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. .google-cta {
  14. color: white;
  15. display: inline-block;
  16. /**
  17. * Hack the line height for vertical centering of text.
  18. */
  19. line-height: 32px;
  20. margin: 0 15px;
  21. }
  22. .google-logo {
  23. background-color: white;
  24. border-radius: 2px;
  25. display: inline-block;
  26. padding: 8px;
  27. height: 18px;
  28. width: 18px;
  29. }
  30. }