35 lines
413 B
CSS
35 lines
413 B
CSS
html, body {
|
|
margin: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
h1 {
|
|
padding: 80px;
|
|
text-align: center;
|
|
}
|
|
|
|
a {
|
|
color: #a34adb;
|
|
}
|
|
|
|
|
|
.bg-test {
|
|
position: fixed;
|
|
inset: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #fff;
|
|
user-select: none;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.bg-test pre {
|
|
margin: 0;
|
|
white-space: pre;
|
|
line-height: 1;
|
|
font-size: 2vw;
|
|
}
|