mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-08 10:45:28 -05:00
86 lines
1.3 KiB
CSS
86 lines
1.3 KiB
CSS
html,
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
overflow: auto;
|
|
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial,
|
|
sans-serif, Apple Color Emoji, Segoe UI Emoji;
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.rgb {
|
|
background: linear-gradient(
|
|
124deg,
|
|
#ff2400,
|
|
#e81d1d,
|
|
#e8b71d,
|
|
#e3e81d,
|
|
#1de840,
|
|
#1ddde8,
|
|
#2b1de8,
|
|
#dd00f3,
|
|
#dd00f3
|
|
);
|
|
|
|
-webkit-animation: rainbow 18s ease infinite;
|
|
-z-animation: rainbow 18s ease infinite;
|
|
-o-animation: rainbow 18s ease infinite;
|
|
animation: rainbow 18s ease infinite;
|
|
background-size: 1800% 1800%;
|
|
}
|
|
|
|
@-webkit-keyframes rainbow {
|
|
0% {
|
|
background-position: 0% 82%;
|
|
}
|
|
50% {
|
|
background-position: 100% 19%;
|
|
}
|
|
100% {
|
|
background-position: 0% 82%;
|
|
}
|
|
}
|
|
@-moz-keyframes rainbow {
|
|
0% {
|
|
background-position: 0% 82%;
|
|
}
|
|
50% {
|
|
background-position: 100% 19%;
|
|
}
|
|
100% {
|
|
background-position: 0% 82%;
|
|
}
|
|
}
|
|
@-o-keyframes rainbow {
|
|
0% {
|
|
background-position: 0% 82%;
|
|
}
|
|
50% {
|
|
background-position: 100% 19%;
|
|
}
|
|
100% {
|
|
background-position: 0% 82%;
|
|
}
|
|
}
|
|
@keyframes rainbow {
|
|
0% {
|
|
background-position: 0% 82%;
|
|
}
|
|
50% {
|
|
background-position: 100% 19%;
|
|
}
|
|
100% {
|
|
background-position: 0% 82%;
|
|
}
|
|
}
|
|
|
|
/*
|
|
For Next.JS image
|
|
*/
|
|
|
|
.rounded {
|
|
border-radius: 50%;
|
|
}
|