Add the buttons, add the background made my ari, add some basic css and basic index design.

This commit is contained in:
2025-10-29 20:30:47 +01:00
parent d95be6e453
commit 33db4b0b2c
26 changed files with 282 additions and 0 deletions

44
assets/css/style.css Normal file
View File

@@ -0,0 +1,44 @@
/* CSS Document */
body {
background-color: #0e0016;
color: white;
}
.buttons {
display: flex;
flex-wrap: wrap;
gap: 6px;
justify-content: center;
margin-top: 20px;
}
.buttons img {
width: 88px;
height: 31px;
border: none;
image-rendering: pixelated;
}
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
-webkit-transition: none !important;
-o-transition: none !important;
transition: none !important;
-webkit-animation: none !important;
animation: none !important;
-webkit-animation-play-state: paused !important;
animation-play-state: paused !important;
scroll-behavior: auto !important;
}
}
#night {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #0e0016;
z-index: -9999;
}