Spaces:
Sleeping
Sleeping
File size: 2,324 Bytes
6cc1012 | 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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | <style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
body {
background-color: #1C1C1C;
color: #ECF0F1;
background-image: url('https://s1.1zoom.me/big0/395/Fields_Sunrises_and_499477.jpg');
background-size: cover;
font-family: 'Poppins', sans-serif;
}
.stButton>button {
background-color: #007BFF;
color: #FFD700;
border: none;
border-radius: 8px;
font-size: 16px;
padding: 12px 24px;
cursor: pointer;
transition: background-color 0.3s, transform 0.3s;
}
.stButton>button:hover {
background-color: #0056b3;
transform: scale(1.05);
}
.stTextInput>div>div>input {
border: 2px solid #FFD700;
border-radius: 8px;
font-size: 16px;
padding: 10px;
background-color: #000000;
color: #ECF0F1;
}
.stMarkdown>div>p {
color: #D0D3D4;
font-size: 16px;
line-height: 1.6;
}
.stMarkdown>h1, .stMarkdown>h2, .stMarkdown>h3, .stMarkdown>h4, .stMarkdown>h5, .stMarkdown>h6 {
color: #FF6F61;
font-family: 'Poppins', sans-serif;
font-weight: bold;
text-transform: uppercase;
}
.stAudio {
margin-top: 20px;
border: 2px solid #FF6F61;
border-radius: 10px;
}
.stFileUploader>div>div>input {
border: 2px solid #FFD700;
border-radius: 8px;
font-size: 16px;
padding: 10px;
background-color: #000000;
color: #ECF0F1;
}
.spinner {
border: 8px solid #f3f3f3;
border-top: 8px solid #FF6F61;
border-radius: 50%;
width: 60px;
height: 60px;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.video-container {
border: 3px solid #FF6F61;
background-color: #1C1C1C;
padding: 10px;
border-radius: 10px;
margin-bottom: 20px;
}
.assistant-response {
font-size: 16px;
color: #D0D3D4;
background-color: #2E2E2E;
padding: 10px;
border-radius: 8px;
border: 1px solid #FF6F61;
}
</style>
|