File size: 632 Bytes
aa85d13 |
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 |
/* styles.css */
body {
background: rgba(0, 0, 0, 0.1);
backdrop-filter: blur(10px);
font-family: 'Arial', sans-serif;
}
.gradio-container {
border-radius: 15px;
padding: 20px;
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(15px);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.gradio-button {
background-color: #4CAF50;
color: white;
border-radius: 5px;
padding: 10px 20px;
border: none;
cursor: pointer;
}
.gradio-button:hover {
background-color: #45a049;
}
.gradio-textbox {
border-radius: 10px;
padding: 10px;
border: 1px solid #ccc;
width: 100%;
box-sizing: border-box;
}
|