add code input block

This commit is contained in:
buzzcode2007 2024-04-03 10:11:59 +08:00
parent 8cc2f02829
commit 1ea9683d35

View file

@ -165,9 +165,33 @@ nav .input-field label {
z-index: 10; z-index: 10;
} }
@media only screen and (min-width: 992px) {
body:has(.sidenav-fixed) [works-sidebar] {
display: none;
}
}
#title { #title {
font-weight: bold; font-weight: bold;
} }
#author { #author {
font-style: italic; font-style: italic;
} }
nav ul:not(.dropdown-content) > li > a {
height: 100%;
}
textarea {
resize: vertical;
color: var(--font-color-main);
}
textarea:focus {
outline: none;
}
textarea[type="code"] {
font-family: monospace !important;
}