Day 118
More menu solutions played with...
#CodingPhase #TheCodingWay #365CodingPhaseChallenge
**********
section > div {
display: inline-block;
width: 70%;
margin: 0 auto;
padding: 1em;
font-size: 20px;
text-align: center;
line-height: 2.5rem;
background: linear-gradient(white 40%, rgba(220, 200, 200, 0.5) 80%);
border: none;
border-radius: 10px;
box-shadow: 5px 10px 18px rgb(199, 140, 140);
cursor: pointer;
}
section > div:hover {
background: linear-gradient(rgba(220, 200, 200, 0.5) 40%, white 80%);
}
section .sessions a {
text-decoration: none;
color: rgb(3, 80, 6);
}
#CodingPhase #TheCodingWay #365CodingPhaseChallenge
**********
section > div {
display: inline-block;
width: 70%;
margin: 0 auto;
padding: 1em;
font-size: 20px;
text-align: center;
line-height: 2.5rem;
background: linear-gradient(white 40%, rgba(220, 200, 200, 0.5) 80%);
border: none;
border-radius: 10px;
box-shadow: 5px 10px 18px rgb(199, 140, 140);
cursor: pointer;
}
section > div:hover {
background: linear-gradient(rgba(220, 200, 200, 0.5) 40%, white 80%);
}
section .sessions a {
text-decoration: none;
color: rgb(3, 80, 6);
}
Comments
Post a Comment