Compare commits

...

4 Commits

Author SHA1 Message Date
2fbe5b08ff Change footer text 2025-09-27 12:19:14 +02:00
ec0a1b7f3f Add mailto link for author name
- Add mailto link for 'Markus F.J. Busche' to elpatron@mailbox.org
- Footer now includes both repository and email links
- Maintains privacy-friendly messaging
2025-09-27 12:18:22 +02:00
9e28301574 Change footer text 2025-09-27 12:17:04 +02:00
f5680fe760 Add footer with repository link
- Add footer with 'Open Source Software' link to Gitea repository
- Link to https://gitea.elpatron.me/elpatron/emoji-suche
- Attribution to Markus F.J. Busche with emojipedia reference
- Responsive footer styling with hover effects
- Opens in new tab with security attributes
2025-09-27 12:16:07 +02:00

View File

@@ -162,6 +162,27 @@
font-size: 14px; font-size: 14px;
} }
.footer {
text-align: center;
margin-top: 40px;
padding: 20px 0;
color: #666;
font-size: 14px;
border-top: 1px solid #e0e0e0;
}
.footer a {
color: #667eea;
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
.footer a:hover {
color: #764ba2;
text-decoration: underline;
}
@media (max-width: 768px) { @media (max-width: 768px) {
.container { .container {
padding: 20px; padding: 20px;
@@ -179,6 +200,12 @@
.emoji-display { .emoji-display {
font-size: 3em; font-size: 3em;
} }
.footer {
font-size: 12px;
margin-top: 30px;
padding: 15px 0;
}
} }
</style> </style>
</head> </head>
@@ -198,6 +225,10 @@
<div id="noResults" class="no-results" style="display: none;"> <div id="noResults" class="no-results" style="display: none;">
Keine Emojis gefunden. Versuche einen anderen Suchbegriff! Keine Emojis gefunden. Versuche einen anderen Suchbegriff!
</div> </div>
<footer class="footer">
Privacy friendly <a href="https://gitea.elpatron.me/elpatron/emoji-suche" target="_blank" rel="noopener noreferrer">Open Source Software</a> vibe coded in 2025 by <a href="mailto:elpatron@mailbox.org">Markus F.J. Busche</a>. FCK emojipedia 💀!
</footer>
</div> </div>
<script> <script>