gamestyles.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*Stylesheet*/
  2. * {
  3. -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
  4. }
  5. BODY, HTML {
  6. -webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold */
  7. -webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */
  8. -webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */
  9. -webkit-tap-highlight-color: transparent;
  10. margin: 0;
  11. padding: 0;
  12. font-family: Arial, Verdana, sans-serif;
  13. font-size: 12px;
  14. font-weight: normal;
  15. color: #ccc;
  16. background-color: #1c5687;
  17. overflow: hidden;
  18. }
  19. .loader {
  20. width: 100%;
  21. height: 50px;
  22. position: absolute;
  23. text-align:center;
  24. margin-top: 250px;
  25. background: url('../assets/img/loader.gif') no-repeat 50% 50%;
  26. display: block !important;
  27. }
  28. .loaderPercentage {
  29. font-family: Arial, Verdana, sans-serif;
  30. font-size: 30px;
  31. font-weight: bold;
  32. width: 100%;
  33. position: absolute;
  34. text-align:center;
  35. margin-top: 70px;
  36. display: block !important;
  37. }