common.css 883 B

123456789101112131415161718192021222324252627
  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: black;
  10. font-family: Helvetica;
  11. font-size: 17px;
  12. color: white;
  13. }
  14. /* Button Colors */
  15. .mblColorBlue {
  16. background-color: #366EDF;
  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. background-color: #ADADAD;
  22. background-image: -webkit-gradient(linear, left top, left bottom, from(#e5e5e5), to(#7f7f7f), color-stop(0.5, #adadad), color-stop(0.5, #909090));
  23. }
  24. .mblColorDefaultSel {
  25. background-color: #FFC700;
  26. background-image: -webkit-gradient(linear, left top, left bottom, from(#ad7500), to(#ffaa00), color-stop(0.06, #ffb200), color-stop(0.5, #ffc700));
  27. }