This commit is contained in:
PanSi21 2025-04-02 08:30:50 +02:00
parent bf3568fbbd
commit de0bacb26c
Signed by untrusted user who does not match committer: PanSi21
GPG key ID: 755F8874C65EF462
3 changed files with 122 additions and 13 deletions

View file

@ -15,6 +15,7 @@
color: #fff;
padding: 20px;
}
.container {
max-width: 800px;
margin: auto;
@ -22,31 +23,43 @@
padding: 20px;
border-radius: 10px;
}
.language-selector {
position: absolute;
top: 10px;
right: 20px;
}
.language-selector a {
color: white;
margin: 0 5px;
text-decoration: none;
}
.language-selector a:hover {
text-decoration: underline;
}
h1, h2 {
h1,
h2 {
color: #f00;
}
.feature-card {
background: #333;
padding: 20px;
border-radius: 10px;
margin: 10px 0;
ul {
text-align: left;
list-style: none;
padding: 0;
}
ul li::before {
content: "🔥 ";
}
.social-links {
margin-top: 20px;
}
.social-links a {
margin: 0 10px;
color: white;
@ -54,9 +67,28 @@
text-decoration: none;
opacity: 0.8;
}
.social-links a:hover {
opacity: 1;
}
.cta-button {
display: inline-block;
margin-top: 20px;
padding: 15px 30px;
background-color: #ff6b6b;
color: white;
text-decoration: none;
border-radius: 25px;
font-weight: bold;
}
.feature-card {
background: #333;
padding: 20px;
border-radius: 10px;
margin: 10px 0;
}
</style>
</head>