Skip to content

Commit

Permalink
hahahahha
Browse files Browse the repository at this point in the history
  • Loading branch information
Wynadorn committed Sep 29, 2021
1 parent f769b7b commit 454f89d
Show file tree
Hide file tree
Showing 8 changed files with 60 additions and 6 deletions.
Binary file added assets/favicon.ico
Binary file not shown.
54 changes: 52 additions & 2 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
margin: 0;
}

.regular:hover
{
visibility: hidden;
}

body
{
Expand All @@ -25,7 +29,7 @@ body

@font-face {
font-family: "CarlonAntique";
src: url("./assets/CaslonAntique.ttf");
src: url("../assets/CaslonAntique.ttf");
}

#QueueContainer span
Expand All @@ -34,8 +38,54 @@ body
position: fixed;
font-size: 28pt;
font-family: "CarlonAntique";
top: 200px;
letter-spacing: 5px;
top: 218px;
left: 50%;
transform: translate(-50%, -50%);
margin: 0 auto;
}

#top-buttons
{
width: 160px;
height: 50px;
position: fixed;
top: 10px;
right: 20px;
}

#closeButton
{
width: 60px;
height: 61px;;
background-image: url("../img/close.png");
position: absolute;
right:50px;
top: 60px;
}

#closeButton:hover
{
background-image: url("../img/close-glow.png");
}

#cancelButton
{
width: 348px;
height: 50px;;
background-image: url("../img/cancel.png");
position: absolute;
left: 50%;
margin-left: -174px;
bottom: 88px;
}

#cancelButton:hover
{
background-image: url("../img/cancel-glow.png");
}

body:after{
display:none;
content: url("../img/close-glow.png") url("../img/cancel-glow.png");
}
Binary file added img/buttons.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/cancel-glow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/cancel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/close-glow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/close.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 8 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,16 @@
<title>New World Online</title>
<link rel="stylesheet" href="./css/style.css">
<meta name="New World Online" content="Experience New World right in your browser! No download required!">
<link rel="icon" type="image/png" href="./assets/favicon.ico">
</head>
<body>
<div id="top-buttons">
<img src="./img/buttons.png">
</div>
<div id="QueueContainer">
<span>9999</span>
<div id="closeButton"></div>
<div id="cancelButton"></div>
<span id="QueuePosition">1213</span>
<img src="./img/queue.png">
</div>
<div id="PlayButton">
Expand All @@ -20,10 +26,8 @@
</div>
</div>

<audio autoplay controls id="myaudio">
<audio autoplay controls id="bg-music">
<source src="./assets/embark.mp3" type="audio/mpeg">
</audio>

<script> document.getElementById('myaudio').play();</script>
</body>
</html>

0 comments on commit 454f89d

Please sign in to comment.