app.css 920 B

1234567891011121314151617181920212223242526272829303132333435363738
  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: #000;
  16. background-color: #000000;
  17. overflow: hidden;
  18. }
  19. .portraitLock {
  20. position: absolute;
  21. display: none;
  22. width: 100%;
  23. height: 100%;
  24. background-color: #000000;
  25. }
  26. .rotatePhoneIcon {
  27. width: 60%;
  28. margin: 30px auto;
  29. display: block;
  30. }