2022-12-11 02:02:29 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width">
|
|
|
|
<title>tronnet - client</title>
|
2023-01-28 00:30:46 +00:00
|
|
|
<link rel="icon" href="images/favicon.svg" sizes="any" type="image/svg+xml">
|
2022-12-13 00:27:45 +00:00
|
|
|
<link rel="stylesheet" href="css/style.css" type="text/css">
|
2023-04-05 22:29:15 +00:00
|
|
|
<link rel="stylesheet" href="css/button.css" type="text/css">
|
2023-01-09 22:37:32 +00:00
|
|
|
<script src="scripts/index.js" type="module"></script>
|
2023-02-14 21:08:48 +00:00
|
|
|
<script src="scripts/instance.js" type="module"></script>
|
2023-04-03 22:49:24 +00:00
|
|
|
<style>
|
2023-04-06 21:55:31 +00:00
|
|
|
@media screen and (min-width: 1000px) {
|
|
|
|
#instance-container {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto auto auto auto auto 1fr auto;
|
|
|
|
column-gap: 2.5em;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
#instance-container-header * {
|
|
|
|
margin-top: 0px;
|
|
|
|
}
|
|
|
|
instance-obj {
|
|
|
|
display: contents;
|
|
|
|
}
|
|
|
|
instance-obj:after, instance-obj:first-of-type:before {
|
|
|
|
content: " ";
|
|
|
|
border-bottom: 1px solid var(--content-txt-color);
|
|
|
|
grid-column: 1 / span 8;
|
|
|
|
}
|
2023-04-06 04:21:03 +00:00
|
|
|
}
|
2023-04-06 21:55:31 +00:00
|
|
|
@media screen and (max-width: 1000px) {
|
|
|
|
#instance-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
#instance-container-header * {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
instance-obj {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto auto auto 1fr;
|
|
|
|
gap: 20px;
|
|
|
|
padding-top: 20px;
|
|
|
|
padding-bottom: 20px;
|
|
|
|
border-bottom: 1px solid var(--content-txt-color);
|
|
|
|
}
|
|
|
|
instance-obj:first-of-type {
|
|
|
|
border-top: 1px solid var(--content-txt-color);
|
|
|
|
}
|
|
|
|
.btn-group {
|
|
|
|
grid-column: 3 / span 2;
|
|
|
|
}
|
2023-04-03 22:49:24 +00:00
|
|
|
}
|
|
|
|
</style>
|
2022-12-11 02:02:29 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2023-01-09 22:36:50 +00:00
|
|
|
<header>
|
2023-04-06 03:46:39 +00:00
|
|
|
<h1>tronnet</h1>
|
|
|
|
<hr>
|
2023-04-06 02:05:57 +00:00
|
|
|
<nav id="nav">
|
2023-04-05 23:39:28 +00:00
|
|
|
<a href="index.html" aria-current="true">Instances</a>
|
|
|
|
<a href="account.html">Account</a>
|
|
|
|
<a href="login.html">Logout</a>
|
2023-04-06 03:46:39 +00:00
|
|
|
</nav>
|
2023-01-09 22:36:50 +00:00
|
|
|
</header>
|
2023-02-21 21:50:54 +00:00
|
|
|
<main>
|
2023-04-06 03:46:39 +00:00
|
|
|
<h2>Instances</h2><hr>
|
2023-04-03 22:49:24 +00:00
|
|
|
<div id="instance-container">
|
2023-02-21 21:52:57 +00:00
|
|
|
</div>
|
|
|
|
<div class="center-div" style="text-align: center;">
|
2023-02-23 21:11:43 +00:00
|
|
|
<img id="instance-add" src="images/actions/instance/add-instance.svg" class="clickable" alt="Create New Instance" title="Create New Instance">
|
2023-02-21 21:52:57 +00:00
|
|
|
</div>
|
2023-02-21 21:50:54 +00:00
|
|
|
</main>
|
2023-03-25 23:38:15 +00:00
|
|
|
<footer><p>© tronnet</p></footer>
|
2022-12-11 02:02:29 +00:00
|
|
|
</body>
|
|
|
|
</html>
|