Skip to content

Commit 9f3797e

Browse files
committed
Copied the Mouse CSS from the SubDomain over to the main.
1 parent d73579f commit 9f3797e

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed
142 Bytes
Loading
181 Bytes
Loading

Assets/styles.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,10 @@ mixedFonts:
9696

9797
--backgroundBlur: 10px;
9898

99+
/* Cursor: */
100+
--cursorDefault: url('/Assets/Image_Repository/CustomCursor/custom-cursor.png') 16 16, default;
101+
--cursorPointer: url('/Assets/Image_Repository/CustomCursor/custom-link-cursor.png') 16 32, pointer;
102+
99103
/* # - - Buttons: */
100104
--buttonReSize: 2em;
101105

@@ -193,6 +197,9 @@ body {
193197
transform: translateZ(var(--gpu_Offset));
194198
transform: translate3d(var(--gpu_Offset), var(--gpu_Offset), var(--gpu_Offset));
195199

200+
/* Cursor: */
201+
cursor: var(--cursorDefault);
202+
196203
/* Optimize: */
197204
backface-visibility: hidden;
198205
perspective: 1000;
@@ -207,6 +214,11 @@ body {
207214
/* padding: var(--bodyPadding); */
208215
}
209216

217+
/* Click-Cursor: */
218+
a {
219+
cursor: var(--cursorPointer);
220+
}
221+
210222
/* Animation for the Background-Rain. (px of Image so it is smoot from one Position to the other): */
211223
@keyframes shiftBackground {
212224
0% {

0 commit comments

Comments
 (0)