You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
491 B
28 lines
491 B
* {
|
|
box-sizing: border-box;
|
|
font-family: Days One;
|
|
user-select: none;
|
|
}
|
|
|
|
body {
|
|
animation: MovingBackground 600s infinite;
|
|
background-image: url('../assets/stars.png');
|
|
overflow: hidden;
|
|
}
|
|
|
|
@keyframes MovingBackground {
|
|
0%{background-position:0% 50%}
|
|
50%{background-position:100% 50%}
|
|
100%{background-position:0% 50%}
|
|
}
|
|
|
|
/*
|
|
0cffe1 CYAN 00dfd4
|
|
ff217c PINK
|
|
483c6c PURPLE 23074d
|
|
fe5e78 SALMON
|
|
ffa283 PEACH
|
|
F96600 ORANGE
|
|
ffec83 YELLOW FFFF00
|
|
06CC83 GREEN
|
|
*/ |