Spaces:
Sleeping
Sleeping
File size: 1,342 Bytes
4b35341 |
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 |
/* dnd_theme.css */
body {
background-color: #231f20;
color: #f5f5f5;
font-family: 'Arial', sans-serif;
}
.gradio-container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #3c2f2f;
border: 2px solid #8b4513;
border-radius: 10px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
h1, h2, h3, h4, h5, h6 {
color: #ffd700;
text-align: center;
}
button {
background-color: #8b4513;
color: #f5f5f5;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #a0522d;
}
input[type="text"], input[type="file"], textarea {
background-color: #3c2f2f;
color: #f5f5f5;
border: 1px solid #8b4513;
border-radius: 5px;
padding: 10px;
width: 100%;
box-sizing: border-box;
margin-bottom: 10px;
}
input[type="text"]:focus, input[type="file"]:focus, textarea:focus {
border-color: #ffd700;
}
label {
color: #ffd700;
}
.gradio-output {
background-color: #3c2f2f;
border: 1px solid #8b4513;
border-radius: 5px;
padding: 20px;
margin-top: 20px;
text-align: center;
}
.gradio-output img {
max-width: 100%;
border-radius: 10px;
}
.footer {
text-align: center;
margin-top: 20px;
color: #ffd700;
} |