common.css 868 B

1234567891011121314151617181920212223242526
  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: #c5ccd3;
  10. font-family: Helvetica;
  11. font-size: 17px;
  12. }
  13. /* Button Colors */
  14. .mblColorBlue {
  15. background-color: #366EDF;
  16. background-image: -webkit-gradient(linear, left top, left bottom, from(#7a9de9), to(#2362dd), color-stop(0.5, #366edf), color-stop(0.5, #215fdc));
  17. }
  18. /* Default Button Colors */
  19. .mblColorDefault {
  20. background-color: #5877A2;
  21. background-image: -webkit-gradient(linear, left top, left bottom, from(#8ea4c1), to(#4a6c9b), color-stop(0.5, #5877a2), color-stop(0.5, #476999));
  22. }
  23. .mblColorDefaultSel {
  24. background-color: #394D77;
  25. background-image: -webkit-gradient(linear, left top, left bottom, from(#7c87a4), to(#263e6c), color-stop(0.5, #394d77), color-stop(0.5, #243b69));
  26. }