mirror of
https://gitlab.com/serenetia/endpild-laman.git
synced 2025-03-16 04:35:53 +08:00
28 lines
470 B
CSS
28 lines
470 B
CSS
@import "./fonts.css";
|
|
|
|
html,
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
font-family: "JetBrains Mono", Consolas, serif;
|
|
--anim-playback-rate: 1.33;
|
|
will-change: contents;
|
|
background: #000;
|
|
}
|
|
|
|
body {
|
|
overflow: hidden;
|
|
transition: 0.5s cubic-bezier(0.88,-0.07, 0.22, 1.01);
|
|
transition-property: width, height;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
*[data-projection-id] {
|
|
will-change: contents;
|
|
box-sizing: border-box;
|
|
}
|