You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I copied your file and tried to display it on my browser, but I only saw white. Inspecting the code on-page (Ctrl+I) didn't show any errors on the console and the inspector appeared to recognize the divs standing for the raindrops.
On closer inspection, the reason for it seemed to be the background properties set in your internal style in the tags.
`
body {
margin: 0;
overflow: hidden;
background: linear-gradient(to bottom, #202020, #111119);
}
I copied your file and tried to display it on my browser, but I only saw white. Inspecting the code on-page (Ctrl+I) didn't show any errors on the console and the inspector appeared to recognize the divs standing for the raindrops.
On closer inspection, the reason for it seemed to be the background properties set in your internal style in the tags.
`
body {
margin: 0;
overflow: hidden;
background: linear-gradient(to bottom, #202020, #111119);
}
...
.stem {
width: 1px;
height: 60%;
margin-left: 7px;
background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.25));
animation: stem 0.5s linear infinite;
}
`
I don't know if anyone else has the problem, but I just changed the backgrounds, on mine to black and white and it worked.
The text was updated successfully, but these errors were encountered: