mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
53 lines
890 B
CSS
53 lines
890 B
CSS
.voiceInputHelp {
|
|
background-image: url(../css/images/splash.jpg);
|
|
top: 50px;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
position: fixed;
|
|
background-position: center center;
|
|
background-size: 100% 100%;
|
|
background-repeat: no-repeat;
|
|
/* Need to make sure it is on top of content but underneath slideout panels */
|
|
z-index: 1097;
|
|
}
|
|
|
|
.voiceInputHelpInner {
|
|
background: rgba(10,10,10,.8);
|
|
width: 100%;
|
|
height: 100%;
|
|
color: #eee;
|
|
}
|
|
|
|
.voiceHelpContent {
|
|
max-width: 600px;
|
|
margin: auto;
|
|
padding: 1em 1em 0;
|
|
}
|
|
|
|
.exampleCommands {
|
|
font-size: 15px;
|
|
}
|
|
|
|
.exampleCommand {
|
|
margin: 1em 0;
|
|
}
|
|
|
|
.exampleCommand .fa {
|
|
vertical-align: middle;
|
|
color: #38c;
|
|
}
|
|
|
|
.exampleCommandText {
|
|
margin: 0 1em;
|
|
}
|
|
|
|
.defaultVoiceHelp {
|
|
margin-bottom: 2em;
|
|
}
|
|
|
|
.voiceInputContainer {
|
|
margin: 1.5em 0;
|
|
font-size: 15px;
|
|
}
|