<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html{
    font-size:12px;
}
*{
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
.hide{
    display: none !important;
}
header{
position: fixed;
top:0px;
left:0px;
right: 0px;
height:50px;
border-bottom: 1px solid #ccc;
}
#container{
    padding-top: 50px;
    display: flex;
    justify-content: flex-start;
}

#container &gt; div{
    flex-grow:1;
    padding: 10px;
}
#container textarea{
    width:100%;
    height: 500px;
}



.textarea-container {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.line-numbers {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    padding: 5px;
    padding-top: 3px;
    text-align: right;
    font-family: monospace;
    font-size: 14px;
    color: #888;
    background-color: #f4f4f4;
    border-right: 1px solid #ddd;
    user-select: none;
    white-space: pre-wrap;
    overflow: hidden; /* ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ«ãƒãƒ¼ã‚’éžè¡¨ç¤ºã«ã™ã‚‹ */
    height: 100%; /* ãƒ†ã‚­ã‚¹ãƒˆã‚¨ãƒªã‚¢ã¨é«˜ã•ã‚’åŒæœŸ */
}

textarea {
    margin-left: 40px;
    padding-left: 5px;
    font-family: monospace;
    font-size: 14px;
    line-height: 1.5;
    resize: none;
    border: 1px solid #ddd;
    overflow-y: scroll; /* åž‚ç›´ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ«ãƒãƒ¼ã‚’è¡¨ç¤º */
    overflow-x: auto; /* æ°´å¹³ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ«ãƒãƒ¼ã‚’æœ‰åŠ¹ã«ã™ã‚‹ */
    white-space: pre; /* æ”¹è¡Œã‚’ç„¡è¦–ã—ã€å…¥åŠ›ã•ã‚ŒãŸå†…å®¹ã‚’ãã®ã¾ã¾è¡¨ç¤º */
}


footer{
    width: 100%;
    height: 50px;
    border-top: 1px solid #ccc;
}
</pre></body></html>