Spaces:
Sleeping
Sleeping
File size: 1,064 Bytes
487eb4e |
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 |
#main-row {
align-items: flex-start;
gap: 34px;
margin-top: 38px;
}
#ceo-video-panel {
border-radius: 17px;
box-shadow: 0 2px 17px #0002;
min-height: 540px !important;
max-height: 660px;
width: 100%;
}
#mode-select-radio {
margin-top: 36px !important;
margin-bottom: 32px !important;
font-size: 19px;
}
#recommended-examples {
margin-top: 30px !important;
font-size: 17px !important;
background: #eafbff;
border-radius: 13px;
}
#chatbot-box {
border-radius: 14px;
box-shadow: 0 2px 13px #0001;
font-size: 19px;
background: #f7fafc;
min-height: 540px !important;
max-height: 660px;
margin-bottom: 15px;
}
.gradio-row, .gradio-column {
gap: 30px;
}
.gr-button {
margin-left: 10px;
height: 57px;
min-width: 95px;
background: #3399ff;
color: #fff;
font-weight: bold;
border-radius: 12px;
border: none;
}
textarea {
min-height: 57px;
border-radius: 9px;
font-size: 18px !important;
line-height: 1.58;
margin-bottom: 8px;
}
|