Spaces:
Running
Running
File size: 1,245 Bytes
c368720 |
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 |
# File ini awalnya digunakan untuk menyimpan custom CSS untuk tampilan Gradio.
# Namun, sesuai instruksi, aplikasi sekarang tidak menggunakan CSS custom sama sekali.
# Tidak perlu mengisi kode apapun di file ini.
custom_css = """
#col-left, #col-mid {
margin: 0 auto;
max-width: 400px;
padding: 10px;
border-radius: 15px;
background-color: #f9f9f9;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#col-right {
margin: 0 auto;
max-width: 400px;
padding: 10px;
border-radius: 15px;
background: linear-gradient(180deg, #B6BBC4, #EEEEEE);
color: white;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#col-bott {
margin: 0 auto;
padding: 10px;
border-radius: 15px;
background-color: #f9f9f9;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#banner {
width: 100%;
text-align: center;
margin-bottom: 20px;
}
#run-button {
background-color: #ff4b5c;
color: white;
font-weight: bold;
padding: 30px;
border-radius: 10px;
cursor: pointer;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
#footer {
text-align: center;
margin-top: 20px;
color: silver;
}
#markdown-silver {
color: silver; /* Mengatur warna font Markdown menjadi silver */
}
"""
|