Files
junisaber/src/index.css

62 lines
992 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: rgba(0,0,0,0);
background: none;
2018-12-07 23:15:09 +01:00
background-image: url('../assets/img/loadingLogo.jpg');
height: 36.2vh;
background-repeat: no-repeat;
background-position: center;
2018-12-07 23:15:09 +01:00
margin-top: 0;
background-size: contain;
2018-12-07 23:15:09 +01:00
margin-left: -1vh;
2018-10-12 00:32:14 -07:00
}
2018-10-15 16:15:05 -07:00
@keyframes loaderTitle {
0% { opacity: 1; }
50% { opacity: 0.8; }
2018-10-15 16:15:05 -07:00
100% { opacity: 1; }
}
2018-11-15 23:06:07 +01:00
#tutorial2d {
position: absolute;
width: 60%;
left: 20%;
top: 35%;
}
@media (max-width: 1280px) {
#tutorial2d {
width: 80%;
left: 10%;
}
2018-11-16 16:57:29 +01:00
}