Files
Linktree/view/styles.css
jafreli 8b2ba2bf77
All checks were successful
Build and Push Docker Image to Gitea Registry / build-and-push (push) Successful in 4s
update css
2025-01-16 04:51:48 +01:00

49 lines
985 B
CSS

body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
max-width: 400px;
width: 90%;
background: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 24px;
margin-bottom: 20px;
}
.link {
display: flex; /* Verwende Flexbox */
align-items: center; /* Vertikale Ausrichtung des Texts und des Logos */
margin: 10px 0;
padding: 10px;
background: #007BFF;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background 0.3s ease;
}
.link:hover {
background: #0056b3;
}
/* Stil für das Logo vor dem Linktext */
.link img {
width: 20px; /* Größe des Logos */
height: 20px; /* Höhe des Logos */
margin-right: 8px; /* Abstand zwischen Logo und Text */
}