MWSE/public/studio.html

86 lines
2.7 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MWSE UI 24.3 Studio</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" />
</head>
<body>
<div class="container" style="max-width: 1200px;padding-top: 125px">
<h2 class="text-center">
MWSE UI 24.3
</h2>
<h1 class="text-center mb-5 mt-3 text-bold fw-bold">
<span>Ağ Adresiniz</span>
<span class="text-danger network-id">
#.#.#.#
</span>
</h1>
</div>
<div style="position:fixed;left:0;right:0;bottom:0;background-color: rgba(0,0,0,.1);display: flex;flex-direction: row;gap: 5px">
<span class="bg-white d-inline-block m-1">
<button class="btn btn-outline-primary" onclick="openInputDevicesWindow()">
Giriş Aygıtları
</button>
</span>
<!--span class="bg-white d-inline-block m-1">
<button class="btn btn-outline-primary" onclick="openOutputDevicesWindow()">
Çıkış Aygıtları
</button>
</span-->
<span class="bg-white d-inline-block m-1">
<button class="btn btn-outline-primary" onclick="openRoomsWindow()">
Odalar
</button>
</span>
<span class="bg-white d-inline-block m-1">
<button class="btn btn-outline-primary" onclick="openPeersWindow()">
Cihazlar
</button>
</span>
</div>
<script src="https://ws.saqut.com/script"></script>
<script src="./core.js" type="module"></script>
<style>
html,body{
margin: 0;
height: 100%;
background-image: url(./studio/background.jpg);
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
*{
box-sizing: border-box;
}
* {
scrollbar-width: thin;
scrollbar-color: #7a7a7a #1e1e1e;
}
*::-webkit-scrollbar {
width: 8px;
height: 8px;
}
*::-webkit-scrollbar-track {
background: #1e1e1e;
}
*::-webkit-scrollbar-thumb {
background-color: #7a7a7a;
border-radius: 8px;
}
*::-webkit-scrollbar-thumb:hover {
background-color: #aaaaaa;
}
</style>
</body>
</html>