46 lines
936 B
CSS
46 lines
936 B
CSS
/*Banner transparency*/
|
|
.skinHeader {
|
|
background: none !important;
|
|
background-color: rgba(0, 0, 0, 0) !important;
|
|
}
|
|
|
|
/*Achieves similar effect without use of mask-image, foregoing the cool fade effect*/
|
|
#liveTvStatusPage,
|
|
#itemDetailPage,
|
|
#userImagePage,
|
|
#displayPreferencesPage,
|
|
#homeScreenPreferencesPage,
|
|
#languagePreferencesPage {
|
|
margin-top: 60px;
|
|
padding-top: 0px !important;
|
|
overflow: scroll;
|
|
}
|
|
|
|
@media all and (min-width: 100em){
|
|
#indexPage,
|
|
#moviesPage,
|
|
#tvRecommendedPage,
|
|
#musicRecommendedPage {
|
|
margin-top: 70px;
|
|
padding-top: 0px !important;
|
|
overflow: scroll;
|
|
}
|
|
#encodingSettingsPage,
|
|
#mediaLibraryPage {
|
|
margin-top: 60px;
|
|
padding-top: 0px !important;
|
|
overflow: scroll;
|
|
}
|
|
}
|
|
|
|
@media all and (max-width: 100em){
|
|
#indexPage,
|
|
#moviesPage,
|
|
#tvRecommendedPage,
|
|
#musicRecommendedPage {
|
|
margin-top: 130px;
|
|
padding-top: 0.5em !important;
|
|
overflow: scroll;
|
|
}
|
|
}
|