Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. .notification {
  2. font-family: "HeliosExtWeb", "Arial", sans-serif;
  3. position: fixed;
  4. z-index: 9999999;
  5. top: 10px;
  6. left: 10px;
  7. right: 10px;
  8. display: block;
  9. background-color: #E5F7DC;
  10. padding: 19px 20px 21px;
  11. transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  12. transition-duration: 0.15s;
  13. transition-property: opacity, transform;
  14. opacity: 0;
  15. transform: translate(0, -10px);
  16. cursor: pointer;
  17. pointer-events: none;
  18. }
  19. .notification.notification--visible {
  20. opacity: 1;
  21. transform: translate(0, 0);
  22. pointer-events: auto;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement