File size: 2,168 Bytes
f3d0444 |
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 101 |
.croppie-container .cr-boundary {
background-color: rgba(0, 0, 0, .6);
}
.croppie-container .cr-boundary .timer-tick {
position: absolute;
top: 10px;
width: 100%;
text-align: center;
z-index: 2;
}
.croppie-container .cr-boundary #text-preview {
position: absolute;
top: 52px;
width: 100%;
text-align: center;
z-index: 2;
}
.croppie-container .cr-boundary #rotate-container {
position: absolute;
bottom: 28px;
width: 100%;
text-align: center;
z-index: 2;
}
.croppie-container .cr-boundary #btn-rotate {
position: relative;
z-index: 1;
display: inline-block;
padding: 0;
overflow: hidden;
vertical-align: middle;
border-radius: 50%;
width: 56px;
height: 56px;
}
.croppie-container .cr-boundary #btn-rotate span {
line-height: 56px;
}
.croppie-container .cr-slider-wrap {
display: none;
}
.croppie-container .cr-viewport {
border: none;
}
.croppie-container .cr-viewport .guide-top-right-1 {
border: 1.5px solid #fff;
position: absolute;
top: 0;
right: 0;
left: 88%;
}
.croppie-container .cr-viewport .guide-top-right-2 {
border: 1.5px solid #fff;
position: absolute;
top: 0;
right: 0;
bottom: 85%;
}
.croppie-container .cr-viewport .guide-bottom-right-1 {
border: 1.5px solid #fff;
position: absolute;
bottom: 0;
right: 0;
left: 88%;
}
.croppie-container .cr-viewport .guide-bottom-right-2 {
border: 1.5px solid #fff;
position: absolute;
bottom: 0;
right: 0;
top: 85%;
}
.croppie-container .cr-viewport .guide-top-left-1 {
border: 1.5px solid #fff;
position: absolute;
top: 0;
left: 0;
right: 88%;
}
.croppie-container .cr-viewport .guide-top-left-2 {
border: 1.5px solid #fff;
position: absolute;
top: 0;
left: 0;
bottom: 85%;
}
.croppie-container .cr-viewport .guide-bottom-left-1 {
border: 1.5px solid #fff;
position: absolute;
bottom: 0;
left: 0;
right: 88%;
}
.croppie-container .cr-viewport .guide-bottom-left-2 {
border: 1.5px solid #fff;
position: absolute;
bottom: 0;
left: 0;
top: 85%;
}
|