MediaWiki:Common.css: Difference between revisions

From Tony Chase
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* 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('/var/www/html/mediawiki/resources/assets/favicon.ico');
     content: url('/mediawiki/images/4/4c/Cursor.png'); /* Adjust the path if needed */
}
}
/* Custom Cursor */
body {
body {
     cursor: url('http://wiki.tonychasearchive.com/images/4/4c/Cursor.png'), auto;
     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 */
}