47 lines
1.5 KiB
HTML
47 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="tr">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
<title>MWSE Studio</title>
|
||
<style>
|
||
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
||
html, body { width: 100%; height: 100%; overflow: hidden; background: #1a1a1a; }
|
||
#app { width: 100%; height: 100%; display: flex; flex-direction: column; }
|
||
|
||
/* Loading overlay */
|
||
#loading {
|
||
position: fixed; inset: 0; background: #1a1a1a;
|
||
display: flex; flex-direction: column;
|
||
align-items: center; justify-content: center;
|
||
color: #888; font-family: 'Segoe UI', system-ui, sans-serif;
|
||
font-size: 13px; gap: 14px; z-index: 9999;
|
||
}
|
||
#loading .logo {
|
||
font-size: 22px; font-weight: 700; color: #fff;
|
||
letter-spacing: .12em; text-transform: uppercase;
|
||
}
|
||
#loading .logo span { color: #0078d4; }
|
||
#loading .spinner {
|
||
width: 22px; height: 22px;
|
||
border: 2px solid #2a2a2a;
|
||
border-top-color: #0078d4;
|
||
border-radius: 50%;
|
||
animation: spin .7s linear infinite;
|
||
}
|
||
@keyframes spin { to { transform: rotate(360deg); } }
|
||
#loading.hidden { display: none; }
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div id="loading">
|
||
<div class="logo">MWSE <span>Studio</span></div>
|
||
<div class="spinner"></div>
|
||
<div id="loading-msg">Sunucuya bağlanıyor…</div>
|
||
</div>
|
||
<div id="app"></div>
|
||
|
||
<script type="module" src="/studio/app.js"></script>
|
||
</body>
|
||
</html>
|