common.css 1022 B

12345678910111213141516171819202122232425262728293031
  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: #eff1f3;
  10. font-family: Helvetica;
  11. font-size: 14px;
  12. }
  13. /* Button Colors */
  14. .mblColorBlue {
  15. background-color: #366EDF;
  16. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(3.3333333333333335%, rgba(255, 255, 255, 0.1)), color-stop(0.5, rgba(255, 255, 255, 0.6)), color-stop(1, rgba(255, 255, 255, 0.3)));
  17. }
  18. /* Default Button Colors */
  19. .mblColorDefault {
  20. background-color: #5cb0ff;
  21. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(3.3333333333333335%, rgba(255, 255, 255, 0.1)), color-stop(0.5, rgba(255, 255, 255, 0.6)), color-stop(1, rgba(255, 255, 255, 0.3)));
  22. }
  23. .mblColorDefault.mblDomButton {
  24. background-color: #5cb0ff;
  25. }
  26. .mblColorDefaultSel {
  27. background-color: #0064c2;
  28. }
  29. .mblColorDefaultSel.mblDomButton {
  30. background-color: #0064c2;
  31. }