noty.css 771 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* Noty */
  2. .noty-wrapper {
  3. font-size: 14px;
  4. font-weight: bold;
  5. position: fixed;
  6. z-index: 10000;
  7. left: 0;
  8. width: 100%;
  9. margin: 0;
  10. padding: 0;
  11. list-style: none;
  12. opacity: 95;
  13. -moz-opacity: 95;
  14. filter: alpha(opacity: 95);
  15. }
  16. .noty-wrapper:hover {
  17. opacity: 1;
  18. -moz-opacity: 1;
  19. filter: alpha(opacity: 100);
  20. }
  21. .noty_message {
  22. line-height: 20px;
  23. padding: 15px 10px;
  24. text-align: center;
  25. }
  26. #noty_bottom {
  27. bottom: 0;
  28. }
  29. #noty_top {
  30. top: 0;
  31. }
  32. #noty_center {
  33. top: 50%;
  34. left: 50%;
  35. }
  36. #noty_center li {
  37. margin: 10px 0;
  38. border: 0;
  39. }