Day 325
Started the CPdotCOM animation course over...
#CodingPhase #TheCodingWay #365CodingPhaseChallenge
**********
* {
box-sizing: border-box;
}
.parent {
background: yellow;
padding: 100px;
width: 100%;
margin: 0 auto;
transition: all 1s ease-in;
.child {
background: black;
height: 300px;
transition: all 1s ease-out;
}
}
#btn {
background: lightgray;
padding: 7px 25px;
font-weight: 600;
transition: all .5s ease-in;
&:hover {
background: purple;
color: white;
transition: all .5s ease-in;
}
}
#CodingPhase #TheCodingWay #365CodingPhaseChallenge
**********
* {
box-sizing: border-box;
}
.parent {
background: yellow;
padding: 100px;
width: 100%;
margin: 0 auto;
transition: all 1s ease-in;
.child {
background: black;
height: 300px;
transition: all 1s ease-out;
}
}
#btn {
background: lightgray;
padding: 7px 25px;
font-weight: 600;
transition: all .5s ease-in;
&:hover {
background: purple;
color: white;
transition: all .5s ease-in;
}
}
Comments
Post a Comment