13 lines
250 B
CSS
13 lines
250 B
CSS
.snowflake {
|
|
position: fixed;
|
|
background-color: rgba(255, 255, 255, 0.8);
|
|
border-radius: 50%;
|
|
pointer-events: none;
|
|
opacity: 0.7;
|
|
overflow: hidden;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 10;
|
|
} |