|
body { |
|
background-color: #f0f0f0; |
|
font-family: 'Arial', sans-serif; |
|
color: #333; |
|
} |
|
|
|
.gradio-app { |
|
max-width: 1200px; |
|
margin: 20px auto; |
|
padding: 20px; |
|
background-color: #ffffff; |
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); |
|
border-radius: 8px; |
|
} |
|
|
|
.button, .input, .output { |
|
margin-bottom: 20px; |
|
border: 1px solid #ddd; |
|
border-radius: 4px; |
|
padding: 10px; |
|
} |
|
|
|
.button { |
|
background-color: #007bff; |
|
color: white; |
|
font-weight: bold; |
|
text-transform: uppercase; |
|
letter-spacing: 0.05em; |
|
transition: background-color 0.3s ease; |
|
} |
|
|
|
.button:hover { |
|
background-color: #0056b3; |
|
} |
|
|
|
.label { |
|
font-weight: bold; |
|
margin-bottom: 5px; |
|
color: #555; |
|
} |
|
|
|
.tab { |
|
background-color: #e0e0e0; |
|
border: none; |
|
padding: 10px 20px; |
|
cursor: pointer; |
|
font-size: 16px; |
|
margin-right: 5px; |
|
transition: all 0.2s ease; |
|
border-radius: 20px; |
|
} |
|
|
|
.tab.active { |
|
background-color: #007bff; |
|
color: white; |
|
} |
|
|
|
.row { |
|
display: flex; |
|
flex-wrap: wrap; |
|
gap: 20px; |
|
} |
|
|
|
.image { |
|
border-radius: 5px; |
|
max-width: 100%; |
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1); |
|
} |
|
|
|
.markdown { |
|
padding: 15px; |
|
background-color: #f8f9fa; |
|
border-left: 4px solid #007bff; |
|
margin-bottom: 20px; |
|
border-radius: 4px; |
|
} |