noteBar.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. #noteBar {
  2. position: fixed;
  3. right: 410px;
  4. top: 15px;
  5. z-index: 99999999999999999999999999;
  6. }
  7. .note-bar {
  8. margin-bottom: 6px;
  9. position: relative;
  10. display: none;
  11. }
  12. .note-bar .ibtn-note-bar-close {
  13. color: #FFFFFF;
  14. position: absolute;
  15. right: 2px;
  16. top: 2px;
  17. cursor: pointer;
  18. }
  19. .note-bar .note-icon {
  20. position: absolute;
  21. left: 4px;
  22. top: 50%;
  23. margin-top: -10px;
  24. font-size: 20px;
  25. color: #F7F6F1;
  26. }
  27. .note-bar .note-content {
  28. padding: 10px 30px 10px 35px;
  29. line-height: 1.5;
  30. width: 200px;
  31. background: #cccccc;
  32. }
  33. /*S alertNote*/
  34. #alertNote {
  35. background:url(img/alpha-50.png);
  36. width:100%;
  37. height:100%;
  38. position:fixed;
  39. _position:absolute;
  40. left:0px;
  41. top:0px;
  42. right:0px;
  43. bottom:0px;
  44. z-index:1999999999999999999999999999999999999;
  45. display:none;
  46. }
  47. #alertNoteWrap {
  48. position: absolute;
  49. left: 50%;
  50. top: 45%;
  51. width: 300px;
  52. background:#FFFFFF;
  53. box-shadow: 2px 3px 5px rgba(0,0,0,0.2);
  54. margin: -100px 0 0 -150px;
  55. padding:20px;
  56. color: #fff;
  57. border: 5px solid #ddd;
  58. text-align: center;
  59. font-size: 18px;
  60. }
  61. #alertNoteWrap.success {
  62. background: green;
  63. }
  64. #alertNoteWrap.error {
  65. background: red;
  66. }
  67. #alertNoteWrap.warning {
  68. background: #ff6600;
  69. }
  70. #alertNoteWrap p {
  71. float: left;
  72. margin: 0px;
  73. }
  74. #alertNoteWrap .button {
  75. padding: 3px 12px;
  76. }
  77. /*E alertNote*/