Multiplayer WebXR Project with Vite/Node/Three.js
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

62 lines
997 B

@font-face {
font-family: 'Redacted70';
src: url('../fonts/Redaction_70-Regular.woff2') format('woff2');
}
body {
margin: 0;
overflow: hidden;
font-family: sans-serif;
}
canvas {
display: block;
}
#blocker {
position:fixed;
top:0;
left:0;
width:100vw;
height:100vh;
background:#000000;
background: radial-gradient(circle,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.9) 100%);
opacity:1.0;
z-index:10;
display:flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 20px;
transition: opacity 1s ease-out;
font-family: 'Redacted70';
}
#instructions {
color:#fff;
text-align:center;
position: relative;
font-size: 40px;
text-transform: lowercase;
cursor: pointer;
}
#title {
color:#fff;
text-align:center;
position:relative;
font-size: 80px;
letter-spacing: 10px;
}
#title span {
display: inline-block;
transition: transform 0s ease-in-out;
}
iframe {
width: 100%;
height: 100%;
border: none;
}