forked from kabachuha/sd-webui-text2video
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
37 lines (34 loc) · 874 Bytes
/
style.css
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
/*
Copyright (C) 2023 by Artem Khrapov (kabachuha)
Read LICENSE for usage terms.
*/
#vid_to_vid_chosen_file .w-full, #inpainting_chosen_file .w-full {
display: flex !important;
align-items: flex-start !important;
justify-content: center !important;
height: 85px !important;
}
#vid_to_vid_chosen_file, #inpainting_chosen_file {
height: 85px !important;
}
.generate-box{
position: relative;
}
.gradio-button.generate-box-skip, .gradio-button.generate-box-interrupt{
position: absolute;
width: 50%;
height: 100%;
display: none;
background: #b4c0cc;
}
.gradio-button.generate-box-skip:hover, .gradio-button.generate-box-interrupt:hover{
background: #c2cfdb;
}
.gradio-button.generate-box-interrupt{
left: 0;
border-radius: 0.5rem 0 0 0.5rem;
}
.gradio-button.generate-box-skip{
right: 0;
border-radius: 0 0.5rem 0.5rem 0;
}