MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
(Created page with "→CSS placed here will be applied to all skins: →Custom Favicon: head > link[rel="icon"] { display: none; } head:after { content: url('/var/www/html/mediawiki/resources/assets/favicon.ico'); }") |
No edit summary |
||
| (23 intermediate revisions by 2 users not shown) | |||
| 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('http://wiki.tonychasearchive.com/resources/assets/custom-cursor.cur'); /* Adjust the path if needed */ | ||
} | |||
/* Custom Cursor */ | |||
body { | |||
cursor: url('http://wiki.tonychasearchive.com/resources/assets/Cursor.cur'), auto; /* Adjust the path if needed */ | |||
} | |||
a:hover { | |||
cursor: url('http://wiki.tonychasearchive.com/resources/assets/custom-cursor.cur'), auto; /* Adjust the path if needed */ | |||
} | |||
.snowflake { | |||
position: absolute; | |||
width: 5px; | |||
height: 5px; | |||
background-color: #00f; | |||
border-radius: 50%; | |||
pointer-events: none; | |||
} | } | ||
Latest revision as of 22:55, 4 December 2023
/* Custom Favicon */
head > link[rel="icon"] {
display: none;
}
/* Custom Favicon Image */
head:after {
content: url('http://wiki.tonychasearchive.com/resources/assets/custom-cursor.cur'); /* Adjust the path if needed */
}
/* Custom Cursor */
body {
cursor: url('http://wiki.tonychasearchive.com/resources/assets/Cursor.cur'), auto; /* Adjust the path if needed */
}
a:hover {
cursor: url('http://wiki.tonychasearchive.com/resources/assets/custom-cursor.cur'), auto; /* Adjust the path if needed */
}
.snowflake {
position: absolute;
width: 5px;
height: 5px;
background-color: #00f;
border-radius: 50%;
pointer-events: none;
}