jquery.jnotify-alt.min.css 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. .jnotify-container {
  2. position: fixed;
  3. top: 0;
  4. right: 0;
  5. width: 70%;
  6. z-index: 100000;
  7. /* set maximum number of notes to show */
  8. max-height: 270px;
  9. overflow-x: hidden;
  10. overflow-y: auto;
  11. }
  12. .jnotify-container .jnotify-notification {
  13. position: relative;
  14. margin-top: 4px;
  15. margin-bottom: 10px;
  16. margin-right: 4px;
  17. }
  18. .jnotify-container .jnotify-notification .jnotify-background {
  19. position: absolute;
  20. top: 0;
  21. left: 0;
  22. width: 100%;
  23. height: 100%;
  24. background-color: #e3f0db;
  25. filter: alpha(opacity=90);
  26. -moz-opacity: 0.90;
  27. opacity: 0.90;
  28. z-index: 1;
  29. /* round the corners */
  30. -moz-border-radius: 10px;
  31. -webkit-border-radius: 10px;
  32. border-radius: 10px;
  33. -moz-box-shadow: 4px 4px 4px #bbb;
  34. }
  35. .jnotify-container .jnotify-notification a.jnotify-close,
  36. .jnotify-container .jnotify-notification a.jnotify-close:link,
  37. .jnotify-container .jnotify-notification a.jnotify-close:visited,
  38. .jnotify-container .jnotify-notification a.jnotify-close:focus,
  39. .jnotify-container .jnotify-notification a.jnotify-close:hover {
  40. position: absolute;
  41. top: 2px;
  42. right: 5px;
  43. padding: 0 5px;
  44. font: bold 1.4em Arial,Helvetica,sans-serif;
  45. line-height: 1em;
  46. text-decoration: none;
  47. z-index: 3;
  48. cursor: pointer;
  49. }
  50. .jnotify-container .jnotify-notification .jnotify-message {
  51. position: relative;
  52. z-index: 2;
  53. padding: 20px;
  54. text-align: left;
  55. color: #446548;
  56. font: bold 1.2em verdana, arial, helvetica;
  57. line-height: 1.2em;
  58. }
  59. .jnotify-container .jnotify-notification .jnotify-message * {
  60. font-size: 1em;
  61. }
  62. /* notification type == "error" */
  63. .jnotify-container .jnotify-notification-error .jnotify-background {
  64. background-color: #d79eac !important;
  65. }
  66. .jnotify-container .jnotify-notification-error .jnotify-close,
  67. .jnotify-container .jnotify-notification-error .jnotify-message {
  68. color: #a72947 !important;
  69. }
  70. /* notification type == "warning" */
  71. .jnotify-container .jnotify-notification-warning .jnotify-background {
  72. background-color: #fff7d1 !important;
  73. }
  74. .jnotify-container .jnotify-notification-warning .jnotify-close,
  75. .jnotify-container .jnotify-notification-warning .jnotify-message {
  76. color: #c2a928 !important;
  77. }