sto-k-odnomu/src/index.css

46 lines
901 B
CSS
Raw Normal View History

2025-12-31 16:53:26 +00:00
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
min-height: 100vh;
overflow-x: hidden;
}
#root {
min-height: 100vh;
}
/* Новогодние снежинки */
@keyframes snow {
0% {
transform: translateY(0) rotate(0deg);
opacity: 1;
}
100% {
transform: translateY(100vh) rotate(360deg);
opacity: 0;
}
}
.snowflake {
position: fixed;
top: -10px;
color: white;
font-size: 1em;
font-family: Arial;
text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
animation: snow 10s linear infinite;
pointer-events: none;
z-index: 1;
}