mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
28fe84177e
* This functionality is triggered by the --fit option in the CLI (default false), and by the "fit" checkbox in the WebGUI (default True) * In addition, this commit contains a number of whitespace changes to make the code more readable, as well as an attempt to unify the visual appearance of info and warning messages.
98 lines
1.5 KiB
CSS
98 lines
1.5 KiB
CSS
* {
|
|
font-family: 'Arial';
|
|
}
|
|
#header {
|
|
text-decoration: dotted underline;
|
|
}
|
|
#search {
|
|
margin-top: 20vh;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
max-width: 1024px;
|
|
text-align: center;
|
|
}
|
|
fieldset {
|
|
border: none;
|
|
}
|
|
div {
|
|
padding: 10px 10px 10px 10px;
|
|
}
|
|
#fieldset-search {
|
|
display: flex;
|
|
}
|
|
#scaling-inprocess-message{
|
|
font-weight: bold;
|
|
font-style: italic;
|
|
display: none;
|
|
}
|
|
#prompt {
|
|
flex-grow: 1;
|
|
|
|
border-radius: 20px 0px 0px 20px;
|
|
padding: 5px 10px 5px 10px;
|
|
border: 1px solid black;
|
|
border-right: none;
|
|
outline: none;
|
|
}
|
|
#submit {
|
|
border-radius: 0px 20px 20px 0px;
|
|
padding: 5px 10px 5px 10px;
|
|
border: 1px solid black;
|
|
}
|
|
#reset-all {
|
|
background-color: pink;
|
|
}
|
|
#results {
|
|
text-align: center;
|
|
max-width: 1000px;
|
|
margin: auto;
|
|
padding-top: 10px;
|
|
}
|
|
#results img {
|
|
cursor: pointer;
|
|
height: 30vh;
|
|
border-radius: 5px;
|
|
margin: 10px;
|
|
}
|
|
#fieldset-config {
|
|
line-height:2em;
|
|
}
|
|
input[type="number"] {
|
|
width: 60px;
|
|
}
|
|
#seed {
|
|
width: 150px;
|
|
}
|
|
hr {
|
|
width: 200px;
|
|
}
|
|
label {
|
|
white-space: nowrap;
|
|
}
|
|
#progress-section {
|
|
display: none;
|
|
}
|
|
#progress-image {
|
|
width: 30vh;
|
|
height: 30vh;
|
|
}
|
|
#cancel-button {
|
|
cursor: pointer;
|
|
color: red;
|
|
}
|
|
#txt2img {
|
|
background-color: #DCDCDC;
|
|
}
|
|
#img2img {
|
|
background-color: #F5F5F5;
|
|
}
|
|
#gfpgan {
|
|
background-color: #DCDCDC;
|
|
}
|
|
#progress-section {
|
|
background-color: #F5F5F5;
|
|
}
|
|
#about {
|
|
background-color: #DCDCDC;
|
|
}
|