2023-12-01 13:44:58 +01:00
|
|
|
|
|
|
|
* {
|
|
|
|
font-family: 'MonaspaceXenon';
|
|
|
|
}
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2023-12-02 01:01:16 +01:00
|
|
|
|
|
|
|
background-color: #EFEFEF;
|
2023-12-01 13:44:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
margin: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
2023-12-02 01:01:16 +01:00
|
|
|
font-size: 3em;
|
2023-12-01 13:44:58 +01:00
|
|
|
margin-bottom: 1rem;
|
2023-12-02 01:01:16 +01:00
|
|
|
text-shadow: 0 0 8px #888;
|
2023-12-01 13:44:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#maincontent {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
2023-12-02 01:01:16 +01:00
|
|
|
padding: 0 2rem;
|
2023-12-01 13:44:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.server {
|
|
|
|
background-color: #CCC;
|
|
|
|
padding: 2px 0.5rem;
|
|
|
|
|
|
|
|
color: black;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
border-radius: 6px;
|
|
|
|
border: 1px solid #888;
|
|
|
|
|
|
|
|
box-shadow: 0 0 4px #888;
|
|
|
|
|
|
|
|
transition: all 0.2s;
|
2023-12-02 01:01:16 +01:00
|
|
|
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto 1fr auto;
|
|
|
|
grid-column-gap: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.server .txt_icon {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.server .txt_icon {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.server .txt_port {
|
|
|
|
opacity: 0.6;
|
2023-12-01 13:44:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.server:hover {
|
|
|
|
box-shadow: 0 0 4px #000;
|
|
|
|
background-color: #AAA;
|
2023-12-02 01:01:16 +01:00
|
|
|
color: #00A;
|
2023-12-01 13:44:58 +01:00
|
|
|
}
|
|
|
|
|