<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-bottom: 20px;
}

img{
    max-width:100%
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 0px;
    padding-right: 0px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input[type="password"]
input[type="tel"],
input[type="select"] {
    max-width: 280px;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }
    .body-content {
        padding: 0;
    }
}

a:hover {
    text-decoration-line: none
}

/*contenteditable 를 textarea 처럼 사용  시작  */

[contenteditable=true]:empty:before {
    content: attr(placeholder);
    display: block; /* For Firefox */
}

.textarea {
    width: 100%;
    max-width: 100%;
    border: none;
    overflow: auto;
    height: auto;
    border-bottom: 1px solid #000;
    resize: vertical;
}

    .textarea:focus {
        outline: none;
    }

.xscroll_area {
    overflow: hidden;
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis
}

.jcenter {
    display: flex; 
    justify-content: center; 
}

/*contenteditable 를 textarea 처럼 사용  끝  */
</pre></body></html>