-
Notifications
You must be signed in to change notification settings - Fork 0
/
resizer.css
100 lines (82 loc) · 1.38 KB
/
resizer.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
.step {
display: none;
}
.highlight {
background-color: #c9d0fc;
border-color: #5566ea;
}
.step.active {
display: block;
}
#size-options .separator {
width: 100%;
}
#size-options>div {
display: none;
}
#size-options>div.shown {
display: block;
}
#tool-canvas {
background: white;
max-width: 100%;
max-height: 900px;
z-index: 1;
display: block;
}
#crop-preview-wrapper {
position: relative;
max-width: 500px;
}
#crop-preview {
overflow: hidden;
margin: auto;
width: 310px;
max-width: 310px;
height: 250px;
max-height: 250px;
}
.cropper-container {
max-width: 100%;
}
.upload-new-image {
margin-top: 28px;
}
.soona-resizer_platforms.active {
display: flex;
}
#crop-control {
display: none;
}
#custom-button.w--redirected-checked {
background-color: transparent;
background-image: none;
border: 2px solid #f0562e;
border-radius: 1rem;
}
#submit-email.disabled,
.soona-resizer_next-button.disabled {
opacity: 0.3;
cursor: not-allowed;
}
.soona-resizer_error-message {
display: none;
}
.soona-resizer_desktop-navigation {
display: none !important;
}
.soona-resizer_sticky-bar {
display: block !important;
}
@media (min-width: 728px) {
#crop-preview {
width: 450px;
max-width: 450px;
}
.soona-resizer_desktop-navigation {
display: block !important;
}
.soona-resizer_sticky-bar {
display: none !important;
}
}