45 lines
901 B
CSS
45 lines
901 B
CSS
* {
|
|
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;
|
|
}
|
|
|