add website

This commit is contained in:
lx
2026-08-02 17:55:21 +00:00
commit 5ff67c4066
488 changed files with 106390 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
#main {
display: flex;
min-height: 100vh;
margin-top: 120px;
}
.container a {
color: var(--bs-body-color);
text-decoration: none;
}
.admin-box {
transition: 0.2s;
background-color: var(--surface-alt);
/* drop shadow*/
box-shadow: 0 0 10px var(--card-shadow);
}
.admin-box p {
color: var(--text-muted);
}
.admin-box:hover {
transform: scale(1.05);
}
.gameserver-box {
transition: 0.2s;
border: 1px solid var(--linebreak) !important;
}
.greenborder {
border-color: rgb(0, 199, 0) !important;
}
.redborder {
border-color: rgb(199, 0, 0) !important;
}
.yellowborder {
border-color: rgb(199, 199, 0) !important;
}
.gameserver-box:hover {
transform: scale(1.015);
}