ESPTrainer built with Meteor and React

Image.scss 447B

1234567891011121314151617181920212223242526272829
  1. @import "shadow";
  2. .image {
  3. position: absolute;
  4. top: 9px;
  5. left: calc(50% - 112px);
  6. width: 224px;
  7. border-radius: 5px;
  8. border: 1px solid rgba(255, 255, 255, 0.5);
  9. @include shadow();
  10. }
  11. .appear-enter {
  12. opacity: 0.01;
  13. }
  14. .appear-enter.appear-enter-active {
  15. opacity: 1;
  16. transition: opacity 500ms ease-in;
  17. }
  18. .appear-leave {
  19. opacity: 1;
  20. }
  21. .appear-leave.appear-leave-active {
  22. opacity: 0.01;
  23. transition: opacity 300ms ease-in;
  24. }