| 1 |
.uce-cursor-enabled-yes { |
| 2 |
--cursor-ball-color: red; |
| 3 |
--cursor-ball-size: 10px; |
| 4 |
--cursor-circle-color: red; |
| 5 |
--cursor-circle-size: 40px; |
| 6 |
--cursor-text-label: "Ultimate Cursor" |
| 7 |
} |
| 8 |
|
| 9 |
.uce-cursor-enabled-yes .uce-cursor-enabled { |
| 10 |
position: fixed; |
| 11 |
z-index: 9999999 |
| 12 |
} |
| 13 |
|
| 14 |
.uce-cursor-enabled-yes .uce-cursor-enabled .cotton-init.ultimate-cursor-default.cotton-active { |
| 15 |
position: fixed; |
| 16 |
top: 0; |
| 17 |
left: 0; |
| 18 |
z-index: 9999999; |
| 19 |
pointer-events: none; |
| 20 |
transform: translate(-20px, -20px) |
| 21 |
} |
| 22 |
|
| 23 |
.uce-cursor-enabled-yes .uce-cursor-enabled .cotton-init.ultimate-cursor-custom.cotton-active { |
| 24 |
position: fixed; |
| 25 |
top: 0; |
| 26 |
left: 0; |
| 27 |
pointer-events: none; |
| 28 |
transform: translate(-40px, -40px) |
| 29 |
} |
| 30 |
|
| 31 |
.uce-cursor-enabled-yes .uce-cursor-enabled.ep-cursor-style-1 .cotton-init.ultimate-cursor-default.cotton-active { |
| 32 |
width: var(--cursor-ball-size); |
| 33 |
height: var(--cursor-ball-size); |
| 34 |
background-color: var(--cursor-ball-color); |
| 35 |
border-radius: 50% |
| 36 |
} |
| 37 |
|
| 38 |
.uce-cursor-enabled-yes .uce-cursor-enabled.ep-cursor-style-1 .cotton-init.ultimate-cursor-custom.cotton-active { |
| 39 |
background-color: transparent; |
| 40 |
border: 1px solid var(--cursor-circle-color); |
| 41 |
width: var(--cursor-circle-size); |
| 42 |
height: var(--cursor-circle-size); |
| 43 |
border-radius: 50% |
| 44 |
} |
| 45 |
|
| 46 |
.uce-cursor-enabled-yes .uce-cursor-enabled.ep-cursor-style-2 .cotton-init { |
| 47 |
position: relative |
| 48 |
} |
| 49 |
|
| 50 |
.uce-cursor-enabled-yes .uce-cursor-enabled.ep-cursor-style-2 .cotton-init.ultimate-cursor-default.cotton-active { |
| 51 |
border-radius: 50%; |
| 52 |
background-size: cover; |
| 53 |
background-position: center |
| 54 |
} |
| 55 |
|
| 56 |
.uce-cursor-enabled-yes .uce-cursor-enabled.ep-cursor-style-2 .cotton-init.ultimate-cursor-default.cotton-active::before, |
| 57 |
.uce-cursor-enabled-yes .uce-cursor-enabled.ep-cursor-style-2 .cotton-init.ultimate-cursor-default.cotton-active::after { |
| 58 |
content: ""; |
| 59 |
position: absolute; |
| 60 |
top: 0; |
| 61 |
left: 50%; |
| 62 |
transform: translateX(-50%); |
| 63 |
width: var(--cursor-ball-size); |
| 64 |
height: 2px; |
| 65 |
background: var(--cursor-ball-color) |
| 66 |
} |
| 67 |
|
| 68 |
.uce-cursor-enabled-yes .uce-cursor-enabled.ep-cursor-style-2 .cotton-init.ultimate-cursor-default.cotton-active:after { |
| 69 |
transform: translateX(-50%) rotate(90deg) |
| 70 |
} |
| 71 |
|
| 72 |
.uce-cursor-enabled-yes .uce-cursor-enabled.ep-cursor-style-2 .cotton-init.ultimate-cursor-custom.cotton-active { |
| 73 |
background-color: transparent; |
| 74 |
border: 1px solid var(--cursor-circle-color); |
| 75 |
width: var(--cursor-circle-size); |
| 76 |
height: var(--cursor-circle-size); |
| 77 |
border-radius: 50% |
| 78 |
} |
| 79 |
|
| 80 |
.uce-cursor-enabled-yes .uce-cursor-enabled.ep-cursor-style-3 .cotton-init.ultimate-cursor-custom.cotton-active { |
| 81 |
background-color: var(--cursor-ball-color); |
| 82 |
width: var(--cursor-ball-size); |
| 83 |
height: var(--cursor-ball-size); |
| 84 |
border-radius: 50% |
| 85 |
} |
| 86 |
|
| 87 |
.uce-cursor-enabled-yes .uce-cursor-enabled.ep-cursor-style-5 .cotton-init.ultimate-cursor-default.cotton-active { |
| 88 |
width: 450px; |
| 89 |
height: 450px; |
| 90 |
background-color: var(--cursor-ball-color); |
| 91 |
border-radius: 50% |
| 92 |
} |
| 93 |
|
| 94 |
.uce-cursor-enabled-yes .uce-cursor-enabled .cotton-active .bdt-cursor-image { |
| 95 |
width: 50px; |
| 96 |
height: 50px; |
| 97 |
object-fit: cover |
| 98 |
} |
| 99 |
|
| 100 |
.uce-cursor-enabled-yes .uce-cursor-enabled .cotton-active .bdt-cursor-text, |
| 101 |
.uce-cursor-enabled-yes .uce-cursor-enabled .cotton-active .bdt-cursor-icons, |
| 102 |
.uce-cursor-enabled-yes .uce-cursor-enabled .cotton-active .bdt-cursor-image { |
| 103 |
display: block |
| 104 |
} |
| 105 |
|
| 106 |
.uce-cursor-enabled-yes .uce-cursor-enabled .bdt-cursor-text, |
| 107 |
.uce-cursor-enabled-yes .uce-cursor-enabled .bdt-cursor-icons, |
| 108 |
.uce-cursor-enabled-yes .uce-cursor-enabled .bdt-cursor-image { |
| 109 |
display: none |
| 110 |
} |
| 111 |
|
| 112 |
.uce-cursor-enabled-yes .uce-cursor-enabled .bdt-cursor-icons { |
| 113 |
color: var(--cursor-ball-color) |
| 114 |
} |
| 115 |
|