Advertisement
Guest User

Untitled

a guest
Feb 7th, 2012
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.87 KB | None | 0 0
  1. ul.noty_container {
  2.     position: fixed;
  3.     z-index: 9999999;
  4.     margin: 0px;
  5.     padding: 0px;
  6.     list-style: none;
  7.     width: 400px;
  8.     top: 20px;
  9. }
  10. ul.noty_container li {
  11.     position: relative;
  12.     float: left;
  13.     clear: both;
  14.     list-style: none;
  15.     padding: 0px;
  16.     margin: 10px 0 0 0;
  17. }
  18. ul.noty_container.topLeft {
  19.     left: 20px;
  20. }
  21. ul.noty_container.topRight {
  22.     right: 40px;
  23. }
  24. ul.noty_container.topRight li {
  25.     float: right;
  26. }
  27. .noty_bar {
  28.     position: fixed;
  29.     display: none;
  30.     z-index: 9999999;
  31.     background: url(../img/alert-lines.png) repeat-x scroll left top #fff;
  32. }
  33. .noty_bar.top {
  34.     top: 0;
  35.     left: 0;
  36.     width: 100%;
  37.     border-bottom: 3px solid #eee;
  38. }
  39. .noty_bar.bottom {
  40.     bottom: 0;
  41.     left: 0;
  42.     width: 100%;
  43.     border-top: 3px solid #eee;
  44. }
  45. .noty_bar.center {
  46.     top: 40%;
  47.     left: 19.5%;
  48.     width: 60%;
  49.     padding: 4px;
  50.     border: 3px solid #eee;
  51.     -webkit-border-radius: 10px;
  52.     -moz-border-radius: 10px;
  53.     border-radius: 10px;
  54. }
  55. .noty_bar.topLeft, .noty_bar.topRight {
  56.     width: 100%;
  57.     clear:both;
  58.     position: relative;
  59.     padding: 4px;
  60.     border: 3px solid #eee;
  61.     -webkit-border-radius: 5px;
  62.     -moz-border-radius: 5px;
  63.     border-radius: 5px;
  64. }
  65. .noty_bar .noty_message {
  66.     padding: 10px 30px 10px 10px;
  67.     font-size: 16px;
  68.     font-weight: bold;
  69.     width: 96%;
  70. }
  71.  
  72. .noty_bar .noty_message .noty_buttons {
  73.     float: right;
  74.     font-size: 13px;
  75.     margin-top: -6px;
  76.     margin-left: -25px;
  77. }
  78.  
  79. .noty_bar .noty_message .noty_buttons button {
  80.     margin-left: 5px;
  81. }
  82.  
  83. .noty_bar .noty_close {
  84.     position: absolute;
  85.     top: 10px;
  86.     right: 10px;
  87.     background-image: url(../img/closelabel.png);
  88.     width: 20px;
  89.     height: 20px;
  90.     cursor: pointer;
  91. }
  92.  
  93. .noty_bar.alert {
  94.     background-color: #fff;
  95.     border-color: #ccc;
  96. }
  97.  
  98. .noty_bar.error {
  99.     background-color: red;
  100.     color: #fff;
  101.     border-color: darkred;
  102. }
  103.  
  104. .noty_bar.success {
  105.     background-color: lightgreen;
  106.     color: darkgreen;
  107.     border-color: darkgreen;
  108. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement