forked from defunkt/toes
40 lines
663 B
CSS
40 lines
663 B
CSS
section {
|
|
max-width: 500px;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
font-size: 200%;
|
|
}
|
|
|
|
h1 {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.hype {
|
|
display: inline-block;
|
|
padding: 0.3rem 0.8rem;
|
|
background: linear-gradient(45deg,
|
|
#ff00ff 0%,
|
|
#00ffff 33%,
|
|
#ffff00 66%,
|
|
#ff00ff 100%);
|
|
background-size: 400% 400%;
|
|
animation: gradientShift 15s ease infinite;
|
|
color: black;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
font-weight: 700;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
@keyframes gradientShift {
|
|
0% {
|
|
background-position: 0% 50%;
|
|
}
|
|
|
|
100% {
|
|
background-position: 100% 50%;
|
|
}
|
|
}
|
|
|
|
ul {
|
|
list-style-type: none;
|
|
} |