new query param features, fixes

also added README
This commit is contained in:
Jon Dough
2023-06-21 17:58:02 +09:00
parent 15e5f0e916
commit 7f477d0049
5 changed files with 146 additions and 18 deletions

View File

@@ -26,7 +26,7 @@ html, body {
#editor {
box-sizing: border-box;
width: 95%;
width: calc(100% - 58px);
width: 100%;
height: 95%;
margin: 0;
word-break: break-all;
@@ -56,15 +56,32 @@ html, body {
color: #2d2d2d;
}
.line-warning {
#preview-tools {
font-family: Arial, sans-serif;
float: left;
width: 100%;
}
.line-warning::before {
position: relative;
display: inline-block;
width: 0;
left: -58px;
margin-top: -1px;
font-size: 0.9em;
}
.line-warning::after {
content: "⚠️";
}
.mobile-only {
display: none;
}
#see-docs {
float: right;
}
@media screen and (max-width: 950px) {
.mobile-only {
display: block;
}
}