game_base.css 627 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. html,body,canvas {
  2. margin: 0px;
  3. padding: 0px;
  4. border:none;
  5. text-align: center;
  6. background-color: black;
  7. }
  8. canvas {
  9. background-color: white;
  10. }
  11. #lbFrame {
  12. border: none;
  13. top: 0px;
  14. left: 0px;
  15. position: absolute;
  16. z-index: 999;
  17. }
  18. .closeIframe {
  19. position: absolute;
  20. top: 4px;
  21. right: 4px;
  22. z-index: 999;
  23. display: none;
  24. width: 40px;
  25. height: 40px;
  26. -moz-border-radius: 100px;
  27. -webkit-border-radius: 100px;
  28. border-radius: 100px;
  29. background-color: #333;
  30. color: #FFF;
  31. border: 2px solid #FFF;
  32. font-size: 26px;
  33. font-weight: bold;
  34. line-height: 40px;
  35. overflow: hidden;
  36. font-family: Arial, Helvetica, sans-serif;
  37. }