File size: 732 Bytes
b099dd9 |
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 |
/* style.css content for Pollack Inspired UI */
body {
background-color: #f0f0f0;
font-family: 'Arial', sans-serif;
}
.gradio-app {
max-width: 1200px;
margin: auto;
padding: 20px;
background-color: #ffffff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.button, .input, .output {
margin-bottom: 20px;
}
.label {
font-weight: bold;
margin-bottom: 5px;
}
.tab {
background-color: #e0e0e0;
border: none;
padding: 10px 20px;
cursor: pointer;
font-size: 16px;
}
.tab.active {
background-color: #c0c0c0;
}
.row {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-bottom: 20px;
}
.image {
border-radius: 5px;
max-width: 100%;
height: auto;
}
|