Spaces:
Running
Running
.page { | |
min-width: 1000px; | |
.header_container { | |
display: flex; | |
align-items: center; | |
justify-content: space-between; | |
margin-bottom: 30px; | |
.user_container { | |
font-weight: 200; | |
display: flex; | |
align-items: center; | |
justify-content: space-between; | |
gap: 20px; | |
svg { | |
width: 22px; | |
height: 22px; | |
} | |
.logout { | |
width: 25px; | |
svg { | |
color: var(--error-color); | |
} | |
} | |
.user_name { | |
min-width: 100px; | |
display: flex; | |
align-items: center; | |
gap: 10px; | |
svg { | |
color: var(--placeholder-color); | |
} | |
} | |
} | |
} | |
.search { | |
width: 100%; | |
.search_block { | |
display: flex; | |
width: 100%; | |
justify-content: space-between; | |
gap: 10px; | |
.search_btns { | |
height: 120px; | |
display: flex; | |
flex-direction: column; | |
justify-content: center; | |
gap: 10px; | |
padding-top: 10px; | |
.btn { | |
justify-content: center; | |
align-items: center; | |
line-height: 15px; | |
height: 50px; | |
width: 145px; | |
} | |
} | |
} | |
.collapsible { | |
margin-top: 10px; | |
} | |
.request_params { | |
margin: 10px; | |
.toggle { | |
margin-bottom: 5px; | |
} | |
} | |
} | |
.loading { | |
font-family: Arial, sans-serif; | |
font-size: 16px; | |
line-height: 1.5; | |
padding-top: 20px; | |
} | |
.llm_container { | |
display: flex; | |
gap: 10px; | |
flex-direction: column; | |
} | |
.llm_answer { | |
.result_text_prompt { | |
background-color: var(--white-color); | |
} | |
} | |
} | |