codepens/60-gradient-morphing-blob/dist/style.css

37 lines
511 B
CSS
Raw Normal View History

2023-10-06 23:12:53 +02:00
:root {
--startColor: hsl(0, 100%, 75%);
--stopColor: hsl(0, 100%, 75%);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
display: grid;
place-items: center;
}
svg {
width: 90vmin;
height: 90vmin;
}
path {
cursor: pointer;
}
p {
position: absolute;
font-size: 1.125rem;
font-weight: 500;
bottom: 1rem;
right: 1rem;
color: #fff;
font-family: system-ui, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}