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.

26 lines
788 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: 1px 1px 1px rgba(0, 0, 0, 0.3), 0px 1px 0px rgba(255, 255, 255, 0.6) inset;
  21. font-size: 11px;
  22. line-height: 1;
  23. text-transform: uppercase;
  24. color: #555555;
  25. z-index: 100;
  26. }