blob: ae0014f2ab4b4f501da68fe392b670b94e851297 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
/*modify the base font size for mobile devices*/
body
{
/*bumping up the font-sizes for higher res displays*/
font-size:54%;
}
@media (max-width: 336px)
{
body
{
font-size: 44%;
}
article.helpMenu li a
{
height:2.25em;
line-height:2.25em;
}
}
/*for odd Android aspect ratios*/
@media (max-width: 385px) and (min-width:337px) and (max-height:520px)
{
body
{
font-size: 44%;
}
article.helpMenu li a
{
height:2em;
line-height:2em;
}
}
/*gradient for smartglass UI*/
body
{
/*gradient for smartglass UI*/
background: -webkit-linear-gradient(top, #000000 50%, #323232); /* Safari and Chrome*/
background: -moz-linear-gradient(top, #000000 50%, #323232);/*Firefox*/
background: -ms-linear-gradient(top, #000000 50%, #323232);/*IE*/
}
/*if the element is a main menu or a sub menu hide the placeholder element to the right*/
.helpMenu .helpContent
{
display: none;
}
article .helpContent
{
height: 75%;
background-color: transparent;
padding: 0;
margin: 0;
position: absolute;
top: 5em;
left: 5%;
width: 90%;
overflow: auto;
-webkit-overflow-scrolling: touch;
line-height:1;
}
article .contentPanel
{
width: 96%;
height: 100%;
padding: 0px 2% 1em 2%;
overflow:hidden;
}
article .helpContent
{
top:7em;
height: 65%;
}
.contentPanel .backLink
{
background-position-x: 1em;
background-position-y: 1em;
/*need to resize the back button due the change in font size for retina displays*/
background-size:75%;
background-position:.15em .5em;
height:2.5em;
width:2.5em;
float: left;
margin: 0px;
}
/*note you must re-initialize any background properties if you swap images*/
.contentPanel .backLink:focus
{
background-position-x: 1em;
background-position-y: 1em;
background-size:75%;
background-position:.15em .5em;
}
.articles article:not(.helpMenu) .articleTitle
{
margin-top: 1.9em;
margin-left: .35em;
height: 2.25em;
}
article .contentPanel .articleTitle
{
margin-top:.25em;
left: 2em;
display: block;
width: 70%;
max-height: 3.8em;
overflow: hidden;
}
article .contentPanel .navLinks
{
clear: both;
}
.helpMenu li a
{
height: 2.75em;
line-height: 2.75em;
}
/*remove controller button states*/
.navLinks a, .navLinks a:focus, .navLinks a:hover:not(:focus)
{
border:none;
background-color: transparent;
outline:0;
box-shadow:none;
}
article .contentPanel .panelButtons
{
display: none;
}
.pageCounter
{
display:block;
position:fixed;
bottom:.15em;
right:.5em;
}
|