Day 365 + 1
Finished plus one! Just because...
#CodingPhase #TheCodingWay #365CodingPhaseChallenge
**********
.services-container {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 40px;
.box {
background: rgba(255, 255, 255, 0);
padding: 40px;
margin-bottom: 10px;
transition: all 0.2s ease-in-out;
cursor: pointer;
.icon {
}
.fa {
font-size: 2rem;
margin-bottom: 2rem;
}
h5 {
font-size: 1rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 2rem;
}
p {
color: #b3b3b3;
font-size: 0.9rem;
line-height: 1.5;
}
&:hover {
background: rgba(255, 255, 255, 1);
-webkit-box-shadow: 0px 35px 74px 24px rgba(0, 0, 0, 0.07);
-moz-box-shadow: 0px 35px 74px 24px rgba(0, 0, 0, 0.07);
box-shadow: 0px 35px 74px 24px rgba(0, 0, 0, 0.07);
}
}
.blue {
border-bottom: 2px solid #52b8ff;
}
.red {
border-bottom: 2px solid #ff5253;
}
.yellow {
border-bottom: 2px solid #ffc853;
}
}
#CodingPhase #TheCodingWay #365CodingPhaseChallenge
**********
.services-container {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 40px;
.box {
background: rgba(255, 255, 255, 0);
padding: 40px;
margin-bottom: 10px;
transition: all 0.2s ease-in-out;
cursor: pointer;
.icon {
}
.fa {
font-size: 2rem;
margin-bottom: 2rem;
}
h5 {
font-size: 1rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 2rem;
}
p {
color: #b3b3b3;
font-size: 0.9rem;
line-height: 1.5;
}
&:hover {
background: rgba(255, 255, 255, 1);
-webkit-box-shadow: 0px 35px 74px 24px rgba(0, 0, 0, 0.07);
-moz-box-shadow: 0px 35px 74px 24px rgba(0, 0, 0, 0.07);
box-shadow: 0px 35px 74px 24px rgba(0, 0, 0, 0.07);
}
}
.blue {
border-bottom: 2px solid #52b8ff;
}
.red {
border-bottom: 2px solid #ff5253;
}
.yellow {
border-bottom: 2px solid #ffc853;
}
}
Comments
Post a Comment