You are here

auth-icons.css in Social Auth 8.2

Same filename and directory in other branches
  1. 8 css/auth-icons.css
  2. 3.x css/auth-icons.css
/**
 * Styles for the login form
 */
.social-auth.auth-link {
  border-bottom: none;
}
.social-auth.auth-icon {
  width: 3em;
  margin-right: 5px;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.social-auth.auth-icon:hover {
  animation-name: grey;
  animation-duration: 0.5s;
  filter: grayscale(1);
}

@keyframes grey {
  from {
    webkit-filter: grayscale(0);
    filter: grayscale(0);
  }
  to {
    webkit-filter: grayscale(1);
    filter: grayscale(1);
  }
}

File

css/auth-icons.css
View source
  1. /**
  2. * Styles for the login form
  3. */
  4. .social-auth.auth-link {
  5. border-bottom: none;
  6. }
  7. .social-auth.auth-icon {
  8. width: 3em;
  9. margin-right: 5px;
  10. -webkit-transition: all ease 0.3s;
  11. -moz-transition: all ease 0.3s;
  12. -o-transition: all ease 0.3s;
  13. -ms-transition: all ease 0.3s;
  14. transition: all ease 0.3s;
  15. }
  16. .social-auth.auth-icon:hover {
  17. animation-name: grey;
  18. animation-duration: 0.5s;
  19. filter: grayscale(1);
  20. }
  21. @keyframes grey {
  22. from {
  23. webkit-filter: grayscale(0);
  24. filter: grayscale(0);
  25. }
  26. to {
  27. webkit-filter: grayscale(1);
  28. filter: grayscale(1);
  29. }
  30. }