Files
junisaber/src/style.css

46 lines
738 B
CSS
Raw Normal View History

2018-10-12 00:32:14 -07:00
html {
background: #000;
}
2018-10-10 22:12:17 -10:00
#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;
2018-10-12 00:32:14 -07:00
}
.a-loader-title {
2018-10-15 16:15:05 -07:00
animation: loaderTitle 1s infinite alternate;
color: #FAFAFA;
2018-10-12 00:32:14 -07:00
font-family: monospace;
2018-10-15 16:15:05 -07:00
font-size: 72px;
2018-10-12 00:32:14 -07:00
font-style: italic;
font-weight: bold;
2018-10-15 16:15:05 -07:00
margin-top: 108px;
2018-10-12 00:32:14 -07:00
text-transform: uppercase;
}
2018-10-15 16:15:05 -07:00
@keyframes loaderTitle {
0% { opacity: 1; }
50% { opacity: 0.5; }
100% { opacity: 1; }
}