您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }