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.

extra.css 338B

12345678910111213141516171819202122232425262728
  1. @keyframes heart {
  2. 0%, 40%, 80%, 100% {
  3. transform: scale(1);
  4. }
  5. 20%, 60% {
  6. transform: scale(1.15);
  7. }
  8. }
  9. .heart {
  10. animation: heart 1000ms infinite;
  11. }
  12. /* Buttons */
  13. .md-button {
  14. border-radius: 100px !important;
  15. }
  16. /* Responsive videos */
  17. .md-typeset video {
  18. height: auto;
  19. max-width: 100%;
  20. }