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.

37 lines
807 B

  1. /*---------------
  2. UI Notification
  3. ----------------*/
  4. .ui.notification.hidden {
  5. display: none;
  6. }
  7. .ui.notification {
  8. position: absolute;
  9. top: 0px;
  10. right: 0px;
  11. background-color: #EEEEEE;
  12. padding: 3px 5px;
  13. background: -webkit-linear-gradient(top, #FFFFFF 0%, #DDDDDD 100%);
  14. background: -moz-linear-gradient(top, #FFFFFF 0%, #DDDDDD 100%);
  15. background: -o-linear-gradient(top, #FFFFFF 0%, #DDDDDD 100%);
  16. background: -ms-linear-gradient(top, #FFFFFF 0%, #DDDDDD 100%);
  17. background: linear-gradient(top, #FFFFFF 0%, #DDDDDD 100%);
  18. border: 1px solid #DDDDDD;
  19. border-radius: 5px;
  20. box-shadow:
  21. 1px 1px 1px rgba(0, 0, 0, 0.3),
  22. 0px 1px 0px rgba(255, 255, 255, 0.6) inset
  23. ;
  24. font-size: 11px;
  25. line-height: 1;
  26. text-transform: uppercase;
  27. color: #555555;
  28. z-index: 100;
  29. }