Files
Private-Vorstellungswebsite-v1/assets/stylesheets/pages/impress.css
T
2026-04-27 19:17:22 +02:00

36 lines
964 B
CSS
Executable File

.impressum {
position: relative;
justify-content: space-around;
align-items: center;
width: 95%;
max-width: 980px;
height: auto;
border-radius: 25px;
top: 35px;
left: 50%;
margin-bottom: 20px;
transform: translate(-50%);
background-color: rgba(0, 0, 0, 0.7); /* Dunklerer Hintergrund für besseren Kontrast */
padding: 20px;
color: white; /* Schriftfarbe weiß */
line-height: 1.6; /* Zeilenabstand für bessere Lesbarkeit */
font-size: 16px; /* Schriftgröße für bessere Lesbarkeit */
font-family: 'Nanum Gothic Coding';
}
/* Für Links im Impressum */
.impressum a {
color: #00aaff; /* Farbige Links, die sich abheben */
text-decoration: none;
}
.impressum a:hover {
text-decoration: underline;
}
/* Für Überschriften im Impressum */
.impressum h1, .impressum strong {
color: #ffffff; /* Weiße Schrift für Überschriften und wichtige Punkte */
font-weight: bold;
}