animation.wxss 576 B

1234567891011121314151617181920212223242526272829303132333435
  1. .animation-element-wrapper {
  2. display: flex;
  3. width: 100%;
  4. padding-top: 75px;
  5. padding-bottom: 75px;
  6. justify-content: center;
  7. overflow: hidden;
  8. background-color: #ffffff;
  9. }
  10. .animation-element {
  11. width: 100px;
  12. height: 100px;
  13. background-color: #1AAD19;
  14. }
  15. .animation-buttons {
  16. padding: 15px 25px 5px;
  17. width: 100%;
  18. height: 330px;
  19. box-sizing: border-box;
  20. }
  21. .animation-button {
  22. float: left;
  23. line-height: 2;
  24. width: 150px;
  25. margin: 8px 11px;
  26. }
  27. .animation-button-reset {
  28. width: 610px;
  29. }
  30. .btn-row {
  31. display: flex;
  32. justify-content: space-between;
  33. }