scrimba
The Weekly Web Dev Challenge
The Weekly Web Dev Challenge: Hungry Cat ๐Ÿฑ
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

The Weekly Web Dev Challenge: Hungry Cat ๐Ÿฑ
AboutCommentsNotes
The Weekly Web Dev Challenge: Hungry Cat ๐Ÿฑ
Expand for more info
index.css
run
preview
console
html, body {
margin: 0;
padding: 0;
}

.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}

.garden {
margin: 0 auto;
height: 400px;
width: 400px;
background: conic-gradient( #99ffff 0deg 90deg, #99ff99 90deg 270deg, #99ffff 240deg 0deg);
}

.fish {
position: absolute;
fill: darkblue;
margin: 1em;
cursor: pointer;
}

.cat {
margin: 25% 35%;
}

.hungry {
animation-name: getHungry;
animation-duration: 10s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}

@keyframes getHungry {
// your code here;
}

.fed {
fill: black;
}




Console
/index.html
-1:11