1234567891011121314151617181920212223242526272829303132333435363738394041 |
- html,body,canvas {
- margin: 0px;
- padding: 0px;
- border:none;
- text-align: center;
- background-color: black;
- }
- canvas {
- background-color: white;
- }
- #lbFrame {
- border: none;
- top: 0px;
- left: 0px;
- position: absolute;
- z-index: 999;
- }
- .closeIframe {
- position: absolute;
- top: 4px;
- right: 4px;
- z-index: 999;
- display: none;
- width: 40px;
- height: 40px;
- -moz-border-radius: 100px;
- -webkit-border-radius: 100px;
- border-radius: 100px;
- background-color: #333;
- color: #FFF;
- border: 2px solid #FFF;
- font-size: 26px;
- font-weight: bold;
- line-height: 40px;
- overflow: hidden;
- font-family: Arial, Helvetica, sans-serif;
- }
|