1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- #noteBar {
- position: fixed;
- right: 410px;
- top: 15px;
- z-index: 99999999999999999999999999;
- }
- .note-bar {
- margin-bottom: 6px;
- position: relative;
- display: none;
- }
- .note-bar .ibtn-note-bar-close {
- color: #FFFFFF;
- position: absolute;
- right: 2px;
- top: 2px;
- cursor: pointer;
- }
- .note-bar .note-icon {
- position: absolute;
- left: 4px;
- top: 50%;
- margin-top: -10px;
- font-size: 20px;
- color: #F7F6F1;
- }
- .note-bar .note-content {
- padding: 10px 30px 10px 35px;
- line-height: 1.5;
- width: 200px;
- background: #cccccc;
- }
- /*S alertNote*/
- #alertNote {
- background:url(img/alpha-50.png);
- width:100%;
- height:100%;
- position:fixed;
- _position:absolute;
- left:0px;
- top:0px;
- right:0px;
- bottom:0px;
- z-index:1999999999999999999999999999999999999;
- display:none;
- }
- #alertNoteWrap {
- position: absolute;
- left: 50%;
- top: 45%;
- width: 300px;
- background:#FFFFFF;
- box-shadow: 2px 3px 5px rgba(0,0,0,0.2);
- margin: -100px 0 0 -150px;
- padding:20px;
- color: #fff;
- border: 5px solid #ddd;
- text-align: center;
- font-size: 18px;
- }
- #alertNoteWrap.success {
- background: green;
- }
- #alertNoteWrap.error {
- background: red;
- }
- #alertNoteWrap.warning {
- background: #ff6600;
- }
- #alertNoteWrap p {
- float: left;
- margin: 0px;
- }
- #alertNoteWrap .button {
- padding: 3px 12px;
- }
- /*E alertNote*/
|