common.css 864 B

1234567891011121314151617181920212223242526272829
  1. html.mobile, .mobile body {
  2. width: 100%;
  3. margin: 0px;
  4. padding: 0px;
  5. }
  6. .mobile body {
  7. overflow-x: hidden;
  8. -webkit-text-size-adjust: none;
  9. background-color: #DEDFDE;
  10. font-family: Helvetica;
  11. font-size: 18px;
  12. }
  13. /* Button Colors */
  14. .mblColorBlue {
  15. color: white;
  16. background-color: #215fdc;
  17. background-image: -webkit-gradient(linear, left top, left bottom, from(#7a9de9), to(#2362dd), color-stop(0.5, #366edf), color-stop(0.5, #215fdc));
  18. }
  19. /* Default Button Colors */
  20. .mblColorDefault {
  21. color: black;
  22. background-color: #CED3CE;
  23. background-image: -webkit-gradient(linear, left top, left bottom, from(#f7fbf7), to(#cecfd6), color-stop(0.5, #ced3ce));
  24. }
  25. .mblColorDefaultSel {
  26. color: white;
  27. background-color: #0869C6;
  28. background-image: -webkit-gradient(linear, left top, left bottom, from(#088eef), to(#0851ad), color-stop(0.5, #0869c6));
  29. }