User:Zippy/common.css: Difference between revisions
Jump to navigation
Jump to search
(Created page with "→Link colors: a {color: #f7a200;} a:hover {color: #ffd183;} a:active {color: white;} →Global cursor: body { cursor: url('images/F_normal_select.png'), pointer; }...") |
No edit summary |
||
Line 5: | Line 5: | ||
a:active {color: white;} | a:active {color: white;} | ||
/* | /* Custom cursors */ | ||
body { | body { | ||
cursor: url('images/F_normal_select.png'), pointer; | cursor: url('images/F_normal_select.png'), pointer; | ||
Line 16: | Line 16: | ||
input { | input { | ||
cursor: url('images/F_text_select.png'), text; | cursor: url('images/F_text_select.png'), text; | ||
} | |||
span:hover { | |||
cursor: url('images/F_text_select.png'), text; | |||
} | } |
Revision as of 20:49, 20 December 2018
/* Link colors */
a {color: #f7a200;}
a:hover {color: #ffd183;}
a:active {color: white;}
/* Custom cursors */
body {
cursor: url('images/F_normal_select.png'), pointer;
}
/* Link cursor */
a:hover {
cursor: url('images/F_link_select.png'), pointer;
}
/* Text cursor */
input {
cursor: url('images/F_text_select.png'), text;
}
span:hover {
cursor: url('images/F_text_select.png'), text;
}