This commit is contained in:
waveringana 2023-12-11 12:03:33 -05:00
parent 604692ca2a
commit bd30f3ec85
9 changed files with 121 additions and 66 deletions

View file

@ -80,11 +80,6 @@ p {
line-height: 1.6; /* Improve readability */
}
/* Optionally, you can add media query for dark mode based on user's system preferences */
@media (prefers-color-scheme: dark) {
/* Dark mode styles */
}
footer {
text-align: center;
padding: 20px;
@ -108,6 +103,9 @@ footer a:hover {
text-decoration: underline; /* Adds an underline on hover for better user experience */
}
@media (prefers-color-scheme: light) {
}
</style>
<body>
@ -119,6 +117,6 @@ footer a:hover {
<footer>
<p>Powered by <a href="https://github.com/waveringana/embedder">Embedder</a> created by <a href="https://github.com/waveringana">WaveringAna</a></p>
</footer>
</footer>
</body>
</html>