45 lines
801 B
CSS
45 lines
801 B
CSS
:root {
|
|
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
line-height: 1.5;
|
|
color-scheme: light dark;
|
|
color: rgba(255, 255, 255, 0.87);
|
|
background-color: #242424;
|
|
}
|
|
#root {
|
|
width: 100vw;
|
|
}
|
|
body {
|
|
margin: 0 auto;
|
|
display: grid;
|
|
min-width: 320px;
|
|
min-height: 100vh;
|
|
position: relative;
|
|
}
|
|
body::before {
|
|
content: "";
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: -1;
|
|
opacity: 0.05;
|
|
background: url("./logo.svg");
|
|
background-size: 256px;
|
|
transform: rotate(-12deg) scale(1.35);
|
|
animation: slide 30s linear infinite;
|
|
pointer-events: none;
|
|
}
|
|
@keyframes slide {
|
|
from {
|
|
background-position: 0 0;
|
|
}
|
|
to {
|
|
background-position: 256px 224px;
|
|
}
|
|
}
|
|
.app {
|
|
margin: 0 auto;
|
|
padding: 2rem;
|
|
text-align: center;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|