CoolFace
Apppublic

ysharma/dummy

sourceHugging Facemitupdated 4y agoView on Hugging Face
0likes
style.css70 linesDownload Raw Back to root
1#col-container {2  max-width: 700px;3  margin-left: auto; 4  margin-right: auto;5  /*height:100vh;*/6 /*overflow-anchor: none;*/7}8a {text-decoration-line: underline; font-weight: 600;}9.footer {10        margin-bottom: 45px;11        margin-top: 10px;12        text-align: center;13        border-bottom: 1px solid #e5e5e5;14    }15    .footer>p {16        font-size: .8rem;17        display: inline-block;18        padding: 0 10px;19        transform: translateY(10px);20        background: white;21    }22    .dark .footer {23        border-color: #303030;24    }25    .dark .footer>p {26        background: #0b0f19;27    }28.animate-spin {29    animation: spin 1s linear infinite;30}31@keyframes spin {32    from {33        transform: rotate(0deg);34    }35    to {36        transform: rotate(360deg);37    }38}39/*#input_prompt {*/40    /*position: fixed;*/41    /*bottom: 0;*/42    /*width: 680px;*/43    /*background-color: white;44    /*color: black;45    /*padding: 10px;46    /*font-size: 16px;47    /*overflow-anchor: auto;  */48/*}*/49#chatbot-component {50  /*overflow-anchor: none;*/51  overflow: auto;52  display: flex;53  flex-direction: column-reverse;54}55#upload_button {56  /*overflow-anchor: auto;*/  57  /*height: 5 px;*/58  background-color: black;59  color: white;60}61/*#dummy_elem {62  overflow-anchor: auto;63  height: 1px;64}*/65#help_text {66  display: none; /* initially hidden */67}68#help_text:target {69  display: block; /* show when the link is clicked */70}