forked from richrobber2/canvas-zoom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
69 lines (58 loc) · 958 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* Context Menu */
.context-menu {
display: none;
position: absolute;
border: 1px solid #ccc;
padding: 8px;
z-index: 1000;
font-size: 14px;
}
.context-menu ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.context-menu li {
font-size: 13px;
padding: 4px 6px;
cursor: pointer;
}
.context-menu h3 {
font-size: 14px;
margin: 0;
padding: 4px 8px;
}
/* Light Theme Options */
.cm-light {
background-color: #fff;
color: #000;
}
.cm-light li:hover {
background-color: #f1f1f1;
color: #000;
}
/* dark theme options */
.cm-dark {
background-color: #4d5967;
color: #d9d6d1
}
.cm-dark li:hover {
background-color: #313841;
color: #d9d6d1
}
button[aria-label="Redraw"] {
display: none
}
.get-img-dem #img2img_ratio {
display: none;
}
#img2img_res_get_btn {
display: flex;
justify-content: center;
align-items: center;
}
#img2img_sketch,
#img2maskimg,
#inpaint_sketch {
transform-origin: 0px 0px;
}