Spaces:
Sleeping
Sleeping
#main-row { | |
align-items: flex-start; | |
gap: 24px; | |
margin-top: 28px; | |
} | |
#ceo-video-panel { | |
border-radius: 12px; | |
box-shadow: 0 1px 10px #0002; | |
margin-bottom: 0; | |
/* Height는 app.py와 맞춰 350px */ | |
min-height: 350px ; | |
max-height: 380px; | |
width: 100%; | |
} | |
/* 챗봇박스, 전송 버튼 등 여백/라인*/ | |
#chatbot-box { | |
border-radius: 10px; | |
box-shadow: 0 1px 10px #0001; | |
font-size: 16px; | |
background: #f7fafc; | |
min-height: 350px ; | |
max-height: 410px; | |
margin-bottom: 8px; | |
} | |
/* 삭제선 (gr.Markdown html 적용에 최적) */ | |
s, del { | |
text-decoration: line-through; | |
color: #cd4255 ; | |
font-weight: 600; | |
} | |
.gradio-row, .gradio-column { | |
gap: 22px; | |
} | |
/* 버튼/텍스트박스 기본값 */ | |
.gr-button { | |
margin-left: 8px; | |
height: 45px; | |
min-width: 80px; | |
background: #3399ff; | |
color: #fff; | |
font-weight: bold; | |
border-radius: 8px; | |
border: none; | |
} | |
textarea { | |
min-height: 45px; | |
border-radius: 8px; | |
font-size: 16px ; | |
line-height: 1.5; | |
margin-bottom: 7px; | |
} | |
.gr-examples { | |
margin-top: 10px ; | |
font-size: 15px; | |
background: #e7f3ff; | |
border-radius: 10px; | |
} | |