2022-02-18 01:51:35 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>WorkAdventure Desktop Demo</title>
|
|
|
|
<style>
|
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
height: 100%;
|
2022-02-19 01:08:33 +01:00
|
|
|
width: 100%;
|
2022-02-18 01:51:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
display: flex;
|
2022-02-19 01:08:33 +01:00
|
|
|
flex-direction: row;
|
|
|
|
background-color: #30343D;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
display: flex;
|
2022-02-18 01:51:35 +01:00
|
|
|
width: 70px;
|
2022-02-19 01:08:33 +01:00
|
|
|
flex-direction: column;
|
|
|
|
background-color: #2B2F37;
|
2022-02-18 01:51:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#servers {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
#servers div {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 0.5rem;
|
|
|
|
color: #62727C;
|
|
|
|
border: 1px solid #62727C;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 50%;
|
|
|
|
height: 50px;
|
|
|
|
width: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#servers div:hover {
|
|
|
|
border-color: #E1E4E8;
|
|
|
|
color: #E1E4E8;
|
|
|
|
}
|
|
|
|
|
|
|
|
#btn-reload {
|
|
|
|
margin-top: auto;
|
|
|
|
}
|
2022-02-19 01:08:33 +01:00
|
|
|
|
|
|
|
.main {
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2022-02-18 01:51:35 +01:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
2022-02-19 01:08:33 +01:00
|
|
|
<div class="sidebar">
|
|
|
|
<div id="servers">
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<button id="btn-reload">Refresh</button>
|
|
|
|
</div>
|
|
|
|
<div class="main">
|
|
|
|
<img src="../assets/icons/logo-text.png" />
|
|
|
|
</div>
|
2022-02-18 01:51:35 +01:00
|
|
|
<script src="./index.js" lang="javascript"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|