Skip to content

Commit

Permalink
i may kms if this does not work
Browse files Browse the repository at this point in the history
  • Loading branch information
TheElevatedOne committed Nov 11, 2024
1 parent 7fb6f5c commit 71c3fc9
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 7 deletions.
17 changes: 13 additions & 4 deletions css/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ body {
background-attachment: fixed;
background-size: cover;
background-position: center;
overflow: hidden;
overflow-y: hidden;
overflow-x: hidden;
height: 100%;
}

.wrong-size {
display: flex;
display: none;
visibility: hidden;
opacity: 0;
z-index: 1000;
width: 100vw;
height: 100vh;
top: 0;
Expand Down Expand Up @@ -57,6 +57,7 @@ body {
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
position: absolute;
z-index: -1;
}

.clock {
Expand Down Expand Up @@ -87,6 +88,7 @@ body {
justify-content: center;
padding-top: 0.1%;
padding-bottom: 0.1%;
z-index: -1;
& > div {
width: 3vw;
height: 4vh;
Expand Down Expand Up @@ -191,6 +193,7 @@ body {
border-radius: 30px;
border: 2px solid red;
cursor: default;
z-index: -1;
}

.name {
Expand Down Expand Up @@ -258,7 +261,6 @@ body {
}

.window {
z-index: 10;
display: block;
position: absolute;
top: 3vh;
Expand Down Expand Up @@ -663,6 +665,13 @@ body {
}
}

.vapesite {
width: 98.2vw;
height: 80vh;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
}

.win-music {
display: none;
position: relative;
Expand Down
8 changes: 5 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, inition-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ELEVATED | Desktop</title>
<link rel="shortcut icon" href="./logo/logo.png" type="image/x-icon">
<link rel="stylesheet" href="./css/default.css">
Expand All @@ -28,10 +28,12 @@
if (windowWidth/windowHeight>=2.45) {
document.getElementById("wrong-size").style.visibility = "visible";
document.getElementById("wrong-size").style.opacity = "1";
document.getElementById("wrong-size").style.display = "flex";
document.getElementById("wrong-size-text").innerHTML = "Screen too wide, content cannot be displayed."
} else {
document.getElementById("wrong-size").style.visibility = "hidden";
document.getElementById("wrong-size").style.opacity = "0";
document.getElementById("wrong-size").style.opacity = "none";
}
}

Expand Down Expand Up @@ -150,6 +152,8 @@
<div class="exit"></div>
</div>
</div>
<div class="url" id="url"></div>
<iframe class="vapesite" src="https://vape.elevated.ovh" frameborder="0" scrolling="yes" allow="true"></iframe>
</div>
<div class="win-music" id="win-music">
<div class="title-bar" id="title-bar">
Expand Down Expand Up @@ -221,7 +225,5 @@
<!-- <img src="./icons/accessories-image-viewer.svg" alt="Wallpapers"> -->
</div>
</div>
<script>
</script>
</body>
</html>

0 comments on commit 71c3fc9

Please sign in to comment.