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.

23 lines
305 B

  1. #alerts {
  2. position: fixed;
  3. top: 60px;
  4. right: 10px;
  5. width: 350px;
  6. z-index: 10;
  7. text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
  8. .notification {
  9. animation: 0.5s ease slideInRight;
  10. margin-top: 5px;
  11. &.exit {
  12. animation: 0.5s ease fadeOutRight;
  13. }
  14. }
  15. h3 {
  16. font-size: 16px;
  17. font-size: 500;
  18. }
  19. }