40 lines
728 B
CSS
40 lines
728 B
CSS
html {
|
|
min-height: 100vh;
|
|
position: relative;
|
|
}
|
|
|
|
body {
|
|
/* white to black linear noise gradient spanning from top to bottom */
|
|
background-image:
|
|
url('https://ed.brz9.dev/assets/svg/noise.svg'),
|
|
linear-gradient(to bottom right, #2e3551, #0d747d);
|
|
}
|
|
|
|
@font-face{
|
|
font-family: inter;
|
|
src: url("https://ed.brz9.dev/assets/fonts/inter/Inter-Regular.woff");
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
}
|
|
|
|
body {
|
|
font-family: inter;
|
|
color: #e9d2d2;
|
|
height: 100%;
|
|
}
|
|
|
|
|
|
div.y2t-output {
|
|
display: flow-root;
|
|
}
|
|
|
|
div.y2t-output button {
|
|
margin-bottom: 20px;
|
|
display:block;
|
|
}
|
|
|
|
div.y2t-output div {
|
|
max-height: 120px;
|
|
overflow-y: scroll;
|
|
display:block;
|
|
} |