MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/* Custom Favicon */ | /* Custom Favicon */ | ||
head > link[rel="icon"] { | head > link[rel="icon"] { | ||
display: none; | display: none; | ||
} | } | ||
/* Custom Favicon Image */ | |||
head:after { | head:after { | ||
content: url('/ | content: url('/mediawiki/images/4/4c/Cursor.png'); /* Adjust the path if needed */ | ||
} | } | ||
/* Custom Cursor */ | |||
body { | body { | ||
cursor: url(' | cursor: url('/mediawiki/images/4/4c/Cursor.png'), auto; /* Adjust the path if needed */ | ||
} | } | ||
Revision as of 16:51, 10 November 2023
/* Custom Favicon */
head > link[rel="icon"] {
display: none;
}
/* Custom Favicon Image */
head:after {
content: url('/mediawiki/images/4/4c/Cursor.png'); /* Adjust the path if needed */
}
/* Custom Cursor */
body {
cursor: url('/mediawiki/images/4/4c/Cursor.png'), auto; /* Adjust the path if needed */
}