added db and list of servers

This commit is contained in:
Laptop-Luis
2026-02-16 20:57:40 +01:00
parent 6d41099c39
commit b6c752ce79
9 changed files with 1992 additions and 82 deletions

View File

@@ -12,25 +12,67 @@ body {
padding: 0;
}
.container {
max-width: 800px;
margin: 60px auto;
background: #1E1E1E;
padding: 40px;
border-radius: 24px;
box-shadow: 0 4px 20px rgba(0,0,0,0.4);
border: 1px solid rgba(255, 255, 255, 0.05);
transition: background-color 0.3s ease;
.main-container {
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px;
}
h1 {
font-size: 2.4em;
margin-bottom: 32px;
margin-bottom: 40px;
text-align: center;
color: #FFFFFF;
font-weight: 500;
}
.servers-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 24px;
}
.server-card {
background: #1E1E1E;
padding: 32px;
border-radius: 24px;
box-shadow: 0 4px 20px rgba(0,0,0,0.4);
border: 1px solid rgba(255, 255, 255, 0.05);
transition: all 0.3s ease;
}
.server-card:hover {
box-shadow: 0 8px 24px rgba(0,0,0,0.5);
border-color: rgba(255, 255, 255, 0.1);
transform: translateY(-2px);
}
.server-card h2 {
font-size: 1.3em;
margin-top: 0;
margin-bottom: 24px;
text-align: center;
color: #FFFFFF;
font-weight: 500;
}
.server-info {
margin-bottom: 20px;
font-size: 0.9em;
text-align: center;
}
.server-info p {
margin: 4px 0;
font-family: 'Courier New', monospace;
color: #B0B0B0;
}
.server-info strong {
color: #E3E3E3;
font-weight: 600;
}
.button-group {
display: flex;
justify-content: center;

View File

@@ -13,22 +13,56 @@ body {
text-align: center;
}
.container {
padding: 20px;
background-color: #1E1E1E;
border-radius: 24px;
margin: 12px;
box-shadow: 0 4px 16px rgba(0,0,0,0.4);
border: 1px solid rgba(255, 255, 255, 0.05);
.main-container {
padding: 16px;
}
h1 {
font-size: 2em;
margin-bottom: 28px;
margin-bottom: 24px;
font-weight: 500;
color: #FFFFFF;
}
.servers-grid {
display: grid;
grid-template-columns: 1fr;
gap: 16px;
}
.server-card {
padding: 20px;
background-color: #1E1E1E;
border-radius: 24px;
box-shadow: 0 4px 16px rgba(0,0,0,0.4);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.server-card h2 {
font-size: 1.2em;
margin-top: 0;
margin-bottom: 16px;
font-weight: 500;
color: #FFFFFF;
}
.server-info {
margin-bottom: 16px;
font-size: 0.85em;
text-align: center;
}
.server-info p {
margin: 3px 0;
font-family: 'Courier New', monospace;
color: #B0B0B0;
}
.server-info strong {
color: #E3E3E3;
font-weight: 600;
}
.button-group {
display: flex;
flex-direction: column;