Spaces:
Sleeping
Sleeping
File size: 1,236 Bytes
2e6852b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
#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 !important;
max-height: 380px;
width: 100%;
}
/* 챗봇박스, 전송 버튼 등 여백/라인*/
#chatbot-box {
border-radius: 10px;
box-shadow: 0 1px 10px #0001;
font-size: 16px;
background: #f7fafc;
min-height: 350px !important;
max-height: 410px;
margin-bottom: 8px;
}
/* 삭제선 (gr.Markdown html 적용에 최적) */
s, del {
text-decoration: line-through;
color: #cd4255 !important;
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 !important;
line-height: 1.5;
margin-bottom: 7px;
}
.gr-examples {
margin-top: 10px !important;
font-size: 15px;
background: #e7f3ff;
border-radius: 10px;
}
|