ysharma/dummy_dummy
0
1#col-container {2 max-width: 700px;3 margin-left: auto; 4 margin-right: auto;5 display: flex;6 flex-direction: column; 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: absolute;41 bottom: 0;42 width: 680px;43 background-color: white;44 color: black;45 padding: 10px;46 font-size: 16px;47}