diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-08-30 18:51:30 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-08-30 18:51:30 +0000 |
commit | 7434b3ebccd7498645ee620413422e3e0beb3cf4 (patch) | |
tree | 2f97f3e98452d7500f97a3bd5a5ed27e2fcdee7f /style.css | |
parent | bb2faa5fb8cbb0933c8ea52c222b7677bf8e2832 (diff) | |
download | stable-diffusion-webui-gfx803-7434b3ebccd7498645ee620413422e3e0beb3cf4.tar.gz stable-diffusion-webui-gfx803-7434b3ebccd7498645ee620413422e3e0beb3cf4.tar.bz2 stable-diffusion-webui-gfx803-7434b3ebccd7498645ee620413422e3e0beb3cf4.zip |
updated interface to use Blocks
added mode toggle for img2img
added inpainting to readme
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/style.css b/style.css new file mode 100644 index 00000000..c91b949c --- /dev/null +++ b/style.css @@ -0,0 +1,61 @@ +
+button{
+ align-self: stretch !important;
+}
+
+#img2img_mode{
+ padding: 0 0 1em 0;
+ border: none !important;
+}
+
+#img2img_prompt, #txt2img_prompt{
+ padding: 0;
+ border: none !important;
+}
+
+#img2maskimg .h-60{
+ height: 30rem;
+}
+
+.overflow-hidden, .gr-panel{
+ overflow: visible !important;
+}
+
+fieldset span.text-gray-500{
+ position: absolute;
+ top: -0.425em;
+ background-color: rgb(249 250 251);
+ line-height: 0.7em;
+ padding: 0 0.5em;
+}
+.dark fieldset span.text-gray-500 { background-color: rgb(17 24 39); }
+
+.gr-panel div.flex-col div.justify-between label, label.block span{
+ position: absolute;
+ top: -0.4em;
+ background-color: rgb(249 250 251);
+ line-height: 0.7em;
+ padding: 0 0.5em;
+ margin: 0;
+}
+.dark .gr-panel div.flex-col div.justify-between label{ background-color: rgb(17 24 39); }
+
+.gr-panel div.flex-col div.justify-between label span{
+ margin: 0;
+}
+
+.gr-panel div.flex-col div.justify-between div{
+ position: absolute;
+ top: -0.1em;
+ right: 1em;
+ padding: 0 0.5em;
+}
+
+input[type="range"]{
+ margin: 0.5em 0 -0.3em 0;
+}
+
+#txt2img_sampling label{
+ padding-left: 0.6em;
+ padding-right: 0.6em;
+}
\ No newline at end of file |