Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
TodePond committed Feb 10, 2024
1 parent b8858a8 commit dc3a049
Showing 1 changed file with 59 additions and 57 deletions.
116 changes: 59 additions & 57 deletions docs/not-vr/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,53 +3,53 @@
content="width=device-width, initial-scale=1, user-scalable=no, minimum-scale=1, maximum-scale=1"
/>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
margin: 0;
font-family: sans-serif;
background-color: #000;
color: #fff;
text-align: center;
user-select: none;
touch-action: none;
}

* {
touch-action: none;
}

button {
font-size: 2em;
}

video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
pointer-events: none;
}

#screens {
z-index: 1;
width: 50%;
height: 50%;
}

#wikiblog {
position: fixed;
body {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
margin: 0;
font-family: sans-serif;
background-color: #000;
color: #fff;
text-align: center;
user-select: none;
touch-action: none;
}

* {
touch-action: none;
}

button {
font-size: 2em;
}

video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
pointer-events: none;
}

#screens {
z-index: 1;
width: 50%;
height: 50%;
}

#wikiblog {
position: fixed;
z-index: 2;
width: 25%;
height: 75%;
opacity: 1.0;
left: 70%
}
}

#webcam {
position: fixed;
Expand All @@ -59,28 +59,30 @@
opacity: 1.0;
left: 10%;
bottom: 10%;
rotate: -10deg;
rotate: -10deg;
}

iframe {
width: 100%;
height: 100%;
}

iframe {
width: 100%;
height: 100%;
}
.wobble {
animation: wobble 30s infinite;
}

.wobble {
animation: wobble 30s infinite;
}
@keyframes wobble {
0% {
transform: rotate(5deg);
}

@keyframes wobble {
0% {
transform: rotate(5deg);
}
50% {
50% {
transform: rotate(-5deg);
}
}

100% {
transform: rotate(5deg);
}
}
</style>

<video></video>
Expand Down

0 comments on commit dc3a049

Please sign in to comment.