added redirect and ability to save checkboxes
This commit is contained in:
@@ -36,9 +36,34 @@
|
||||
align-items: center; /* Optional: center items within the column */
|
||||
gap: 1rem; /* Space between elements */
|
||||
}
|
||||
|
||||
.app-panel {
|
||||
display: inline-block;
|
||||
width: 200px;
|
||||
height: 120px;
|
||||
margin: 10px;
|
||||
padding: 20px;
|
||||
background-color: #f0f0f0;
|
||||
border-radius: 10px;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
transition: background 0.2s ease;
|
||||
}
|
||||
.app-panel:hover {
|
||||
background-color: #e0e0e0;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="app-panel"
|
||||
hx-get="/redirect?file=shadowrun.html"
|
||||
hx-trigger="click"
|
||||
hx-target="this"
|
||||
hx-swap="none">
|
||||
<h3>Shadowrun</h3>
|
||||
</div>
|
||||
|
||||
<div class="column">
|
||||
<h1>Service Status</h1>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user