Sergidev's picture
Update style.css
5124367 verified
raw
history blame
977 Bytes
h1 {
text-align: center;
display: block;
}
#duplicate-button {
margin: auto;
color: #fff;
background: #1565c0;
border-radius: 100vh;
}
.gradio-container {
max-width: 730px !important;
margin: auto;
padding-top: 1.5rem;
}
#title-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh; /* Adjust this value to position the title vertically */
}
#title {
font-size: 3em;
text-align: center;
background: transparent;
}
#subtitle {
text-align: center;
}
.history-container {
max-height: 600px;
overflow-y: auto;
border: 1px solid #ccc;
padding: 10px;
}
.history-item {
display: flex;
margin-bottom: 20px;
border-bottom: 1px solid #eee;
padding-bottom: 10px;
}
.history-item img {
width: 128px;
height: 128px;
object-fit: cover;
margin-right: 10px;
}
.history-info {
flex: 1;
}
.history-info p {
margin: 5px 0;
font-size: 14px;
}