MediaWiki:Common.css: Difference between revisions

From Tony Chase
Jump to navigation Jump to search
No edit summary
No edit summary
 
(9 intermediate revisions by 2 users not shown)
Line 6: Line 6:
/* Custom Favicon Image */
/* Custom Favicon Image */
head:after {
head:after {
     content: url('/mediawiki/images/4/4c/Cursor.png'); /* Adjust the path if needed */
     content: url('http://wiki.tonychasearchive.com/resources/assets/custom-cursor.cur'); /* Adjust the path if needed */
}
}


Line 12: Line 12:
body {
body {
     cursor: url('http://wiki.tonychasearchive.com/resources/assets/Cursor.cur'), auto; /* Adjust the path if needed */
     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;
}