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.
63 lines
2.1 KiB
63 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: 17px; |
|
color: white; |
|
} |
|
.mblBackground { |
|
background-color: black; |
|
} |
|
/* 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: #c6c6c6; |
|
background-image: -webkit-gradient(linear, left top, left bottom, from(#dfdfdf), to(#a6a6a6)); |
|
background-image: linear-gradient(to bottom, #dfdfdf 0%, #a6a6a6 100%); |
|
} |
|
.mblColorDefault45 { |
|
background-image: -webkit-gradient(linear, left top, right bottom, from(#dfdfdf), to(#a6a6a6)); |
|
background-image: linear-gradient(to right bottom, #dfdfdf 0%, #a6a6a6 100%); |
|
} |
|
.mblColorDefaultSel { |
|
color: #ffffff; |
|
background-color: #3578b1; |
|
background-image: -webkit-gradient(linear, left top, left bottom, from(#306ea1), to(#266093), color-stop(0.06, #4090d3), color-stop(0.5, #306ea1)); |
|
background-image: linear-gradient(to bottom, #306ea1 0%, #4090d3 6%, #306ea1 50%, #266093 100%); |
|
} |
|
.mblColorDefaultSel45 { |
|
background-image: -webkit-gradient(linear, left top, right bottom, from(#306ea1), to(#266093), color-stop(0.06, #4090d3), color-stop(0.5, #306ea1)); |
|
background-image: linear-gradient(to right bottom, #306ea1 0%, #4090d3 6%, #306ea1 50%, #266093 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; |
|
}
|
|
|