i want to apply my style to everything not just body
style.css :
body {
background-color: #3F3F46;
color: #ffffff;
cursor: url('https://lelkasa.github.io/cursourcustom.png'), auto;
}
Replace body
with html
html {
background-color: #3F3F46;
color: #ffffff;
cursor: url('https://lelkasa.github.io/cursourcustom.png'), auto;
}
You can also use *
because the *
selector selects all elements.
* {
background-color: #3F3F46;
color: #ffffff;
cursor: url('https://lelkasa.github.io/cursourcustom.png'), auto;
}