45 lines
868 B
CSS
45 lines
868 B
CSS
/* 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;
|
|
}
|