All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 45s
- Introduced new CSS and JS files for Pi Day, Pride, Rain, and Storm effects. - Updated existing seasonal styles (e.g., Halloween, Hearts, Resurrection) to improve performance with 'contain: layout paint'. - Enhanced animations for seasonal effects, including adjustments to keyframes and element creation logic. - Added configuration options for new effects in the main seasonals.js file. - Updated test-site.html to include new seasonal options in the dropdown.
21 lines
358 B
CSS
21 lines
358 B
CSS
.snowstorm-container {
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100vh;
|
|
background: transparent;
|
|
overflow: hidden;
|
|
pointer-events: none;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 10;
|
|
contain: layout paint;
|
|
}
|
|
|
|
#snowfallCanvas {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
pointer-events: none;
|
|
} |