-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
429 additions
and
1 deletion.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Averia+Libre:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Chelsea+Market&display=swap" rel="stylesheet"> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Seaweed+Script&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" href="/launch.css"> | ||
<title>🐟</title> | ||
</head> | ||
<div class="bar"> | ||
<div class="left"> | ||
<div class="input-group"> | ||
<input type="text" id="ticket" name="ticket" placeholder="ticket{"> | ||
<button id="launch">Launch</button> | ||
</div> | ||
</div> | ||
<div class="right"> | ||
<span id="timer">⏳</span> | ||
</div> | ||
</div> | ||
<div id="error"></div> | ||
</div> | ||
<div id="instance"> | ||
<div class="deen-wrapper"> | ||
<div> | ||
<img src="/deen-wait.png" class="deen-can"> | ||
<div class="deen-sign"> | ||
<code id="command"></code> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div id="framewrap"></div> | ||
<script src="/launch.js"></script> | ||
<audio controls autoplay style="visibility: hidden;"> | ||
<source src="https://qa.2024.nautilus.institute/static-uploads/sardines_e4049c7b1f.mp3" type="audio/mpeg"> | ||
</audio> | ||
<script> | ||
var audio = document.querySelector('audio'); | ||
document.body.addEventListener('click', function() { | ||
audio.play(); | ||
}); | ||
</script> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,195 @@ | ||
body { | ||
background-color: #9e9b80; | ||
padding: 0; | ||
margin: 0; | ||
overflow: hidden; | ||
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" | ||
} | ||
iframe { | ||
width: 100%; | ||
height: calc( 100% - 40px ); | ||
border: none; | ||
} | ||
.bar { | ||
height: 35px; | ||
padding: .4em; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
padding: 10px; | ||
max-width: 1000px; | ||
margin: auto; | ||
} | ||
#ticket { | ||
background-color: rgb(154 155 171); | ||
background-clip: initial; | ||
border: 1px solid rgba(32, 33, 35, 0.7); | ||
border-right: none; | ||
color: #444; | ||
resize: none; | ||
height: 35px; | ||
line-height: 36px; | ||
text-indent: 8px; | ||
/*min-width: 520px;*/ | ||
border-radius: 0.375rem; | ||
border-top-right-radius: 0; | ||
border-bottom-right-radius: 0; | ||
width: calc( 100% - 75px ); | ||
} | ||
#timer { | ||
color: white; | ||
} | ||
#launch { | ||
background-color: rgb(154 155 171); | ||
border: 1px solid rgba(32, 33, 35, 0.57); | ||
border-left: none; | ||
border-radius: 0.375rem; | ||
border-top-left-radius: 0; | ||
border-bottom-left-radius: 0; | ||
width: 75px; | ||
height: 2.909em; | ||
line-height: 36px; | ||
color: #fff; | ||
cursor: pointer; | ||
} | ||
#framewrap { | ||
text-align: center; | ||
font-family: "Seaweed Script", cursive; | ||
font-weight: 400; | ||
font-style: normal; | ||
} | ||
#launch:hover { | ||
background-color: rgb(32, 34, 37); | ||
} | ||
#launch.disabled { | ||
cursor: not-allowed; | ||
background-color: rgb(62 62 65); | ||
color: #6a6a6a; | ||
} | ||
.input-group { | ||
display:flex; | ||
position: relative; | ||
align-items: stretch; | ||
width: calc( 100% - 20px ); | ||
box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 0px 15px 0px; | ||
} | ||
.left { | ||
width: 100%; | ||
} | ||
.right { | ||
width: 175px; | ||
text-align: right; | ||
padding-right: 5px; | ||
} | ||
#error { | ||
text-align: center; | ||
width: 100%; | ||
color: #9d0505; | ||
font-family: "Averia Libre", system-ui; | ||
font-weight: 700; | ||
font-style: normal; | ||
} | ||
.booting-instance { | ||
color: white; | ||
width: 100%; | ||
height: 100%; | ||
text-align: center; | ||
padding-top: 4rem; | ||
} | ||
.booting-instance .loader { | ||
display: inline-block; | ||
margin-bottom: 2rem; | ||
} | ||
.deen-can { | ||
top: 0; | ||
left: 0; | ||
position: absolute; | ||
} | ||
.deen-wrapper > div { | ||
position: relative; | ||
height: 400px; | ||
width: 500px; | ||
} | ||
.deen-wrapper { | ||
display: flex; | ||
justify-content: center; | ||
} | ||
.deen-sign { | ||
background: #c2c4ad; | ||
position: absolute; | ||
top: 146px; | ||
left: 150px; | ||
width: 96px; | ||
z-index: -1; | ||
transform: skew(353deg, 5deg); | ||
height: 55px; | ||
display: flex; | ||
align-items: center; | ||
font-size: 11px; | ||
} | ||
|
||
@import url('https://fonts.googleapis.com/css2?family=Averia+Libre:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Chelsea+Market&display=swap'); | ||
|
||
#instance { | ||
color: white; | ||
width: 100%; | ||
height: 100%; | ||
text-align: center; | ||
padding-top: 4rem; | ||
} | ||
|
||
#command { | ||
color: #822f06; | ||
font-family: "Averia Libre", system-ui; | ||
font-weight: 700; | ||
font-style: normal; | ||
|
||
} | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
.loader { | ||
position: relative; | ||
font-size: 16px; | ||
width: 5.5em; | ||
height: 5.5em; | ||
} | ||
.loader:before{ | ||
content: ''; | ||
position: absolute; | ||
transform: translate(-50%, -50%) rotate(45deg); | ||
height: 100%; | ||
width: 4px; | ||
background: #fff; | ||
left: 50%; | ||
top: 50%; | ||
} | ||
.loader:after{ | ||
content: ''; | ||
position: absolute; | ||
left: 0.2em; | ||
bottom: 0.18em; | ||
width: 1em; | ||
height: 1em; | ||
background-color: #de3500; | ||
border-radius: 15%; | ||
animation: rollingRock 2.5s cubic-bezier(.79, 0, .47, .97) infinite; | ||
} | ||
@keyframes rollingRock { | ||
0% {transform: translate(0, -1em) rotate(-45deg)} | ||
5% {transform: translate(0, -1em) rotate(-50deg)} | ||
20% {transform: translate(1em, -2em) rotate(47deg)} | ||
25% {transform: translate(1em, -2em) rotate(45deg)} | ||
30% {transform: translate(1em, -2em) rotate(40deg)} | ||
45% {transform: translate(2em, -3em) rotate(137deg)} | ||
50% {transform: translate(2em, -3em) rotate(135deg)} | ||
55% {transform: translate(2em, -3em) rotate(130deg)} | ||
70% {transform: translate(3em, -4em) rotate(217deg)} | ||
75% {transform: translate(3em, -4em) rotate(220deg)} | ||
100% {transform: translate(0, -1em) rotate(-225deg)} | ||
} |
Oops, something went wrong.