first commit

This commit is contained in:
小喵 2022-07-11 18:09:15 +08:00 committed by Ming Tsay
commit db313f5eef
Signed by: mt
GPG key ID: 2BCF198BD3341FB3
47 changed files with 2006 additions and 0 deletions

36
webroot/style.css Normal file
View file

@ -0,0 +1,36 @@
html,
body {
height: 100%;
width: 100%;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding-top: 8px;
padding-bottom: 8px;
background-color: #f5f5f5;
}
main {
flex-grow: 1;
height: 0;
width: 100%;
overflow-y: scroll;
}
pre.file-content {
background-color: white;
text-align: left;
padding: 8px;
width: 100%;
overflow-x: scroll;
white-space: pre-wrap;
word-wrap: break-word;
}
.w-fit-content {
width: fit-content !important;
}