This repository has been archived on 2025-12-04. You can view files and clone it, but cannot push or open issues or pull requests.
Files
wilcon-agent/style.css
2025-06-29 07:39:33 +02:00

86 lines
1.4 KiB
CSS

body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f4f7f6;
color: #333;
display: flex;
justify-content: center;
align-items: flex-start;
min-height: 100vh;
}
.container {
background-color: #ffffff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
max-width: 800px;
width: 100%;
text-align: center;
}
h1 {
color: #2c3e50;
margin-bottom: 25px;
}
h2 {
color: #34495e;
margin-top: 25px;
margin-bottom: 15px;
border-bottom: 1px solid #eee;
padding-bottom: 5px;
}
.info-card {
background-color: #ecf0f1;
border-left: 5px solid #3498db;
padding: 15px 20px;
margin-bottom: 20px;
border-radius: 5px;
text-align: left;
}
.info-card p {
margin: 8px 0;
line-height: 1.6;
}
.info-card strong {
color: #2c3e50;
display: inline-block;
width: 150px; /* Für bessere Ausrichtung */
}
.message {
padding: 10px;
margin-bottom: 20px;
border-radius: 5px;
font-weight: bold;
color: #555;
background-color: #e9ecef;
}
.message.error {
background-color: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
}
button {
background-color: #28a745;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
margin-top: 20px;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #218838;
}