39 lines
593 B
CSS
39 lines
593 B
CSS
html {
|
|
background: #000;
|
|
}
|
|
|
|
#vrButton {
|
|
position: absolute;
|
|
background: url(../assets/img/enter-vr-button-background.png) no-repeat;
|
|
background-size: cover;
|
|
border: 0;
|
|
cursor: pointer;
|
|
right: 20px;
|
|
bottom: 20px;
|
|
z-index: 9999999;
|
|
width: 84px;
|
|
height: 47px;
|
|
}
|
|
|
|
#vrButton.a-hidden {
|
|
visibility: hidden;
|
|
}
|
|
|
|
#vrButton:active {
|
|
border: 0;
|
|
}
|
|
|
|
#vrButton:hover {
|
|
background-position: 0 -50.5px;
|
|
}
|
|
|
|
.a-loader-title {
|
|
color: #ff99b6;
|
|
font-family: monospace;
|
|
font-size: 48px;
|
|
font-style: italic;
|
|
font-weight: bold;
|
|
margin-top: 24px;
|
|
text-transform: uppercase;
|
|
}
|