User:Zippy/common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 7: | Line 7: | ||
/* Custom cursors */ | /* Custom cursors */ | ||
body { | body { | ||
cursor: url(' | cursor: url('https://i.imgur.com/LxPzwkm.png'), pointer; | ||
} | } | ||
/* Link cursor */ | /* Link cursor */ | ||
a:hover { | a:hover { | ||
cursor: url(' | cursor: url('https://i.imgur.com/lyt5e4l.png'), pointer; | ||
} | } | ||
/* Text cursor */ | /* Text cursor */ | ||
input { | input { | ||
cursor: url(' | cursor: url('https://i.imgur.com/yIb6jE0.png'), text; | ||
} | } | ||
span:hover { | span:hover { | ||
cursor: url(' | cursor: url('https://i.imgur.com/yIb6jE0.png'), text; | ||
} | } |
Revision as of 09:37, 21 December 2018
/* Link colors */
a {color: #f7a200;}
a:hover {color: #ffd183;}
a:active {color: white;}
/* Custom cursors */
body {
cursor: url('https://i.imgur.com/LxPzwkm.png'), pointer;
}
/* Link cursor */
a:hover {
cursor: url('https://i.imgur.com/lyt5e4l.png'), pointer;
}
/* Text cursor */
input {
cursor: url('https://i.imgur.com/yIb6jE0.png'), text;
}
span:hover {
cursor: url('https://i.imgur.com/yIb6jE0.png'), text;
}