You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
2.1 KiB
62 lines
2.1 KiB
html.mobile, |
|
.mobile body { |
|
width: 100%; |
|
margin: 0; |
|
padding: 0; |
|
} |
|
.mobile body { |
|
overflow-x: hidden; |
|
-webkit-text-size-adjust: none; |
|
font-family: Helvetica; |
|
font-size: 18px; |
|
} |
|
.mblBackground { |
|
background-color: #dedfde; |
|
} |
|
/* Button Colors */ |
|
.mblColorBlue { |
|
color: #ffffff; |
|
background-color: #366edf; |
|
background-image: -webkit-gradient(linear, left top, left bottom, from(#7a9de9), to(#2362dd), color-stop(0.5, #366edf), color-stop(0.5, #215fdc)); |
|
background-image: linear-gradient(to bottom, #7a9de9 0%, #366edf 50%, #215fdc 50%, #2362dd 100%); |
|
} |
|
.mblColorBlue45 { |
|
background-image: -webkit-gradient(linear, left top, right bottom, from(#7a9de9), to(#2362dd), color-stop(0.5, #366edf), color-stop(0.5, #215fdc)); |
|
background-image: linear-gradient(to right bottom, #7a9de9 0%, #366edf 50%, #215fdc 50%, #2362dd 100%); |
|
} |
|
/* Default Button Colors */ |
|
.mblColorDefault { |
|
color: #000000; |
|
background-color: #ced3ce; |
|
background-image: -webkit-gradient(linear, left top, left bottom, from(#f7fbf7), to(#cecfd6), color-stop(0.5, #ced3ce)); |
|
background-image: linear-gradient(to bottom, #f7fbf7 0%, #ced3ce 50%, #cecfd6 100%); |
|
} |
|
.mblColorDefault45 { |
|
background-image: -webkit-gradient(linear, left top, right bottom, from(#f7fbf7), to(#cecfd6), color-stop(0.5, #ced3ce)); |
|
background-image: linear-gradient(to right bottom, #f7fbf7 0%, #ced3ce 50%, #cecfd6 100%); |
|
} |
|
.mblColorDefaultSel { |
|
color: #ffffff; |
|
background-color: #0869c6; |
|
background-image: -webkit-gradient(linear, left top, left bottom, from(#088eef), to(#0851ad), color-stop(0.5, #0869c6)); |
|
background-image: linear-gradient(to bottom, #088eef 0%, #0869c6 50%, #0851ad 100%); |
|
} |
|
.mblColorDefaultSel45 { |
|
background-image: -webkit-gradient(linear, left top, right bottom, from(#088eef), to(#0851ad), color-stop(0.5, #0869c6)); |
|
background-image: linear-gradient(to right bottom, #088eef 0%, #0869c6 50%, #0851ad 100%); |
|
} |
|
.mblSpriteIcon { |
|
position: absolute; |
|
} |
|
.mblSpriteIconParent { |
|
position: relative; |
|
font-size: 1px; |
|
} |
|
.mblImageIcon { |
|
vertical-align: top; |
|
} |
|
.unselectable { |
|
-ms-user-select: none; |
|
-webkit-user-select: none; |
|
-moz-user-select: none; |
|
}
|
|
|